97 lines
4.7 KiB
XML
97 lines
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" 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>{C3C49F45-2589-4E04-9C50-71B6035C14AE}</ProjectGuid>
|
|
<OutputType>WinExe</OutputType>
|
|
<RootNamespace>Client</RootNamespace>
|
|
<AssemblyName>Client</AssemblyName>
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<Deterministic>true</Deterministic>
|
|
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<DebugType>none</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<StartupObject />
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.VisualBasic" />
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Management" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Handle Packet\HandlePacket.cs" />
|
|
<Compile Include="Install\HiddenStartup.cs" />
|
|
<Compile Include="Install\NormalStartup.cs" />
|
|
<Compile Include="MessagePack\BytesTools.cs" />
|
|
<Compile Include="MessagePack\MsgPack.cs" />
|
|
<Compile Include="MessagePack\MsgPackType.cs" />
|
|
<Compile Include="MessagePack\ReadTools.cs" />
|
|
<Compile Include="MessagePack\WriteTools.cs" />
|
|
<Compile Include="Program.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Sockets\ClientSocket.cs" />
|
|
<Compile Include="StreamLibrary\Codecs\DirectDriverCodec.cs" />
|
|
<Compile Include="StreamLibrary\Codecs\MJPGCodec.cs" />
|
|
<Compile Include="StreamLibrary\Codecs\QuickCachedStreamCodec.cs" />
|
|
<Compile Include="StreamLibrary\Codecs\QuickStreamCodec.cs" />
|
|
<Compile Include="StreamLibrary\Codecs\SmallCachedStreamCodec.cs" />
|
|
<Compile Include="StreamLibrary\Codecs\SmallStreamCodec.cs" />
|
|
<Compile Include="StreamLibrary\Encoders\GridCoder\GridBlock.cs" />
|
|
<Compile Include="StreamLibrary\Encoders\GridCoder\GridEncoder.cs" />
|
|
<Compile Include="StreamLibrary\Enums.cs" />
|
|
<Compile Include="StreamLibrary\IEncoder.cs" />
|
|
<Compile Include="StreamLibrary\IUnsafeCodec.cs" />
|
|
<Compile Include="StreamLibrary\IVideoCodec.cs" />
|
|
<Compile Include="StreamLibrary\src\CRC32.cs" />
|
|
<Compile Include="StreamLibrary\src\ExtensionAttribute.cs" />
|
|
<Compile Include="StreamLibrary\src\Extentions.cs" />
|
|
<Compile Include="StreamLibrary\src\FastBitmap.cs" />
|
|
<Compile Include="StreamLibrary\src\JpgCompression.cs" />
|
|
<Compile Include="StreamLibrary\src\LzwCompression.cs" />
|
|
<Compile Include="StreamLibrary\src\MurmurHash2Unsafe.cs" />
|
|
<Compile Include="StreamLibrary\src\NativeMethods.cs" />
|
|
<Compile Include="StreamLibrary\src\PayloadWriter.cs" />
|
|
<Compile Include="StreamLibrary\src\PointerHelper.cs" />
|
|
<Compile Include="StreamLibrary\src\SafeQuickLZ.cs" />
|
|
<Compile Include="StreamLibrary\src\SimpleBitmap.cs" />
|
|
<Compile Include="StreamLibrary\UnsafeCodecs\UnsafeCacheCodec.cs" />
|
|
<Compile Include="StreamLibrary\UnsafeCodecs\UnsafeCachedStreamCodec.cs" />
|
|
<Compile Include="StreamLibrary\UnsafeCodecs\UnsafeMiniCodec.cs" />
|
|
<Compile Include="StreamLibrary\UnsafeCodecs\UnsafeOptimizedCodec.cs" />
|
|
<Compile Include="StreamLibrary\UnsafeCodecs\UnsafeQuickStream.cs" />
|
|
<Compile Include="StreamLibrary\UnsafeCodecs\UnsafeStreamCodec.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="app.config" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |