BossClient.csproj 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>{8650195A-7904-4EBC-9D81-B392A7E9B9B3}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BossClient</RootNamespace>
  11. <AssemblyName>BossClient</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. <TargetFrameworkProfile />
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\..\Bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>..\..\Bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Numerics" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="ENetChannel.cs" />
  42. <Compile Include="GateSession.cs" />
  43. <Compile Include="BossClient.cs" />
  44. <Compile Include="Properties\AssemblyInfo.cs" />
  45. <Compile Include="BossException.cs" />
  46. <Compile Include="RealmSession.cs" />
  47. <Compile Include="SRP6Client.cs" />
  48. <Compile Include="TcpChannel.cs" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\..\Platform\ENet\ENet.csproj">
  52. <Project>{D0B4CFAC-A368-4742-9863-68776CFA9938}</Project>
  53. <Name>ENet</Name>
  54. </ProjectReference>
  55. <ProjectReference Include="..\..\Platform\Helper\Helper.csproj">
  56. <Project>{24233cd5-a5df-484b-a482-b79cb7a0d9cb}</Project>
  57. <Name>Helper</Name>
  58. </ProjectReference>
  59. <ProjectReference Include="..\..\Platform\Logger\Logger.csproj">
  60. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  61. <Name>Logger</Name>
  62. </ProjectReference>
  63. <ProjectReference Include="..\BossBase\BossBase.csproj">
  64. <Project>{999910d3-4e7d-45b1-bd2c-47289cd4d1ab}</Project>
  65. <Name>BossBase</Name>
  66. </ProjectReference>
  67. </ItemGroup>
  68. <ItemGroup>
  69. <None Include="app.config" />
  70. </ItemGroup>
  71. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  72. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  73. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  74. Other similar extension points exist, see Microsoft.Common.targets.
  75. <Target Name="BeforeBuild">
  76. </Target>
  77. <Target Name="AfterBuild">
  78. </Target>
  79. -->
  80. </Project>