Controller.csproj 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>..\..\Bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>..\..\Bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="MongoDB.Bson, Version=2.0.0.788, Culture=neutral, processorArchitecture=MSIL">
  34. <SpecificVersion>False</SpecificVersion>
  35. <HintPath>..\..\packages\MongoDB.Bson.2.0.0-rc0\lib\net45\MongoDB.Bson.dll</HintPath>
  36. </Reference>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="Event\BuffTimeoutAction.cs" />
  42. <Compile Include="Event\MessageAction.cs" />
  43. <Compile Include="BehaviorTreeNode\Not.cs" />
  44. <Compile Include="BehaviorTreeNode\Selector.cs" />
  45. <Compile Include="BehaviorTreeNode\Sequence.cs" />
  46. <Compile Include="ConfigCategory\BuffCategory.cs" />
  47. <Compile Include="ConfigCategory\GlobalCategory.cs" />
  48. <Compile Include="ConfigCategory\NodeCategory.cs" />
  49. <Compile Include="ConfigCategory\ServerInfoCategory.cs" />
  50. <Compile Include="ConfigCategory\UnitCategory.cs" />
  51. <Compile Include="Event\AfterAddBuff.cs" />
  52. <Compile Include="Factory\UnitFactory.cs" />
  53. <Compile Include="MessageType.cs" />
  54. <Compile Include="Message\CMsgLoginEvent.cs" />
  55. <Compile Include="NodeType.cs" />
  56. <Compile Include="Properties\AssemblyInfo.cs" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  60. <Project>{F06B995E-6508-4C5C-A396-554316C9215D}</Project>
  61. <Name>Common</Name>
  62. </ProjectReference>
  63. <ProjectReference Include="..\Model\Model.csproj">
  64. <Project>{0608C0C1-F584-4092-AAF9-1E99A78E3703}</Project>
  65. <Name>Model</Name>
  66. </ProjectReference>
  67. </ItemGroup>
  68. <ItemGroup />
  69. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  70. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  71. Other similar extension points exist, see Microsoft.Common.targets.
  72. <Target Name="BeforeBuild">
  73. </Target>
  74. <Target Name="AfterBuild">
  75. </Target>
  76. -->
  77. </Project>