Model.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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>{0FA529D1-D0A9-4A8E-90F5-117CE80F2EDE}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Model</RootNamespace>
  11. <AssemblyName>Model</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. <TargetFrameworkProfile />
  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.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
  37. <SpecificVersion>False</SpecificVersion>
  38. <HintPath>..\..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Bson.dll</HintPath>
  39. </Reference>
  40. <Reference Include="MongoDB.Driver, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Driver.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System" />
  45. <Reference Include="System.Core" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="Component\BehaviorTreeComponent.cs" />
  49. <Compile Include="BehaviorTree\BehaviorTree.cs" />
  50. <Compile Include="BehaviorTree\BehaviorTreeFactory.cs" />
  51. <Compile Include="BehaviorTree\BlackBoard.cs" />
  52. <Compile Include="BehaviorTree\Node.cs" />
  53. <Compile Include="BehaviorTree\NodeAttribute.cs" />
  54. <Compile Include="Buff.cs" />
  55. <Compile Include="Component\BuffComponent.cs" />
  56. <Compile Include="Component\ConfigComponent.cs" />
  57. <Compile Include="Component\EventComponent.cs" />
  58. <Compile Include="Config\UnitConfig.cs" />
  59. <Compile Include="Config\BuffConfig.cs" />
  60. <Compile Include="FactoryAttribute.cs" />
  61. <Compile Include="Component\FactoryComponent.cs" />
  62. <Compile Include="IFactory.cs" />
  63. <Compile Include="Component\UnitComponent.cs" />
  64. <Compile Include="BuffType.cs" />
  65. <Compile Include="GameObject.cs" />
  66. <Compile Include="Config\GlobalConfig.cs" />
  67. <Compile Include="Config\NodeConfig.cs" />
  68. <Compile Include="Unit.cs" />
  69. <Compile Include="World.cs" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Folder Include="Properties\" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  76. <Project>{19f8f043-1f99-4550-99df-dea5c7d77e55}</Project>
  77. <Name>Common</Name>
  78. </ProjectReference>
  79. </ItemGroup>
  80. <ItemGroup>
  81. <None Include="packages.config" />
  82. </ItemGroup>
  83. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  84. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>