comparison ICSharpCode.SharpZLib.csproj @ 1:94e25b786321

Re #311: can't read ZIP file packed by Linux app Archive Manager/File Roller Initial commit of clean SharpZipLib 0860 source. Only change is build paths.
author IBBoard <dev@ibboard.co.uk>
date Sat, 30 Oct 2010 14:03:17 +0000
parents
children 686f96c8b694
comparison
equal deleted inserted replaced
0:d16ef17fa7bb 1:94e25b786321
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" xmlns:Conversion="urn:Conversion">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <SchemaVersion>2.0</SchemaVersion>
7 <ProjectGuid>{0E7413FF-EB9E-4714-ACF2-BE3A6A7B2FFD}</ProjectGuid>
8 <RootNamespace>ICSharpCode.SharpZipLib</RootNamespace>
9 <AssemblyName>ICSharpCode.SharpZipLib</AssemblyName>
10 <OutputType>Library</OutputType>
11 <WarningLevel>4</WarningLevel>
12 <NoStdLib>False</NoStdLib>
13 <NoConfig>False</NoConfig>
14 <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
15 <PreBuildEvent />
16 <PostBuildEvent />
17 <DocumentationFile>bin\ICSharpCode.SharpZipLib.xml</DocumentationFile>
18 <ProductVersion>8.0.50727</ProductVersion>
19 </PropertyGroup>
20 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
21 <Optimize>true</Optimize>
22 <OutputPath>bin\Release\</OutputPath>
23 <DebugType>none</DebugType>
24 <WarningLevel>4</WarningLevel>
25 </PropertyGroup>
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
27 <DebugSymbols>true</DebugSymbols>
28 <Optimize>false</Optimize>
29 <OutputPath>bin\Debug\</OutputPath>
30 <DebugType>full</DebugType>
31 <WarningLevel>4</WarningLevel>
32 </PropertyGroup>
33 <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
34 <RegisterForComInterop>False</RegisterForComInterop>
35 <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
36 <BaseAddress>4194304</BaseAddress>
37 <PlatformTarget>AnyCPU</PlatformTarget>
38 <FileAlignment>4096</FileAlignment>
39 </PropertyGroup>
40 <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
41 <DefineConstants>NET_2_0</DefineConstants>
42 </PropertyGroup>
43 <ItemGroup>
44 <Reference Include="System" />
45 </ItemGroup>
46 <ItemGroup>
47 <Compile Include="Core\WindowsPathUtils.cs" />
48 <Compile Include="Encryption\ZipAESStream.cs" />
49 <Compile Include="Encryption\ZipAESTransform.cs" />
50 <Compile Include="Main.cs" />
51 <Compile Include="AssemblyInfo.cs" />
52 <Compile Include="Checksums\IChecksum.cs" />
53 <Compile Include="Checksums\Adler32.cs" />
54 <Compile Include="Zip\WindowsNameTransform.cs" />
55 <Compile Include="Zip\ZipEntry.cs" />
56 <Compile Include="Zip\ZipInputStream.cs" />
57 <Compile Include="Zip\ZipOutputStream.cs" />
58 <Compile Include="Zip\ZipConstants.cs" />
59 <Compile Include="Zip\ZipFile.cs" />
60 <Compile Include="GZip\GzipOutputStream.cs" />
61 <Compile Include="GZip\GzipInputStream.cs" />
62 <Compile Include="Zip\ZipException.cs" />
63 <Compile Include="BZip2\BZip2InputStream.cs" />
64 <Compile Include="BZip2\BZip2OutputStream.cs" />
65 <Compile Include="BZip2\BZip2Constants.cs" />
66 <Compile Include="BZip2\BZip2.cs" />
67 <Compile Include="Tar\TarEntry.cs" />
68 <Compile Include="Tar\TarHeader.cs" />
69 <Compile Include="Tar\TarBuffer.cs" />
70 <Compile Include="Tar\TarOutputStream.cs" />
71 <Compile Include="Tar\InvalidHeaderException.cs" />
72 <Compile Include="Tar\TarInputStream.cs" />
73 <Compile Include="Tar\TarArchive.cs" />
74 <Compile Include="Zip\Compression\PendingBuffer.cs" />
75 <Compile Include="Zip\Compression\InflaterDynHeader.cs" />
76 <Compile Include="Zip\Compression\InflaterHuffmanTree.cs" />
77 <Compile Include="Zip\Compression\DeflaterPending.cs" />
78 <Compile Include="Zip\Compression\DeflaterHuffman.cs" />
79 <Compile Include="Zip\Compression\DeflaterEngine.cs" />
80 <Compile Include="Zip\Compression\Inflater.cs" />
81 <Compile Include="Zip\Compression\DeflaterConstants.cs" />
82 <Compile Include="Zip\Compression\Deflater.cs" />
83 <Compile Include="Zip\Compression\Streams\DeflaterOutputStream.cs" />
84 <Compile Include="Zip\Compression\Streams\InflaterInputStream.cs" />
85 <Compile Include="Zip\Compression\Streams\StreamManipulator.cs" />
86 <Compile Include="Zip\Compression\Streams\OutputWindow.cs" />
87 <Compile Include="SharpZipBaseException.cs" />
88 <Compile Include="Tar\TarException.cs" />
89 <Compile Include="GZip\GZipException.cs" />
90 <Compile Include="BZip2\BZip2Exception.cs" />
91 <Compile Include="Core\NameFilter.cs" />
92 <Compile Include="Zip\FastZip.cs" />
93 <Compile Include="Core\FileSystemScanner.cs" />
94 <Compile Include="Core\PathFilter.cs" />
95 <Compile Include="Core\INameTransform.cs" />
96 <Compile Include="Zip\ZipNameTransform.cs" />
97 <Compile Include="Encryption\PkzipClassic.cs" />
98 <Compile Include="Core\IScanFilter.cs" />
99 <Compile Include="Zip\ZipHelperStream.cs" />
100 <Compile Include="Zip\ZipExtraData.cs" />
101 <Compile Include="Core\StreamUtils.cs" />
102 <Compile Include="Zip\ZipEntryFactory.cs" />
103 <Compile Include="Zip\IEntryFactory.cs" />
104 <Compile Include="Checksums\CRC32.cs" />
105 <Compile Include="GZip\GZIPConstants.cs" />
106 <Compile Include="Checksums\StrangeCRC.cs" />
107 </ItemGroup>
108 <ItemGroup />
109 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
110 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
111 </Project>