EVCB_OCPP.WSServer.csproj 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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>{DE0C1E9A-1EEE-42CC-8A91-73BF9056A7E7}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>EVCB_OCPP.WSServer</RootNamespace>
  10. <AssemblyName>EVCB_OCPP.WSServer</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="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  37. <HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll</HintPath>
  38. </Reference>
  39. <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  40. <HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
  41. </Reference>
  42. <Reference Include="EVCB_OCPP.Domain, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>DLL\EVCB_OCPP.Domain.dll</HintPath>
  45. </Reference>
  46. <Reference Include="EVCB_OCPP.Packet, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>DLL\EVCB_OCPP.Packet.dll</HintPath>
  49. </Reference>
  50. <Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  51. <HintPath>..\packages\log4net.2.0.3\lib\net40-full\log4net.dll</HintPath>
  52. </Reference>
  53. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  54. <HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  55. </Reference>
  56. <Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
  57. <HintPath>..\packages\NLog.4.6.6\lib\net45\NLog.dll</HintPath>
  58. </Reference>
  59. <Reference Include="System" />
  60. <Reference Include="System.ComponentModel.DataAnnotations" />
  61. <Reference Include="System.Configuration" />
  62. <Reference Include="System.Core" />
  63. <Reference Include="System.IO.Compression" />
  64. <Reference Include="System.Runtime.Serialization" />
  65. <Reference Include="System.ServiceModel" />
  66. <Reference Include="System.Transactions" />
  67. <Reference Include="System.Xml.Linq" />
  68. <Reference Include="System.Data.DataSetExtensions" />
  69. <Reference Include="Microsoft.CSharp" />
  70. <Reference Include="System.Data" />
  71. <Reference Include="System.Net.Http" />
  72. <Reference Include="System.Xml" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="BusinessService\BusinessServiceFactory.cs" />
  76. <Compile Include="BusinessService\FakeLocalBusinessService.cs" />
  77. <Compile Include="BusinessService\LocalBusinessService.cs" />
  78. <Compile Include="BusinessService\OuterBusinessService.cs" />
  79. <Compile Include="Dto\ConnectorErrorStauts.cs" />
  80. <Compile Include="GlobalConfig.cs" />
  81. <Compile Include="Helper\Convertor.cs" />
  82. <Compile Include="Message\BasicMessageHandler.cs" />
  83. <Compile Include="Message\CoreProfileHandler.cs" />
  84. <Compile Include="Message\FirmwareManagementProfileHandler.cs" />
  85. <Compile Include="Message\LocalAuthListManagementProfileHandler.cs" />
  86. <Compile Include="Message\MessageResult.cs" />
  87. <Compile Include="Message\NeedConfirmMessage.cs" />
  88. <Compile Include="Message\RemoteTriggerHandler.cs" />
  89. <Compile Include="Message\ReservationProfileHandler.cs" />
  90. <Compile Include="Message\SmartChargingProfileHandler.cs" />
  91. <Compile Include="Program.cs" />
  92. <Compile Include="Properties\AssemblyInfo.cs" />
  93. <Compile Include="ProtalServer.cs" />
  94. <Compile Include="SuperSocket.Command\ProcessCallCmd.cs" />
  95. <Compile Include="SuperSocket.Command\ProcessCallErrorCmd.cs" />
  96. <Compile Include="SuperSocket.Command\ProcessCallResultCmd.cs" />
  97. <Compile Include="SuperSocket.Protocol\ClientData.cs" />
  98. <Compile Include="SuperSocket.Protocol\OCPPLog.cs" />
  99. <Compile Include="SuperSocket.Protocol\OCPPLogFactory.cs" />
  100. <Compile Include="SuperSocket.Protocol\OCPPSubCommandParser.cs" />
  101. <Compile Include="SuperSocket.Protocol\OCPPSubProtocol.cs" />
  102. <Compile Include="SuperSocket.Protocol\OCPPWSServer.cs" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <None Include="App.config">
  106. <SubType>Designer</SubType>
  107. </None>
  108. <Content Include="DLL\SuperSocket.Common.dll" />
  109. <Content Include="DLL\SuperSocket.SocketBase.dll" />
  110. <Content Include="DLL\SuperSocket.SocketEngine.dll" />
  111. <Content Include="DLL\SuperWebSocket.dll" />
  112. <Content Include="NLog.config">
  113. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  114. <SubType>Designer</SubType>
  115. </Content>
  116. <None Include="NLog.xsd">
  117. <SubType>Designer</SubType>
  118. </None>
  119. <None Include="packages.config" />
  120. </ItemGroup>
  121. <ItemGroup>
  122. <Content Include="DLL\EVCB_OCPP.Domain.dll" />
  123. <Content Include="DLL\EVCB_OCPP.Packet.dll" />
  124. </ItemGroup>
  125. <ItemGroup>
  126. <ProjectReference Include="..\SocketBase\SuperSocket.SocketBase.Net40.csproj">
  127. <Project>{40b77789-ea11-4c05-8f52-86711d7bcaaf}</Project>
  128. <Name>SuperSocket.SocketBase.Net40</Name>
  129. </ProjectReference>
  130. <ProjectReference Include="..\SocketCommon\SuperSocket.Common.Net40.csproj">
  131. <Project>{a24f4d38-ba9c-4fd6-95b7-4980de36131a}</Project>
  132. <Name>SuperSocket.Common.Net40</Name>
  133. </ProjectReference>
  134. <ProjectReference Include="..\SocketEngine\SuperSocket.SocketEngine.Net40.csproj">
  135. <Project>{153fef72-191c-43d9-be71-2b351c7ac760}</Project>
  136. <Name>SuperSocket.SocketEngine.Net40</Name>
  137. </ProjectReference>
  138. <ProjectReference Include="..\SuperWebSocket\SuperWebSocket.NET45.csproj">
  139. <Project>{2dc79e40-bb70-4f6a-b378-905f2fbc6e97}</Project>
  140. <Name>SuperWebSocket.NET45</Name>
  141. </ProjectReference>
  142. </ItemGroup>
  143. <ItemGroup />
  144. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  145. <PropertyGroup>
  146. <PreBuildEvent>
  147. </PreBuildEvent>
  148. </PropertyGroup>
  149. </Project>