| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{8650195A-7904-4EBC-9D81-B392A7E9B9B3}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>BossClient</RootNamespace>
- <AssemblyName>BossClient</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
- <RestorePackages>true</RestorePackages>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\Bin\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Ionic.Zip, Version=1.9.1.8, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\packages\DotNetZip.1.9.1.8\lib\net20\Ionic.Zip.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Numerics" />
- <Reference Include="System.Runtime.Serialization" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ENetChannel.cs" />
- <Compile Include="GateSession.cs" />
- <Compile Include="BossClient.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="BossException.cs" />
- <Compile Include="RealmSession.cs" />
- <Compile Include="SRP6Client.cs" />
- <Compile Include="TcpChannel.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Platform\ENet\ENet.csproj">
- <Project>{D0B4CFAC-A368-4742-9863-68776CFA9938}</Project>
- <Name>ENet</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\Platform\Helper\Helper.csproj">
- <Project>{24233cd5-a5df-484b-a482-b79cb7a0d9cb}</Project>
- <Name>Helper</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\Platform\Log\Log.csproj">
- <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
- <Name>Log</Name>
- </ProjectReference>
- <ProjectReference Include="..\BossBase\BossBase.csproj">
- <Project>{999910d3-4e7d-45b1-bd2c-47289cd4d1ab}</Project>
- <Name>BossBase</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <None Include="Packages.config" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|