Server.Model.csproj 4.3 KB

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