CommonAIClient.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{7990158B-BA84-4177-8EEC-84BDDC8A527A}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CommonAIClient</RootNamespace>
  12. <AssemblyName>CommonAIClient</AssemblyName>
  13. <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <TargetFrameworkProfile>
  16. </TargetFrameworkProfile>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\..\Library\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <DocumentationFile>
  27. </DocumentationFile>
  28. <NoWarn>1591</NoWarn>
  29. <WarningsAsErrors>0108</WarningsAsErrors>
  30. <Prefer32Bit>false</Prefer32Bit>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>..\..\Library\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. <Prefer32Bit>false</Prefer32Bit>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_JSGProfile|AnyCPU'">
  42. <DebugSymbols>true</DebugSymbols>
  43. <OutputPath>bin\Debug_JSGProfile\</OutputPath>
  44. <DefineConstants>DEBUG;TRACE</DefineConstants>
  45. <NoWarn>1591</NoWarn>
  46. <DebugType>full</DebugType>
  47. <PlatformTarget>AnyCPU</PlatformTarget>
  48. <WarningsAsErrors>0108</WarningsAsErrors>
  49. <ErrorReport>prompt</ErrorReport>
  50. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  51. </PropertyGroup>
  52. <ItemGroup>
  53. <Reference Include="System" />
  54. <Reference Include="System.Xml" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="Client\AbstractBattle.cs" />
  58. <Compile Include="Client\BattleClientProxy.cs" />
  59. <Compile Include="Client\BattleClient.cs" />
  60. <Compile Include="Client\BattleLocal.cs" />
  61. <Compile Include="Client\BattleLocalPlay.cs" />
  62. <Compile Include="Client\BattleClientDirect.cs" />
  63. <Compile Include="Client\BattleReplay.cs" />
  64. <Compile Include="Properties\AssemblyInfo.cs" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <ProjectReference Include="..\CommonAI\CommonAI.csproj">
  68. <Project>{0D86D14E-C45E-400A-8F50-FF7BDE63B35A}</Project>
  69. <Name>CommonAI</Name>
  70. </ProjectReference>
  71. <ProjectReference Include="..\CommonLang\CommonLang.csproj">
  72. <Project>{1835E71D-0B6C-463D-B538-E68891E4DACB}</Project>
  73. <Name>CommonLang</Name>
  74. </ProjectReference>
  75. <ProjectReference Include="..\CommonNetwork\CommonNetwork.csproj">
  76. <Project>{6c114f8f-ee02-4f15-8f3a-93691896d15f}</Project>
  77. <Name>CommonNetwork</Name>
  78. </ProjectReference>
  79. </ItemGroup>
  80. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  81. <PropertyGroup>
  82. <PostBuildEvent>
  83. </PostBuildEvent>
  84. </PropertyGroup>
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>