CommonAIServer.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>{31A89F1E-F7D5-4F64-A1B6-67CB7ABA4A18}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>CommonAIServer</RootNamespace>
  11. <AssemblyName>CommonAIServer</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</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>TRACE;DEBUG</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <DocumentationFile>
  26. </DocumentationFile>
  27. <NoWarn>1591</NoWarn>
  28. <WarningsAsErrors>0108</WarningsAsErrors>
  29. <Prefer32Bit>false</Prefer32Bit>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>..\..\Library\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. <Prefer32Bit>false</Prefer32Bit>
  39. </PropertyGroup>
  40. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_JSGProfile|AnyCPU'">
  41. <DebugSymbols>true</DebugSymbols>
  42. <OutputPath>bin\Debug_JSGProfile\</OutputPath>
  43. <DefineConstants>TRACE;DEBUG;JSGProfile</DefineConstants>
  44. <NoWarn>1591</NoWarn>
  45. <DebugType>full</DebugType>
  46. <PlatformTarget>AnyCPU</PlatformTarget>
  47. <WarningsAsErrors>0108</WarningsAsErrors>
  48. <ErrorReport>prompt</ErrorReport>
  49. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  50. </PropertyGroup>
  51. <ItemGroup>
  52. <Reference Include="CommonLang, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  53. <SpecificVersion>False</SpecificVersion>
  54. <HintPath>..\..\Library\Debug\CommonLang.dll</HintPath>
  55. </Reference>
  56. <Reference Include="Microsoft.CSharp" />
  57. <Reference Include="System" />
  58. <Reference Include="System.Core" />
  59. <Reference Include="System.Xml.Linq" />
  60. <Reference Include="System.Data.DataSetExtensions" />
  61. <Reference Include="System.Data" />
  62. <Reference Include="System.Xml" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Compile Include="Node\Interface\IPlayer.cs" />
  66. <Compile Include="Node\BaseZoneNode.cs" />
  67. <Compile Include="Node\ZoneNodeFactory.cs" />
  68. <Compile Include="Node\ZoneNodeConfig.cs" />
  69. <Compile Include="Properties\AssemblyInfo.cs" />
  70. <Compile Include="Node\ZoneNode.cs" />
  71. <Compile Include="ServerUtils.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\CommonAIClient\CommonAIClient.csproj">
  75. <Project>{7990158b-ba84-4177-8eec-84bddc8a527a}</Project>
  76. <Name>CommonAIClient</Name>
  77. </ProjectReference>
  78. <ProjectReference Include="..\CommonAI\CommonAI.csproj">
  79. <Project>{0d86d14e-c45e-400a-8f50-ff7bde63b35a}</Project>
  80. <Name>CommonAI</Name>
  81. </ProjectReference>
  82. </ItemGroup>
  83. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  84. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  85. Other similar extension points exist, see Microsoft.Common.targets.
  86. <Target Name="BeforeBuild">
  87. </Target>
  88. <Target Name="AfterBuild">
  89. </Target>
  90. -->
  91. </Project>