Controller.csproj 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectGuid>{86CD4CD0-D91D-4E44-B610-61565918FA14}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <RootNamespace>Controller</RootNamespace>
  9. <AssemblyName>Controller</AssemblyName>
  10. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  13. <DebugSymbols>true</DebugSymbols>
  14. <DebugType>full</DebugType>
  15. <Optimize>false</Optimize>
  16. <OutputPath>..\..\Bin\Debug</OutputPath>
  17. <DefineConstants>DEBUG;</DefineConstants>
  18. <ErrorReport>prompt</ErrorReport>
  19. <WarningLevel>4</WarningLevel>
  20. <ConsolePause>false</ConsolePause>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23. <DebugType>full</DebugType>
  24. <Optimize>true</Optimize>
  25. <OutputPath>..\..\Bin\Release</OutputPath>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <ConsolePause>false</ConsolePause>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Reference Include="System" />
  32. <Reference Include="MongoDB.Driver">
  33. <HintPath>..\..\..\CSharp\packages\mongocsharpdriver.1.10.0-rc1\lib\net35\MongoDB.Driver.dll</HintPath>
  34. </Reference>
  35. <Reference Include="MongoDB.Bson">
  36. <HintPath>..\..\..\CSharp\packages\mongocsharpdriver.1.10.0-rc1\lib\net35\MongoDB.Bson.dll</HintPath>
  37. </Reference>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Compile Include="Properties\AssemblyInfo.cs" />
  41. <Compile Include="..\..\..\CSharp\Game\Controller\MessageType.cs">
  42. <Link>MessageType.cs</Link>
  43. </Compile>
  44. <Compile Include="..\..\..\CSharp\Game\Controller\NodeType.cs">
  45. <Link>NodeType.cs</Link>
  46. </Compile>
  47. <Compile Include="..\..\..\CSharp\Game\Controller\Action\BuffTimeoutAction.cs">
  48. <Link>Action\BuffTimeoutAction.cs</Link>
  49. </Compile>
  50. <Compile Include="..\..\..\CSharp\Game\Controller\Action\MessageAction.cs">
  51. <Link>Action\MessageAction.cs</Link>
  52. </Compile>
  53. <Compile Include="..\..\..\CSharp\Game\Controller\BehaviorTreeNode\Not.cs">
  54. <Link>BehaviorTreeNode\Not.cs</Link>
  55. </Compile>
  56. <Compile Include="..\..\..\CSharp\Game\Controller\BehaviorTreeNode\Selector.cs">
  57. <Link>BehaviorTreeNode\Selector.cs</Link>
  58. </Compile>
  59. <Compile Include="..\..\..\CSharp\Game\Controller\BehaviorTreeNode\Sequence.cs">
  60. <Link>BehaviorTreeNode\Sequence.cs</Link>
  61. </Compile>
  62. <Compile Include="..\..\..\CSharp\Game\Controller\ConfigCategory\BuffCategory.cs">
  63. <Link>ConfigCategory\BuffCategory.cs</Link>
  64. </Compile>
  65. <Compile Include="..\..\..\CSharp\Game\Controller\ConfigCategory\GlobalCategory.cs">
  66. <Link>ConfigCategory\GlobalCategory.cs</Link>
  67. </Compile>
  68. <Compile Include="..\..\..\CSharp\Game\Controller\ConfigCategory\NodeCategory.cs">
  69. <Link>ConfigCategory\NodeCategory.cs</Link>
  70. </Compile>
  71. <Compile Include="..\..\..\CSharp\Game\Controller\ConfigCategory\UnitCategory.cs">
  72. <Link>ConfigCategory\UnitCategory.cs</Link>
  73. </Compile>
  74. <Compile Include="..\..\..\CSharp\Game\Controller\Event\AfterAddBuff.cs">
  75. <Link>Event\AfterAddBuff.cs</Link>
  76. </Compile>
  77. <Compile Include="..\..\..\CSharp\Game\Controller\Factory\UnitFactory.cs">
  78. <Link>Factory\UnitFactory.cs</Link>
  79. </Compile>
  80. <Compile Include="..\..\..\CSharp\Game\Controller\Message\CMsgLoginEvent.cs">
  81. <Link>Message\CMsgLoginEvent.cs</Link>
  82. </Compile>
  83. </ItemGroup>
  84. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  85. <ItemGroup>
  86. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  87. <Project>{EF4373AF-66D4-4313-A882-60EF0AE4239A}</Project>
  88. <Name>Common</Name>
  89. </ProjectReference>
  90. <ProjectReference Include="..\Model\Model.csproj">
  91. <Project>{01895B6C-E8E9-4F14-9497-E9DB426ADB11}</Project>
  92. <Name>Model</Name>
  93. </ProjectReference>
  94. </ItemGroup>
  95. </Project>