Server.Base.csproj 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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>{E5078EC6-2B0E-4711-BE8B-D99F69638316}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Base</RootNamespace>
  11. <AssemblyName>Base</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="ICSharpCode.SharpZipLib">
  34. <HintPath>..\Lib\ICSharpCode.SharpZipLib.dll</HintPath>
  35. </Reference>
  36. <Reference Include="MongoDB.Bson">
  37. <HintPath>..\Lib\MongoDB.Bson.dll</HintPath>
  38. </Reference>
  39. <Reference Include="NLog">
  40. <HintPath>..\Lib\NLog.dll</HintPath>
  41. </Reference>
  42. <Reference Include="protobuf-net">
  43. <HintPath>..\Lib\protobuf-net.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Xml" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="..\..\Unity\Assets\Plugins\Base\Config\ACategory.cs">
  51. <Link>Config\ACategory.cs</Link>
  52. </Compile>
  53. <Compile Include="..\..\Unity\Assets\Plugins\Base\Config\AConfig.cs">
  54. <Link>Config\AConfig.cs</Link>
  55. </Compile>
  56. <Compile Include="..\..\Unity\Assets\Plugins\Base\Config\ConfigAttribute.cs">
  57. <Link>Config\ConfigAttribute.cs</Link>
  58. </Compile>
  59. <Compile Include="..\..\Unity\Assets\Plugins\Base\Config\ICategory.cs">
  60. <Link>Config\ICategory.cs</Link>
  61. </Compile>
  62. <Compile Include="..\..\Unity\Assets\Plugins\Base\DoubleMap.cs">
  63. <Link>DoubleMap.cs</Link>
  64. </Compile>
  65. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\ArrayHelper.cs">
  66. <Link>Helper\ArrayHelper.cs</Link>
  67. </Compile>
  68. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\ByteHelper.cs">
  69. <Link>Helper\ByteHelper.cs</Link>
  70. </Compile>
  71. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\EnumHelper.cs">
  72. <Link>Helper\EnumHelper.cs</Link>
  73. </Compile>
  74. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\FileHelper.cs">
  75. <Link>Helper\FileHelper.cs</Link>
  76. </Compile>
  77. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\IdGenerater.cs">
  78. <Link>Helper\IdGenerater.cs</Link>
  79. </Compile>
  80. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\MD5Helper.cs">
  81. <Link>Helper\MD5Helper.cs</Link>
  82. </Compile>
  83. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\MongoHelper.cs">
  84. <Link>Helper\MongoHelper.cs</Link>
  85. </Compile>
  86. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\NetHelper.cs">
  87. <Link>Helper\NetHelper.cs</Link>
  88. </Compile>
  89. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\ProtobufHelper.cs">
  90. <Link>Helper\ProtobufHelper.cs</Link>
  91. </Compile>
  92. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\RandomHelper.cs">
  93. <Link>Helper\RandomHelper.cs</Link>
  94. </Compile>
  95. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\StringHelper.cs">
  96. <Link>Helper\StringHelper.cs</Link>
  97. </Compile>
  98. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\TimeHelper.cs">
  99. <Link>Helper\TimeHelper.cs</Link>
  100. </Compile>
  101. <Compile Include="..\..\Unity\Assets\Plugins\Base\Helper\ZipHelper.cs">
  102. <Link>Helper\ZipHelper.cs</Link>
  103. </Compile>
  104. <Compile Include="..\..\Unity\Assets\Plugins\Base\LogType.cs">
  105. <Link>LogType.cs</Link>
  106. </Compile>
  107. <Compile Include="..\..\Unity\Assets\Plugins\Base\MultiMap.cs">
  108. <Link>MultiMap.cs</Link>
  109. </Compile>
  110. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\AChannel.cs">
  111. <Link>Network\AChannel.cs</Link>
  112. </Compile>
  113. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\AService.cs">
  114. <Link>Network\AService.cs</Link>
  115. </Compile>
  116. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\TNet\PacketParser.cs">
  117. <Link>Network\TNet\PacketParser.cs</Link>
  118. </Compile>
  119. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\TNet\TBuffer.cs">
  120. <Link>Network\TNet\TBuffer.cs</Link>
  121. </Compile>
  122. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\TNet\TChannel.cs">
  123. <Link>Network\TNet\TChannel.cs</Link>
  124. </Compile>
  125. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\TNet\TPoller.cs">
  126. <Link>Network\TNet\TPoller.cs</Link>
  127. </Compile>
  128. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\TNet\TService.cs">
  129. <Link>Network\TNet\TService.cs</Link>
  130. </Compile>
  131. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\TNet\TSocket.cs">
  132. <Link>Network\TNet\TSocket.cs</Link>
  133. </Compile>
  134. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\Library.cs">
  135. <Link>Network\UNet\Library.cs</Link>
  136. </Compile>
  137. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\NativeMethods.cs">
  138. <Link>Network\UNet\NativeMethods.cs</Link>
  139. </Compile>
  140. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\NativeStructs.cs">
  141. <Link>Network\UNet\NativeStructs.cs</Link>
  142. </Compile>
  143. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\UAddress.cs">
  144. <Link>Network\UNet\UAddress.cs</Link>
  145. </Compile>
  146. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\UChannel.cs">
  147. <Link>Network\UNet\UChannel.cs</Link>
  148. </Compile>
  149. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\UPacket.cs">
  150. <Link>Network\UNet\UPacket.cs</Link>
  151. </Compile>
  152. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\UPoller.cs">
  153. <Link>Network\UNet\UPoller.cs</Link>
  154. </Compile>
  155. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\UService.cs">
  156. <Link>Network\UNet\UService.cs</Link>
  157. </Compile>
  158. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\USocket.cs">
  159. <Link>Network\UNet\USocket.cs</Link>
  160. </Compile>
  161. <Compile Include="..\..\Unity\Assets\Plugins\Base\Network\UNet\USocketManager.cs">
  162. <Link>Network\UNet\USocketManager.cs</Link>
  163. </Compile>
  164. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\Component.cs">
  165. <Link>Object\Component.cs</Link>
  166. </Compile>
  167. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\Entity.cs">
  168. <Link>Object\Entity.cs</Link>
  169. </Compile>
  170. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\IAwake.cs">
  171. <Link>Object\IAwake.cs</Link>
  172. </Compile>
  173. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\ILoader.cs">
  174. <Link>Object\ILoader.cs</Link>
  175. </Compile>
  176. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\IStart.cs">
  177. <Link>Object\IStart.cs</Link>
  178. </Compile>
  179. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\IUpdate.cs">
  180. <Link>Object\IUpdate.cs</Link>
  181. </Compile>
  182. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\Object.cs">
  183. <Link>Object\Object.cs</Link>
  184. </Compile>
  185. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\ObjectEventAttribute.cs">
  186. <Link>Object\ObjectEventAttribute.cs</Link>
  187. </Compile>
  188. <Compile Include="..\..\Unity\Assets\Plugins\Base\Object\ObjectManager.cs">
  189. <Link>Object\ObjectManager.cs</Link>
  190. </Compile>
  191. <Compile Include="..\..\Unity\Assets\Plugins\Base\QueueDictionary.cs">
  192. <Link>QueueDictionary.cs</Link>
  193. </Compile>
  194. <Compile Include="..\..\Unity\Assets\Plugins\Base\TryLocker.cs">
  195. <Link>TryLocker.cs</Link>
  196. </Compile>
  197. <Compile Include="Log.cs" />
  198. <Compile Include="Logger\ALogDecorater.cs" />
  199. <Compile Include="Logger\ILog.cs" />
  200. <Compile Include="Logger\NLogAdapter.cs" />
  201. <Compile Include="Logger\StackInfoDecorater.cs" />
  202. <Compile Include="Properties\AssemblyInfo.cs" />
  203. </ItemGroup>
  204. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  205. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  206. Other similar extension points exist, see Microsoft.Common.targets.
  207. <Target Name="BeforeBuild">
  208. </Target>
  209. <Target Name="AfterBuild">
  210. </Target>
  211. -->
  212. </Project>