BossClient.csproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\..\Bin\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="Ionic.Zip, Version=1.9.1.8, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>..\..\packages\DotNetZip.1.9.1.8\lib\net20\Ionic.Zip.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System" />
  40. <Reference Include="System.Core" />
  41. <Reference Include="System.Numerics" />
  42. <Reference Include="System.Runtime.Serialization" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="ENetChannel.cs" />
  46. <Compile Include="GateSession.cs" />
  47. <Compile Include="IMessageChannel.cs" />
  48. <Compile Include="Messages.cs" />
  49. <Compile Include="BossClient.cs" />
  50. <Compile Include="Properties\AssemblyInfo.cs" />
  51. <Compile Include="BossException.cs" />
  52. <Compile Include="RealmSession.cs" />
  53. <Compile Include="SRP6Client.cs" />
  54. <Compile Include="TcpChannel.cs" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <ProjectReference Include="..\..\Platform\ENet\ENet.csproj">
  58. <Project>{D0B4CFAC-A368-4742-9863-68776CFA9938}</Project>
  59. <Name>ENet</Name>
  60. </ProjectReference>
  61. <ProjectReference Include="..\..\Platform\Helper\Helper.csproj">
  62. <Project>{24233cd5-a5df-484b-a482-b79cb7a0d9cb}</Project>
  63. <Name>Helper</Name>
  64. </ProjectReference>
  65. <ProjectReference Include="..\..\Platform\Log\Log.csproj">
  66. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  67. <Name>Log</Name>
  68. </ProjectReference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <None Include="Packages.config" />
  72. </ItemGroup>
  73. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  74. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  75. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  76. Other similar extension points exist, see Microsoft.Common.targets.
  77. <Target Name="BeforeBuild">
  78. </Target>
  79. <Target Name="AfterBuild">
  80. </Target>
  81. -->
  82. </Project>