Model.csproj 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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>{0608C0C1-F584-4092-AAF9-1E99A78E3703}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Model</RootNamespace>
  11. <AssemblyName>Model</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="CommandLine">
  34. <HintPath>..\..\packages\CommandLineParser.1.9.71\lib\net45\CommandLine.dll</HintPath>
  35. </Reference>
  36. <Reference Include="MongoDB.Bson">
  37. <HintPath>..\..\packages\MongoDB.Bson.2.0.0-rc0\lib\net45\MongoDB.Bson.dll</HintPath>
  38. </Reference>
  39. <Reference Include="MongoDB.Driver">
  40. <HintPath>..\..\packages\MongoDB.Driver.2.0.0-rc0\lib\net45\MongoDB.Driver.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="ACategory.cs" />
  47. <Compile Include="AConfig.cs" />
  48. <Compile Include="AEventAttribute.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="BuffType.cs" />
  56. <Compile Include="Component\ActorComponent.cs" />
  57. <Compile Include="Component\BehaviorTreeComponent.cs" />
  58. <Compile Include="Component\BuffComponent.cs" />
  59. <Compile Include="Component\ChannelUnitInfoComponent.cs" />
  60. <Compile Include="Component\ConfigComponent.cs" />
  61. <Compile Include="Component\EventComponent.cs" />
  62. <Compile Include="Component\FactoryComponent.cs" />
  63. <Compile Include="Component\NetworkComponent.cs" />
  64. <Compile Include="Component\TimerComponent.cs" />
  65. <Compile Include="Component\UnitComponent.cs" />
  66. <Compile Include="ConfigAttribute.cs" />
  67. <Compile Include="Config\BuffConfig.cs" />
  68. <Compile Include="Config\GlobalConfig.cs" />
  69. <Compile Include="Config\NodeConfig.cs" />
  70. <Compile Include="Config\ServerInfoConfig.cs" />
  71. <Compile Include="Config\UnitConfig.cs" />
  72. <Compile Include="Env.cs" />
  73. <Compile Include="EnvKey.cs" />
  74. <Compile Include="EventAttribute.cs" />
  75. <Compile Include="EventType.cs" />
  76. <Compile Include="FactoryAttribute.cs" />
  77. <Compile Include="IAssemblyLoader.cs" />
  78. <Compile Include="ICategory.cs" />
  79. <Compile Include="IConfigLoader.cs" />
  80. <Compile Include="IEventAsync.cs" />
  81. <Compile Include="IEventSync.cs" />
  82. <Compile Include="IFactory.cs" />
  83. <Compile Include="IStart.cs" />
  84. <Compile Include="IUpdate.cs" />
  85. <Compile Include="MessageAttribute.cs" />
  86. <Compile Include="Options.cs" />
  87. <Compile Include="Properties\AssemblyInfo.cs" />
  88. <Compile Include="ServerType.cs" />
  89. <Compile Include="Unit.cs" />
  90. <Compile Include="UnitType.cs" />
  91. <Compile Include="World.cs" />
  92. </ItemGroup>
  93. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  94. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  95. Other similar extension points exist, see Microsoft.Common.targets.
  96. <Target Name="BeforeBuild">
  97. </Target>
  98. <Target Name="AfterBuild">
  99. </Target>
  100. -->
  101. <ItemGroup>
  102. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  103. <Project>{F06B995E-6508-4C5C-A396-554316C9215D}</Project>
  104. <Name>Common</Name>
  105. </ProjectReference>
  106. <ProjectReference Include="..\..\Platform\UNet\UNet.csproj">
  107. <Project>{D3CEA64F-4D75-4DC9-B139-8D12EB4ACF8E}</Project>
  108. <Name>UNet</Name>
  109. </ProjectReference>
  110. <ProjectReference Include="..\..\Platform\TNet\TNet.csproj">
  111. <Project>{B1B78524-3F75-40D7-BF12-10B25A00C590}</Project>
  112. <Name>TNet</Name>
  113. </ProjectReference>
  114. </ItemGroup>
  115. </Project>