XmdsBattleClient.csproj 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>{046B6C3A-4D94-4B40-BF11-D43FCE2050C7}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>XmdsBattleClient</RootNamespace>
  11. <AssemblyName>XmdsBattleClient</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\Library\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. <DocumentationFile>
  27. </DocumentationFile>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>..\Library\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <Prefer32Bit>false</Prefer32Bit>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_JSGProfile|AnyCPU'">
  39. <DebugSymbols>true</DebugSymbols>
  40. <OutputPath>bin\Debug_JSGProfile\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. <DebugType>full</DebugType>
  43. <PlatformTarget>AnyCPU</PlatformTarget>
  44. <ErrorReport>prompt</ErrorReport>
  45. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  46. </PropertyGroup>
  47. <ItemGroup>
  48. <Reference Include="protobuf-net">
  49. <HintPath>..\Library\protobuf-net.dll</HintPath>
  50. </Reference>
  51. <Reference Include="ProtobufSerializer">
  52. <HintPath>..\Library\ProtobufSerializer.dll</HintPath>
  53. </Reference>
  54. <Reference Include="System" />
  55. <Reference Include="System.Core" />
  56. <Reference Include="System.Xml.Linq" />
  57. <Reference Include="System.Data.DataSetExtensions" />
  58. <Reference Include="System.Data" />
  59. <Reference Include="System.Xml" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="Battle\XmdsBattleClient.cs" />
  63. <Compile Include="Battle\XmdsBattleManager.cs" />
  64. <Compile Include="Properties\AssemblyInfo.cs" />
  65. <Compile Include="Client\XmdsHttpProtolcols.cs" />
  66. <Compile Include="Client\XmdsNetClient.cs" />
  67. <Compile Include="Client\LoginHandler.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <ProjectReference Include="..\Common\CommonAIClient\CommonAIClient.csproj">
  71. <Project>{7990158b-ba84-4177-8eec-84bddc8a527a}</Project>
  72. <Name>CommonAIClient</Name>
  73. </ProjectReference>
  74. <ProjectReference Include="..\Common\CommonAI\CommonAI.csproj">
  75. <Project>{0d86d14e-c45e-400a-8f50-ff7bde63b35a}</Project>
  76. <Name>CommonAI</Name>
  77. </ProjectReference>
  78. <ProjectReference Include="..\Common\CommonLang\CommonLang.csproj">
  79. <Project>{1835e71d-0b6c-463d-b538-e68891e4dacb}</Project>
  80. <Name>CommonLang</Name>
  81. </ProjectReference>
  82. <ProjectReference Include="..\Common\CommonNetwork\CommonNetwork.csproj">
  83. <Project>{6c114f8f-ee02-4f15-8f3a-93691896d15f}</Project>
  84. <Name>CommonNetwork</Name>
  85. </ProjectReference>
  86. <ProjectReference Include="..\Common\Pomelo\pomelo-dotnetClient\pomelo-dotnetClient.csproj">
  87. <Project>{0752f53d-46ef-44e2-aaa9-f2fab9f0c4fa}</Project>
  88. <Name>pomelo-dotnetClient</Name>
  89. </ProjectReference>
  90. <ProjectReference Include="..\ProtoGen\output\handlers\xmds-handlers.csproj">
  91. <Project>{c72f73a9-ae1c-4ff8-bb28-82c4dd5f3ead}</Project>
  92. <Name>xmds-handlers</Name>
  93. </ProjectReference>
  94. <ProjectReference Include="..\ProtoGen\output\proto\xmds-proto.csproj">
  95. <Project>{b5a9ab4f-77f7-4d9e-87d9-c5fc6dd3c506}</Project>
  96. <Name>xmds-proto</Name>
  97. </ProjectReference>
  98. <ProjectReference Include="..\XmdsCommon\XmdsCommon.csproj">
  99. <Project>{e739a788-7a95-4427-bb97-a167960db7db}</Project>
  100. <Name>XmdsCommon</Name>
  101. </ProjectReference>
  102. </ItemGroup>
  103. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  104. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  105. Other similar extension points exist, see Microsoft.Common.targets.
  106. <Target Name="BeforeBuild">
  107. </Target>
  108. <Target Name="AfterBuild">
  109. </Target>
  110. -->
  111. </Project>