Model.csproj 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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>{01895B6C-E8E9-4F14-9497-E9DB426ADB11}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <RootNamespace>Model</RootNamespace>
  9. <AssemblyName>Model</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\Model\BehaviorTree\BehaviorTree.cs">
  42. <Link>BehaviorTree\BehaviorTree.cs</Link>
  43. </Compile>
  44. <Compile Include="..\..\..\CSharp\Game\Model\BehaviorTree\BehaviorTreeFactory.cs">
  45. <Link>BehaviorTree\BehaviorTreeFactory.cs</Link>
  46. </Compile>
  47. <Compile Include="..\..\..\CSharp\Game\Model\BehaviorTree\BlackBoard.cs">
  48. <Link>BehaviorTree\BlackBoard.cs</Link>
  49. </Compile>
  50. <Compile Include="..\..\..\CSharp\Game\Model\BehaviorTree\Node.cs">
  51. <Link>BehaviorTree\Node.cs</Link>
  52. </Compile>
  53. <Compile Include="..\..\..\CSharp\Game\Model\BehaviorTree\NodeAttribute.cs">
  54. <Link>BehaviorTree\NodeAttribute.cs</Link>
  55. </Compile>
  56. <Compile Include="..\..\..\CSharp\Game\Model\Component\ActorComponent.cs">
  57. <Link>Component\ActorComponent.cs</Link>
  58. </Compile>
  59. <Compile Include="..\..\..\CSharp\Game\Model\Component\BehaviorTreeComponent.cs">
  60. <Link>Component\BehaviorTreeComponent.cs</Link>
  61. </Compile>
  62. <Compile Include="..\..\..\CSharp\Game\Model\Component\BuffComponent.cs">
  63. <Link>Component\BuffComponent.cs</Link>
  64. </Compile>
  65. <Compile Include="..\..\..\CSharp\Game\Model\Component\ChannelUnitInfoComponent.cs">
  66. <Link>Component\ChannelUnitInfoComponent.cs</Link>
  67. </Compile>
  68. <Compile Include="..\..\..\CSharp\Game\Model\Component\ConfigComponent.cs">
  69. <Link>Component\ConfigComponent.cs</Link>
  70. </Compile>
  71. <Compile Include="..\..\..\CSharp\Game\Model\Component\EventComponent.cs">
  72. <Link>Component\EventComponent.cs</Link>
  73. </Compile>
  74. <Compile Include="..\..\..\CSharp\Game\Model\Component\FactoryComponent.cs">
  75. <Link>Component\FactoryComponent.cs</Link>
  76. </Compile>
  77. <Compile Include="..\..\..\CSharp\Game\Model\Component\NetworkComponent.cs">
  78. <Link>Component\NetworkComponent.cs</Link>
  79. </Compile>
  80. <Compile Include="..\..\..\CSharp\Game\Model\Component\TimerComponent.cs">
  81. <Link>Component\TimerComponent.cs</Link>
  82. </Compile>
  83. <Compile Include="..\..\..\CSharp\Game\Model\Component\UnitComponent.cs">
  84. <Link>Component\UnitComponent.cs</Link>
  85. </Compile>
  86. <Compile Include="..\..\..\CSharp\Game\Model\Config\BuffConfig.cs">
  87. <Link>Config\BuffConfig.cs</Link>
  88. </Compile>
  89. <Compile Include="..\..\..\CSharp\Game\Model\Config\GlobalConfig.cs">
  90. <Link>Config\GlobalConfig.cs</Link>
  91. </Compile>
  92. <Compile Include="..\..\..\CSharp\Game\Model\Config\NodeConfig.cs">
  93. <Link>Config\NodeConfig.cs</Link>
  94. </Compile>
  95. <Compile Include="..\..\..\CSharp\Game\Model\Config\UnitConfig.cs">
  96. <Link>Config\UnitConfig.cs</Link>
  97. </Compile>
  98. <Compile Include="..\..\..\CSharp\Game\Model\Buff.cs">
  99. <Link>Buff.cs</Link>
  100. </Compile>
  101. <Compile Include="..\..\..\CSharp\Game\Model\BuffType.cs">
  102. <Link>BuffType.cs</Link>
  103. </Compile>
  104. <Compile Include="..\..\..\CSharp\Game\Model\EnvKey.cs">
  105. <Link>EnvKey.cs</Link>
  106. </Compile>
  107. <Compile Include="..\..\..\CSharp\Game\Model\EventAttribute.cs">
  108. <Link>EventAttribute.cs</Link>
  109. </Compile>
  110. <Compile Include="..\..\..\CSharp\Game\Model\EventType.cs">
  111. <Link>EventType.cs</Link>
  112. </Compile>
  113. <Compile Include="..\..\..\CSharp\Game\Model\FactoryAttribute.cs">
  114. <Link>FactoryAttribute.cs</Link>
  115. </Compile>
  116. <Compile Include="..\..\..\CSharp\Game\Model\IAssemblyLoader.cs">
  117. <Link>IAssemblyLoader.cs</Link>
  118. </Compile>
  119. <Compile Include="..\..\..\CSharp\Game\Model\IFactory.cs">
  120. <Link>IFactory.cs</Link>
  121. </Compile>
  122. <Compile Include="..\..\..\CSharp\Game\Model\MessageAttribute.cs">
  123. <Link>MessageAttribute.cs</Link>
  124. </Compile>
  125. <Compile Include="..\..\..\CSharp\Game\Model\Unit.cs">
  126. <Link>Unit.cs</Link>
  127. </Compile>
  128. <Compile Include="..\..\..\CSharp\Game\Model\UnitType.cs">
  129. <Link>UnitType.cs</Link>
  130. </Compile>
  131. <Compile Include="..\..\..\CSharp\Game\Model\World.cs">
  132. <Link>World.cs</Link>
  133. </Compile>
  134. </ItemGroup>
  135. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  136. <ItemGroup>
  137. <Folder Include="BehaviorTree\" />
  138. <Folder Include="Component\" />
  139. <Folder Include="Config\" />
  140. </ItemGroup>
  141. <ItemGroup>
  142. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  143. <Project>{EF4373AF-66D4-4313-A882-60EF0AE4239A}</Project>
  144. <Name>Common</Name>
  145. </ProjectReference>
  146. <ProjectReference Include="..\..\Platform\TNet\TNet.csproj">
  147. <Project>{AA3FD3AA-1835-42F4-9BE3-4A26D7CA8AB1}</Project>
  148. <Name>TNet</Name>
  149. </ProjectReference>
  150. <ProjectReference Include="..\..\Platform\UNet\UNet.csproj">
  151. <Project>{3A56E389-BB11-421C-9E11-EA88C5CA3EFC}</Project>
  152. <Name>UNet</Name>
  153. </ProjectReference>
  154. </ItemGroup>
  155. </Project>