160 lines
7.7 KiB
XML
160 lines
7.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>{99604A24-13D0-4C83-A3AA-9A315339FA47}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>ICSharpCode.SharpZipLib</RootNamespace>
|
|
<AssemblyName>ICSharpCode.SharpZipLib</AssemblyName>
|
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
<FileAlignment>4096</FileAlignment>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<NoStdLib>true</NoStdLib>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<NoStdLib>true</NoStdLib>
|
|
</PropertyGroup>
|
|
<ItemGroup />
|
|
<ItemGroup>
|
|
<AppDesigner Include="Properties\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="BZip2\BZip2.cs" />
|
|
<Compile Include="BZip2\BZip2Constants.cs" />
|
|
<Compile Include="BZip2\BZip2Exception.cs" />
|
|
<Compile Include="BZip2\BZip2InputStream.cs" />
|
|
<Compile Include="BZip2\BZip2OutputStream.cs" />
|
|
<Compile Include="Checksums\Adler32.cs" />
|
|
<Compile Include="Checksums\Crc32.cs" />
|
|
<Compile Include="Checksums\IChecksum.cs" />
|
|
<Compile Include="Checksums\StrangeCRC.cs" />
|
|
<Compile Include="Core\CompletedFileHandler.cs" />
|
|
<Compile Include="Core\DirectoryEventArgs.cs" />
|
|
<Compile Include="Core\DirectoryFailureHandler.cs" />
|
|
<Compile Include="Core\ExtendedPathFilter.cs" />
|
|
<Compile Include="Core\FileFailureHandler.cs" />
|
|
<Compile Include="Core\FileSystemScanner.cs" />
|
|
<Compile Include="Core\INameTransform.cs" />
|
|
<Compile Include="Core\IScanFilter.cs" />
|
|
<Compile Include="Core\NameAndSizeFilter.cs" />
|
|
<Compile Include="Core\NameFilter.cs" />
|
|
<Compile Include="Core\PathFilter.cs" />
|
|
<Compile Include="Core\ProcessDirectoryHandler.cs" />
|
|
<Compile Include="Core\ProcessFileHandler.cs" />
|
|
<Compile Include="Core\ProgressEventArgs.cs" />
|
|
<Compile Include="Core\ProgressHandler.cs" />
|
|
<Compile Include="Core\ScanEventArgs.cs" />
|
|
<Compile Include="Core\ScanFailureEventArgs.cs" />
|
|
<Compile Include="Core\StreamUtils.cs" />
|
|
<Compile Include="Core\WindowsPathUtils.cs" />
|
|
<Compile Include="Encryption\PkzipClassic.cs" />
|
|
<Compile Include="Encryption\PkzipClassicCryptoBase.cs" />
|
|
<Compile Include="Encryption\PkzipClassicDecryptCryptoTransform.cs" />
|
|
<Compile Include="Encryption\PkzipClassicEncryptCryptoTransform.cs" />
|
|
<Compile Include="Encryption\PkzipClassicManaged.cs" />
|
|
<Compile Include="Encryption\ZipAESStream.cs" />
|
|
<Compile Include="Encryption\ZipAESTransform.cs" />
|
|
<Compile Include="GZip\GZipConstants.cs" />
|
|
<Compile Include="GZip\GZipException.cs" />
|
|
<Compile Include="GZip\GZipInputStream.cs" />
|
|
<Compile Include="GZip\GZipOutputStream.cs" />
|
|
<Compile Include="LZW\LzwConstants.cs" />
|
|
<Compile Include="LZW\LzwException.cs" />
|
|
<Compile Include="LZW\LzwInputStream.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="SharpZipBaseException.cs" />
|
|
<Compile Include="Tar\InvalidHeaderException.cs" />
|
|
<Compile Include="Tar\ProgressMessageHandler.cs" />
|
|
<Compile Include="Tar\TarArchive.cs" />
|
|
<Compile Include="Tar\TarBuffer.cs" />
|
|
<Compile Include="Tar\TarEntry.cs" />
|
|
<Compile Include="Tar\TarException.cs" />
|
|
<Compile Include="Tar\TarHeader.cs" />
|
|
<Compile Include="Tar\TarInputStream.cs" />
|
|
<Compile Include="Tar\TarOutputStream.cs" />
|
|
<Compile Include="Zip\BaseArchiveStorage.cs" />
|
|
<Compile Include="Zip\CompressionMethod.cs" />
|
|
<Compile Include="Zip\Compression\Deflater.cs" />
|
|
<Compile Include="Zip\Compression\DeflaterConstants.cs" />
|
|
<Compile Include="Zip\Compression\DeflaterEngine.cs" />
|
|
<Compile Include="Zip\Compression\DeflaterHuffman.cs" />
|
|
<Compile Include="Zip\Compression\DeflaterPending.cs" />
|
|
<Compile Include="Zip\Compression\DeflateStrategy.cs" />
|
|
<Compile Include="Zip\Compression\Inflater.cs" />
|
|
<Compile Include="Zip\Compression\InflaterDynHeader.cs" />
|
|
<Compile Include="Zip\Compression\InflaterHuffmanTree.cs" />
|
|
<Compile Include="Zip\Compression\PendingBuffer.cs" />
|
|
<Compile Include="Zip\Compression\Streams\DeflaterOutputStream.cs" />
|
|
<Compile Include="Zip\Compression\Streams\InflaterInputBuffer.cs" />
|
|
<Compile Include="Zip\Compression\Streams\InflaterInputStream.cs" />
|
|
<Compile Include="Zip\Compression\Streams\OutputWindow.cs" />
|
|
<Compile Include="Zip\Compression\Streams\StreamManipulator.cs" />
|
|
<Compile Include="Zip\DescriptorData.cs" />
|
|
<Compile Include="Zip\DiskArchiveStorage.cs" />
|
|
<Compile Include="Zip\DynamicDiskDataSource.cs" />
|
|
<Compile Include="Zip\EncryptionAlgorithm.cs" />
|
|
<Compile Include="Zip\EntryPatchData.cs" />
|
|
<Compile Include="Zip\ExtendedUnixData.cs" />
|
|
<Compile Include="Zip\FastZip.cs" />
|
|
<Compile Include="Zip\FastZipEvents.cs" />
|
|
<Compile Include="Zip\FileUpdateMode.cs" />
|
|
<Compile Include="Zip\GeneralBitFlags.cs" />
|
|
<Compile Include="Zip\HostSystemID.cs" />
|
|
<Compile Include="Zip\IArchiveStorage.cs" />
|
|
<Compile Include="Zip\IDynamicDataSource.cs" />
|
|
<Compile Include="Zip\IEntryFactory.cs" />
|
|
<Compile Include="Zip\IStaticDataSource.cs" />
|
|
<Compile Include="Zip\ITaggedData.cs" />
|
|
<Compile Include="Zip\ITaggedDataFactory.cs" />
|
|
<Compile Include="Zip\KeysRequiredEventArgs.cs" />
|
|
<Compile Include="Zip\MemoryArchiveStorage.cs" />
|
|
<Compile Include="Zip\NTTaggedData.cs" />
|
|
<Compile Include="Zip\RawTaggedData.cs" />
|
|
<Compile Include="Zip\StaticDiskDataSource.cs" />
|
|
<Compile Include="Zip\TestOperation.cs" />
|
|
<Compile Include="Zip\TestStatus.cs" />
|
|
<Compile Include="Zip\TestStrategy.cs" />
|
|
<Compile Include="Zip\UseZip64.cs" />
|
|
<Compile Include="Zip\WindowsNameTransform.cs" />
|
|
<Compile Include="Zip\ZipConstants.cs" />
|
|
<Compile Include="Zip\ZipEntry.cs" />
|
|
<Compile Include="Zip\ZipEntryFactory.cs" />
|
|
<Compile Include="Zip\ZipException.cs" />
|
|
<Compile Include="Zip\ZipExtraData.cs" />
|
|
<Compile Include="Zip\ZipFile.cs" />
|
|
<Compile Include="Zip\ZipHelperStream.cs" />
|
|
<Compile Include="Zip\ZipInputStream.cs" />
|
|
<Compile Include="Zip\ZipNameTransform.cs" />
|
|
<Compile Include="Zip\ZipOutputStream.cs" />
|
|
<Compile Include="Zip\ZipTestResultHandler.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\mscorlib\mscorlib.csproj">
|
|
<Project>{99604a24-13d0-4c83-a3aa-9a315339fa4c}</Project>
|
|
<Name>mscorlib</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\System\System.csproj">
|
|
<Project>{99604a24-13d0-4c83-a3aa-9a315339fa56}</Project>
|
|
<Name>System</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |