Controller.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>{7D5B90DF-43AC-42B8-9A52-2B985BC42A5C}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Controller</RootNamespace>
  11. <AssemblyName>Controller</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</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>..\..\Bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\..\Bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="MongoDB.Bson, Version=2.0.1.27, Culture=neutral, processorArchitecture=MSIL">
  35. <HintPath>..\..\packages\MongoDB.Bson.2.0.1\lib\net45\MongoDB.Bson.dll</HintPath>
  36. <Private>True</Private>
  37. </Reference>
  38. <Reference Include="NLog, Version=4.1.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
  39. <HintPath>..\..\packages\NLog.4.1.0\lib\net45\NLog.dll</HintPath>
  40. <Private>True</Private>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="Logic\AddressHelper.cs" />
  47. <Compile Include="ConfigCategory\TreeCategory.cs" />
  48. <Compile Include="Event\SleepTimeoutEvent.cs" />
  49. <Compile Include="Event\BuffTimeoutEvent.cs" />
  50. <Compile Include="BehaviorTreeNode\Not.cs" />
  51. <Compile Include="BehaviorTreeNode\Selector.cs" />
  52. <Compile Include="BehaviorTreeNode\Sequence.cs" />
  53. <Compile Include="ConfigCategory\BuffCategory.cs" />
  54. <Compile Include="ConfigCategory\GlobalCategory.cs" />
  55. <Compile Include="ConfigCategory\ServerInfoCategory.cs" />
  56. <Compile Include="ConfigCategory\UnitCategory.cs" />
  57. <Compile Include="Factory\UnitPlayerFactory.cs" />
  58. <Compile Include="Message\CMsgLoginEvent.cs" />
  59. <Compile Include="Properties\AssemblyInfo.cs" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  63. <Project>{F06B995E-6508-4C5C-A396-554316C9215D}</Project>
  64. <Name>Common</Name>
  65. </ProjectReference>
  66. <ProjectReference Include="..\Model\Model.csproj">
  67. <Project>{0608C0C1-F584-4092-AAF9-1E99A78E3703}</Project>
  68. <Name>Model</Name>
  69. </ProjectReference>
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Folder Include="Extension\" />
  73. </ItemGroup>
  74. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  75. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  76. Other similar extension points exist, see Microsoft.Common.targets.
  77. <Target Name="BeforeBuild">
  78. </Target>
  79. <Target Name="AfterBuild">
  80. </Target>
  81. -->
  82. </Project>