Server.Model.csproj 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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>{820D3488-76B9-4EE8-872A-BE06C2350B20}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Model</RootNamespace>
  11. <AssemblyName>Model</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</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\</OutputPath>
  20. <DefineConstants>TRACE;DEBUG;SERVER</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\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="CommandLine, Version=1.9.71.2, Culture=neutral, PublicKeyToken=de6f01bd326f8c32, processorArchitecture=MSIL">
  34. <SpecificVersion>False</SpecificVersion>
  35. <HintPath>..\Lib\CommandLine.dll</HintPath>
  36. </Reference>
  37. <Reference Include="MongoDB.Bson, Version=2.3.0.157, Culture=neutral, processorArchitecture=MSIL">
  38. <SpecificVersion>False</SpecificVersion>
  39. <HintPath>..\Lib\MongoDB.Bson.dll</HintPath>
  40. </Reference>
  41. <Reference Include="MongoDB.Driver">
  42. <HintPath>..\Lib\MongoDB.Driver.dll</HintPath>
  43. </Reference>
  44. <Reference Include="MongoDB.Driver.Core">
  45. <HintPath>..\Lib\MongoDB.Driver.Core.dll</HintPath>
  46. </Reference>
  47. <Reference Include="System" />
  48. <Reference Include="System.Core" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="Component\BenchmarkComponent.cs" />
  52. <Compile Include="Component\ConfigComponent.cs" />
  53. <Compile Include="Component\Config\ClientConfig.cs" />
  54. <Compile Include="Component\Config\DBConfig.cs" />
  55. <Compile Include="Component\Config\HttpConfig.cs" />
  56. <Compile Include="Component\Config\InnerConfig.cs" />
  57. <Compile Include="Component\Config\OuterConfig.cs" />
  58. <Compile Include="Component\DBCacheComponent.cs" />
  59. <Compile Include="Component\DBComponent.cs" />
  60. <Compile Include="Component\DBProxyComponent.cs" />
  61. <Compile Include="Component\EventComponent.cs" />
  62. <Compile Include="Component\KVComponent.cs" />
  63. <Compile Include="Component\MessageDispatherComponent.cs" />
  64. <Compile Include="Component\NetInnerComponent.cs" />
  65. <Compile Include="Component\NetOuterComponent.cs" />
  66. <Compile Include="Component\NetworkComponent.cs" />
  67. <Compile Include="Component\RobotComponent.cs" />
  68. <Compile Include="Component\TimerComponent.cs" />
  69. <Compile Include="Component\LocationComponent.cs" />
  70. <Compile Include="Component\UnitComponent.cs" />
  71. <Compile Include="Component\Unit\MasterComponent.cs" />
  72. <Compile Include="Component\Unit\LockComponent.cs" />
  73. <Compile Include="Component\AppManagerComponent.cs" />
  74. <Compile Include="Component\GateSessionKeyComponent.cs" />
  75. <Compile Include="Component\RealmGateAddressComponent.cs" />
  76. <Compile Include="Component\OptionComponent.cs" />
  77. <Compile Include="Component\StartConfigComponent.cs" />
  78. <Compile Include="Config\ACategory.cs" />
  79. <Compile Include="Config\AConfig.cs" />
  80. <Compile Include="Config\AConfigComponent.cs" />
  81. <Compile Include="Config\ConfigAttribute.cs" />
  82. <Compile Include="Config\ConfigHelper.cs" />
  83. <Compile Include="Config\ICategory.cs" />
  84. <Compile Include="Entity\Config\BuffConfig.cs" />
  85. <Compile Include="Entity\Config\StartConfig.cs" />
  86. <Compile Include="Entity\SceneEntity.cs" />
  87. <Compile Include="Entity\DBSceneEntity.cs" />
  88. <Compile Include="Entity\DBEntity.cs" />
  89. <Compile Include="Entity\DBTask.cs" />
  90. <Compile Include="Entity\DBTaskQueue.cs" />
  91. <Compile Include="Entity\Game.cs" />
  92. <Compile Include="Entity\Http.cs" />
  93. <Compile Include="Entity\Message\InnerMessage.cs" />
  94. <Compile Include="Entity\Message\Opcode.cs" />
  95. <Compile Include="Entity\Message\OuterMessage.cs" />
  96. <Compile Include="Entity\Scene.cs" />
  97. <Compile Include="Entity\Session.cs" />
  98. <Compile Include="Entity\Unit.cs" />
  99. <Compile Include="Event\AEventAttribute.cs" />
  100. <Compile Include="Event\Env.cs" />
  101. <Compile Include="Event\EnvKey.cs" />
  102. <Compile Include="Event\EventAttribute.cs" />
  103. <Compile Include="Event\EventIdType.cs" />
  104. <Compile Include="Event\IEvent.cs" />
  105. <Compile Include="Helper\DllHelper.cs" />
  106. <Compile Include="Message\AMessage.cs" />
  107. <Compile Include="Message\AMHandler.cs" />
  108. <Compile Include="Message\AppType.cs" />
  109. <Compile Include="Message\ErrorCode.cs" />
  110. <Compile Include="Message\IMHandler.cs" />
  111. <Compile Include="Message\MessageAttribute.cs" />
  112. <Compile Include="Message\MessageHandlerAttribute.cs" />
  113. <Compile Include="Message\MessageInfo.cs" />
  114. <Compile Include="Message\OpcodeHelper.cs" />
  115. <Compile Include="Message\RpcException.cs" />
  116. <Compile Include="Object\ComponentDB.cs" />
  117. <Compile Include="Object\Component.cs" />
  118. <Compile Include="Object\Disposer.cs" />
  119. <Compile Include="Object\Entity.cs" />
  120. <Compile Include="Object\IAwake.cs" />
  121. <Compile Include="Object\ILoad.cs" />
  122. <Compile Include="Object\ILateUpdate.cs" />
  123. <Compile Include="Object\IUpdate.cs" />
  124. <Compile Include="Object\ObjectEventAttribute.cs" />
  125. <Compile Include="Object\EntityType.cs" />
  126. <Compile Include="Object\Object.cs" />
  127. <Compile Include="Object\ObjectEvents.cs" />
  128. <Compile Include="Other\OneThreadSynchronizationContext.cs" />
  129. <Compile Include="Other\Options.cs" />
  130. <Compile Include="Properties\AssemblyInfo.cs" />
  131. </ItemGroup>
  132. <ItemGroup>
  133. <ProjectReference Include="..\Base\Server.Base.csproj">
  134. <Project>{e5078ec6-2b0e-4711-be8b-d99f69638316}</Project>
  135. <Name>Server.Base</Name>
  136. </ProjectReference>
  137. </ItemGroup>
  138. <ItemGroup />
  139. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  140. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  141. Other similar extension points exist, see Microsoft.Common.targets.
  142. <Target Name="BeforeBuild">
  143. </Target>
  144. <Target Name="AfterBuild">
  145. </Target>
  146. -->
  147. </Project>