GameEditorPluginServer.csproj 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" 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>{DC5B7F3A-AAF4-47F8-ABE5-820FB93016CC}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>GameEditorPluginServer</RootNamespace>
  11. <AssemblyName>GameEditorPluginServer</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\..\Library\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <DocumentationFile>
  25. </DocumentationFile>
  26. <Prefer32Bit>false</Prefer32Bit>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>..\..\Library\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_JSGProfile|AnyCPU'">
  38. <DebugSymbols>true</DebugSymbols>
  39. <OutputPath>bin\Debug_JSGProfile\</OutputPath>
  40. <DefineConstants>DEBUG;TRACE</DefineConstants>
  41. <DebugType>full</DebugType>
  42. <PlatformTarget>AnyCPU</PlatformTarget>
  43. <ErrorReport>prompt</ErrorReport>
  44. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  45. </PropertyGroup>
  46. <ItemGroup>
  47. <Reference Include="CommonLang, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  48. <SpecificVersion>False</SpecificVersion>
  49. <HintPath>..\..\Library\Debug\CommonLang.dll</HintPath>
  50. </Reference>
  51. <Reference Include="CommonNetwork, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  52. <SpecificVersion>False</SpecificVersion>
  53. <HintPath>..\..\Library\Debug\CommonNetwork.dll</HintPath>
  54. </Reference>
  55. <Reference Include="SuperSocket.Common">
  56. <HintPath>..\Library\SuperSocket.Binaries\net40\Debug\SuperSocket.Common.dll</HintPath>
  57. </Reference>
  58. <Reference Include="SuperSocket.Dlr">
  59. <HintPath>..\Library\SuperSocket.Binaries\net40\Debug\SuperSocket.Dlr.dll</HintPath>
  60. </Reference>
  61. <Reference Include="SuperSocket.Facility, Version=1.6.4.0, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
  62. <SpecificVersion>False</SpecificVersion>
  63. <HintPath>..\Library\SuperSocket.Binaries\net40\Debug\SuperSocket.Facility.dll</HintPath>
  64. </Reference>
  65. <Reference Include="SuperSocket.SocketBase">
  66. <HintPath>..\Library\SuperSocket.Binaries\net40\Debug\SuperSocket.SocketBase.dll</HintPath>
  67. </Reference>
  68. <Reference Include="SuperSocket.SocketEngine">
  69. <HintPath>..\Library\SuperSocket.Binaries\net40\Debug\SuperSocket.SocketEngine.dll</HintPath>
  70. </Reference>
  71. <Reference Include="System" />
  72. <Reference Include="System.Core" />
  73. <Reference Include="System.Drawing" />
  74. <Reference Include="System.Windows.Forms" />
  75. <Reference Include="System.Xml.Linq" />
  76. <Reference Include="System.Data.DataSetExtensions" />
  77. <Reference Include="Microsoft.CSharp" />
  78. <Reference Include="System.Data" />
  79. <Reference Include="System.Xml" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <Compile Include="Client\FormTestClient.cs">
  83. <SubType>Form</SubType>
  84. </Compile>
  85. <Compile Include="Properties\AssemblyInfo.cs" />
  86. <Compile Include="Server\FormMsgBytes.cs">
  87. <SubType>Form</SubType>
  88. </Compile>
  89. <Compile Include="Server\FormMsgBytes.Designer.cs">
  90. <DependentUpon>FormMsgBytes.cs</DependentUpon>
  91. </Compile>
  92. <Compile Include="Server\FormServer.cs">
  93. <SubType>Form</SubType>
  94. </Compile>
  95. <Compile Include="Server\FormServer.Designer.cs">
  96. <DependentUpon>FormServer.cs</DependentUpon>
  97. </Compile>
  98. <Compile Include="Server\ServerNode.cs" />
  99. </ItemGroup>
  100. <ItemGroup>
  101. <ProjectReference Include="..\CommonAIClient\CommonAIClient.csproj">
  102. <Project>{7990158b-ba84-4177-8eec-84bddc8a527a}</Project>
  103. <Name>CommonAIClient</Name>
  104. </ProjectReference>
  105. <ProjectReference Include="..\CommonAIServer.Connector\CommonAIServer.Connector.csproj">
  106. <Project>{d2a14196-3c00-4e3b-b716-fb168d32e343}</Project>
  107. <Name>CommonAIServer.Connector</Name>
  108. </ProjectReference>
  109. <ProjectReference Include="..\CommonAIServer\CommonAIServer.csproj">
  110. <Project>{31a89f1e-f7d5-4f64-a1b6-67cb7aba4a18}</Project>
  111. <Name>CommonAIServer</Name>
  112. </ProjectReference>
  113. <ProjectReference Include="..\CommonAI\CommonAI.csproj">
  114. <Project>{0d86d14e-c45e-400a-8f50-ff7bde63b35a}</Project>
  115. <Name>CommonAI</Name>
  116. </ProjectReference>
  117. <ProjectReference Include="..\CommonFroms\CommonFroms.csproj">
  118. <Project>{f3594e30-da84-4538-baa3-0959b86aa879}</Project>
  119. <Name>CommonFroms</Name>
  120. </ProjectReference>
  121. <ProjectReference Include="..\CommonServer.SSocket\CommonServer.SSocket.csproj">
  122. <Project>{9fb63fa2-2dcc-45ab-bd74-3c158e313ee9}</Project>
  123. <Name>CommonServer.SSocket</Name>
  124. </ProjectReference>
  125. <ProjectReference Include="..\CommonServer\CommonServer.csproj">
  126. <Project>{71cc36a4-6899-4bb8-8968-682dba861d98}</Project>
  127. <Name>CommonServer</Name>
  128. </ProjectReference>
  129. <ProjectReference Include="..\GameEditorPlugin\GameEditorPlugin.csproj">
  130. <Project>{539fa0de-4ef2-4035-832d-9e8614e92a48}</Project>
  131. <Name>GameEditorPlugin</Name>
  132. </ProjectReference>
  133. </ItemGroup>
  134. <ItemGroup>
  135. <EmbeddedResource Include="Client\FormTestClient.resx">
  136. <DependentUpon>FormTestClient.cs</DependentUpon>
  137. </EmbeddedResource>
  138. <EmbeddedResource Include="Server\FormMsgBytes.resx">
  139. <DependentUpon>FormMsgBytes.cs</DependentUpon>
  140. </EmbeddedResource>
  141. <EmbeddedResource Include="Server\FormServer.resx">
  142. <DependentUpon>FormServer.cs</DependentUpon>
  143. </EmbeddedResource>
  144. </ItemGroup>
  145. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  146. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  147. Other similar extension points exist, see Microsoft.Common.targets.
  148. <Target Name="BeforeBuild">
  149. </Target>
  150. <Target Name="AfterBuild">
  151. </Target>
  152. -->
  153. </Project>