Controller.csproj 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>{E69C1F22-E004-4D69-8667-787BD243454B}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Controller</RootNamespace>
  11. <AssemblyName>Controller</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  16. <RestorePackages>true</RestorePackages>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\..\Bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  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="MongoDB.Bson, Version=1.10.0.52, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
  37. <SpecificVersion>False</SpecificVersion>
  38. <HintPath>..\..\packages\mongocsharpdriver.1.10.0-rc1\lib\net35\MongoDB.Bson.dll</HintPath>
  39. </Reference>
  40. <Reference Include="MongoDB.Driver, Version=1.10.0.52, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\..\packages\mongocsharpdriver.1.10.0-rc1\lib\net35\MongoDB.Driver.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System" />
  45. <Reference Include="System.Core" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="BehaviorTreeNode\Not.cs" />
  49. <Compile Include="BehaviorTreeNode\Selector.cs" />
  50. <Compile Include="BehaviorTreeNode\Sequence.cs" />
  51. <Compile Include="Action\MessageAction.cs" />
  52. <Compile Include="ConfigCategory\BuffCategory.cs" />
  53. <Compile Include="ConfigCategory\GlobalCategory.cs" />
  54. <Compile Include="ConfigCategory\NodeCategory.cs" />
  55. <Compile Include="ConfigCategory\UnitCategory.cs" />
  56. <Compile Include="Action\BuffTimeoutAction.cs" />
  57. <Compile Include="Event\AfterAddBuff.cs" />
  58. <Compile Include="Message\CMsgLogin.cs" />
  59. <Compile Include="NodeType.cs" />
  60. <Compile Include="Factory\UnitFactory.cs" />
  61. <Compile Include="UnitType.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Folder Include="Properties\" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  68. <Project>{19f8f043-1f99-4550-99df-dea5c7d77e55}</Project>
  69. <Name>Common</Name>
  70. </ProjectReference>
  71. <ProjectReference Include="..\Model\Model.csproj">
  72. <Project>{0fa529d1-d0a9-4a8e-90f5-117ce80f2ede}</Project>
  73. <Name>Model</Name>
  74. </ProjectReference>
  75. </ItemGroup>
  76. <ItemGroup>
  77. <None Include="packages.config" />
  78. </ItemGroup>
  79. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  80. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  81. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  82. <PropertyGroup>
  83. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。启用“NuGet 程序包还原”可下载这些程序包。有关详细信息,请参阅 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  84. </PropertyGroup>
  85. <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
  86. </Target>
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. </Project>