Server.Model.csproj 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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\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, 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">
  38. <HintPath>..\Lib\MongoDB.Bson.dll</HintPath>
  39. </Reference>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="..\..\Unity\Assets\Scripts\Component\EventComponent.cs">
  45. <Link>Component\EventComponent.cs</Link>
  46. </Compile>
  47. <Compile Include="..\..\Unity\Assets\Scripts\Component\KVComponent.cs">
  48. <Link>Component\KVComponent.cs</Link>
  49. </Compile>
  50. <Compile Include="..\..\Unity\Assets\Scripts\Component\MessageComponent.cs">
  51. <Link>Component\MessageComponent.cs</Link>
  52. </Compile>
  53. <Compile Include="..\..\Unity\Assets\Scripts\Component\MessageHandlerComponent.cs">
  54. <Link>Component\MessageHandlerComponent.cs</Link>
  55. </Compile>
  56. <Compile Include="..\..\Unity\Assets\Scripts\Component\NetworkComponent.cs">
  57. <Link>Component\NetworkComponent.cs</Link>
  58. </Compile>
  59. <Compile Include="..\..\Unity\Assets\Scripts\Component\TimerComponent.cs">
  60. <Link>Component\TimerComponent.cs</Link>
  61. </Compile>
  62. <Compile Include="..\..\Unity\Assets\Scripts\Message\AppType.cs">
  63. <Link>Message\AppType.cs</Link>
  64. </Compile>
  65. <Compile Include="..\..\Unity\Assets\Scripts\Message\ErrorCode.cs">
  66. <Link>Message\ErrorCode.cs</Link>
  67. </Compile>
  68. <Compile Include="..\..\Unity\Assets\Scripts\Message\Message.cs">
  69. <Link>Message\Message.cs</Link>
  70. </Compile>
  71. <Compile Include="..\..\Unity\Assets\Scripts\Message\Opcode.cs">
  72. <Link>Message\Opcode.cs</Link>
  73. </Compile>
  74. <Compile Include="..\..\Unity\Assets\Scripts\Message\OpcodeHelper.cs">
  75. <Link>Message\OpcodeHelper.cs</Link>
  76. </Compile>
  77. <Compile Include="Component\OptionsComponent.cs" />
  78. <Compile Include="Properties\AssemblyInfo.cs" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <ProjectReference Include="..\Base\Server.Base.csproj">
  82. <Project>{e5078ec6-2b0e-4711-be8b-d99f69638316}</Project>
  83. <Name>Server.Base</Name>
  84. </ProjectReference>
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. </Project>