editor-legacy/CSharp/Libraries/UniversalEditor.Compression/UniversalEditor.Compression.csproj
2014-03-26 08:27:45 -04:00

157 lines
8.0 KiB
XML

<?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>{3F664673-7E22-4486-9AD0-FC81861D0B78}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>UniversalEditor.Compression</RootNamespace>
<AssemblyName>UniversalEditor.Compression</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</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="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="Bzip2\Bzip2CompressionModule.cs" />
<Compile Include="Bzip2\Internal\BZip2.cs" />
<Compile Include="Bzip2\Internal\BZip2Constants.cs" />
<Compile Include="Bzip2\Internal\BZip2Exception.cs" />
<Compile Include="Bzip2\Internal\BZip2InputStream.cs" />
<Compile Include="Bzip2\Internal\BZip2OutputStream.cs" />
<Compile Include="Bzip2\Internal\StreamUtils.cs" />
<Compile Include="Common\BlockType.cs" />
<Compile Include="Common\BurrowsWheelerTransform.cs" />
<Compile Include="Common\CompressionTracingSwitch.cs" />
<Compile Include="Common\DecodeHelper.cs" />
<Compile Include="Common\HuffmanTree.cs" />
<Compile Include="Common\InputBuffer.cs" />
<Compile Include="Common\Match.cs" />
<Compile Include="Common\MT19937ar.cs" />
<Compile Include="Common\RunLengthEncoding.cs" />
<Compile Include="Common\Sorting.cs" />
<Compile Include="CompressionFailureException.cs" />
<Compile Include="CompressionMethod.cs" />
<Compile Include="CompressionMode.cs" />
<Compile Include="CompressionModule.cs" />
<Compile Include="CompressionStream.cs" />
<Compile Include="Deflate\DeflateStream.cs" />
<Compile Include="Deflate\DeflateStreamAsyncResult.cs" />
<Compile Include="Deflate\Internal\DeflateInput.cs" />
<Compile Include="Deflate\Internal\Deflater.cs" />
<Compile Include="Deflate\Internal\FastEncoder.cs" />
<Compile Include="Deflate\Internal\FastEncoderStatics.cs" />
<Compile Include="Deflate\Internal\FastEncoderWindow.cs" />
<Compile Include="Deflate\Internal\Inflater.cs" />
<Compile Include="Deflate\Internal\OutputWindow.cs" />
<Compile Include="Gzip\GzipStream.cs" />
<Compile Include="Gzip\Internal\GzipDecoder.cs" />
<Compile Include="Gzip\Internal\GzipHeaderState.cs" />
<Compile Include="LZH\LZHStream.cs" />
<Compile Include="LZMA\LZMAStream.cs" />
<Compile Include="LZPL2\LZPL2CompressionModule.cs" />
<Compile Include="LZRW1\LZRW1CompressionModule.cs" />
<Compile Include="LZSS\LZSS2.cs" />
<Compile Include="LZSS\LZSSStream.cs" />
<Compile Include="LZW\Internal\Element.cs" />
<Compile Include="LZW\LZWStream.cs" />
<Compile Include="LZX\LZXCompressionModule.cs" />
<Compile Include="LZ\LZ.cs" />
<Compile Include="Modules\Deflate\DeflateCompressionModule.cs" />
<Compile Include="Modules\Deflate\DeflateStreamAsyncResult.cs" />
<Compile Include="Modules\Deflate\Internal\DeflateInput.cs" />
<Compile Include="Modules\Deflate\Internal\Deflater.cs" />
<Compile Include="Modules\Deflate\Internal\FastEncoder.cs" />
<Compile Include="Modules\Deflate\Internal\FastEncoderStatics.cs" />
<Compile Include="Modules\Deflate\Internal\FastEncoderWindow.cs" />
<Compile Include="Modules\Deflate\Internal\Inflater.cs" />
<Compile Include="Modules\Deflate\Internal\OutputWindow.cs" />
<Compile Include="Modules\LZX\Internal\Constants.cs" />
<Compile Include="Modules\LZX\LZXCompressionModule.cs" />
<Compile Include="Modules\Puyo\CNX.cs" />
<Compile Include="Modules\Puyo\Compression.cs" />
<Compile Include="Modules\Puyo\CompressionFormat.cs" />
<Compile Include="Modules\Puyo\CompressionModule.cs" />
<Compile Include="Modules\Puyo\CXLZ.cs" />
<Compile Include="Modules\Puyo\Internal\CompressionDictionaries\LzBufferDictionary.cs" />
<Compile Include="Modules\Puyo\Internal\CompressionDictionaries\LzWindowDictionary.cs" />
<Compile Include="Modules\Puyo\Internal\CompressionDictionary.cs" />
<Compile Include="Modules\Puyo\LZ00.cs" />
<Compile Include="Modules\Puyo\LZ01.cs" />
<Compile Include="Modules\Puyo\LZSS.cs" />
<Compile Include="Modules\Puyo\ONZ.cs" />
<Compile Include="Modules\Puyo\PRS.cs" />
<Compile Include="Modules\XMemLZX\XMemLZXCompressionModule.cs" />
<Compile Include="PPmD\PPmDStream.cs" />
<Compile Include="PPPmD\PPPmDStream.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Puyo\CNX.cs" />
<Compile Include="Puyo\Compression.cs" />
<Compile Include="Puyo\CompressionFormat.cs" />
<Compile Include="Puyo\CompressionModule.cs" />
<Compile Include="Puyo\CXLZ.cs" />
<Compile Include="Puyo\Internal\CompressionDictionaries\LzBufferDictionary.cs" />
<Compile Include="Puyo\Internal\CompressionDictionaries\LzWindowDictionary.cs" />
<Compile Include="Puyo\Internal\CompressionDictionary.cs" />
<Compile Include="Puyo\Internal\Compressors\CNX.cs" />
<Compile Include="Puyo\Internal\Compressors\CXLZ.cs" />
<Compile Include="Puyo\Internal\Compressors\LZ00.cs" />
<Compile Include="Puyo\Internal\Compressors\LZ01.cs" />
<Compile Include="Puyo\Internal\Compressors\LZSS.cs" />
<Compile Include="Puyo\Internal\Compressors\ONZ.cs" />
<Compile Include="Puyo\Internal\Compressors\PRS.cs" />
<Compile Include="Puyo\LZ00.cs" />
<Compile Include="RLEW\RLEWCompressionModule.cs" />
<Compile Include="UnsupportedWindowSizeRangeException.cs" />
<Compile Include="Zlib\Internal\Adler32.cs" />
<Compile Include="Zlib\Internal\Deflate.cs" />
<Compile Include="Zlib\Internal\InfBlocks.cs" />
<Compile Include="Zlib\Internal\InfCodes.cs" />
<Compile Include="Zlib\Internal\Inflate.cs" />
<Compile Include="Zlib\Internal\InfTree.cs" />
<Compile Include="Zlib\Internal\StaticTree.cs" />
<Compile Include="Zlib\Internal\SupportClass.cs" />
<Compile Include="Zlib\Internal\Tree.cs" />
<Compile Include="Zlib\Internal\ZInputStream.cs" />
<Compile Include="Zlib\Internal\Zlib.cs" />
<Compile Include="Zlib\Internal\ZOutputStream.cs" />
<Compile Include="Zlib\Internal\ZStream.cs" />
<Compile Include="Zlib\Internal\ZStreamException.cs" />
<Compile Include="Zlib\ZlibStream.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\UniversalEditor.Core\UniversalEditor.Core.csproj">
<Project>{2d4737e6-6d95-408a-90db-8dff38147e85}</Project>
<Name>UniversalEditor.Core</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.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>