EVCB_OCPP.TaskScheduler.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{E2DC7D89-91D4-49C6-95E6-7B09AF74883C}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>EVCB_OCPP.TaskScheduler</RootNamespace>
  10. <AssemblyName>EVCB_OCPP.TaskScheduler</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="Dapper, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  37. <HintPath>..\packages\Dapper.2.0.30\lib\net461\Dapper.dll</HintPath>
  38. </Reference>
  39. <Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
  40. <HintPath>..\packages\NLog.4.6.6\lib\net45\NLog.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Quartz, Version=3.0.7.0, Culture=neutral, PublicKeyToken=f6b8c98a402cc8a4, processorArchitecture=MSIL">
  43. <HintPath>..\packages\Quartz.3.0.7\lib\net452\Quartz.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System" />
  46. <Reference Include="System.Configuration" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.IO.Compression" />
  49. <Reference Include="System.Runtime.Remoting" />
  50. <Reference Include="System.Runtime.Serialization" />
  51. <Reference Include="System.ServiceModel" />
  52. <Reference Include="System.Transactions" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Net.Http" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="DBTool\SQLHepler.cs" />
  62. <Compile Include="DefaultSetting.cs" />
  63. <Compile Include="Models\EVSECurrentStatus.cs" />
  64. <Compile Include="Models\EVSEOnlineRecord.cs" />
  65. <Compile Include="Program.cs" />
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. <Compile Include="TaskScheduler.cs" />
  68. <Compile Include="Jobs\CheckEVSEOnlineJob.cs" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <None Include="App.config">
  72. <SubType>Designer</SubType>
  73. </None>
  74. <Content Include="NLog.config">
  75. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  76. </Content>
  77. <None Include="NLog.xsd">
  78. <SubType>Designer</SubType>
  79. </None>
  80. <None Include="packages.config" />
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. </Project>