/Utilities/Compression/Delta.Utilities.Compression.csproj
MSBuild | 122 lines | 115 code | 0 blank | 7 comment | 0 complexity | 71397c315be5fba9fcf88a3af854d699 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup> 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform> 6 <ProductVersion>9.0.30729</ProductVersion> 7 <SchemaVersion>2.0</SchemaVersion> 8 <ProjectGuid>{87EAE002-5871-45AC-B7ED-1E84421F935F}</ProjectGuid> 9 <OutputType>Library</OutputType> 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 <RootNamespace>Delta.Utilities.Compression</RootNamespace> 12 <AssemblyName>Delta.Utilities.Compression</AssemblyName> 13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 14 <FileAlignment>512</FileAlignment> 15 <FileUpgradeFlags> 16 </FileUpgradeFlags> 17 <UpgradeBackupLocation> 18 </UpgradeBackupLocation> 19 <OldToolsVersion>3.5</OldToolsVersion> 20 <PublishUrl>publish\</PublishUrl> 21 <Install>true</Install> 22 <InstallFrom>Disk</InstallFrom> 23 <UpdateEnabled>false</UpdateEnabled> 24 <UpdateMode>Foreground</UpdateMode> 25 <UpdateInterval>7</UpdateInterval> 26 <UpdateIntervalUnits>Days</UpdateIntervalUnits> 27 <UpdatePeriodically>false</UpdatePeriodically> 28 <UpdateRequired>false</UpdateRequired> 29 <MapFileExtensions>true</MapFileExtensions> 30 <ApplicationRevision>0</ApplicationRevision> 31 <ApplicationVersion>1.0.0.%2a</ApplicationVersion> 32 <IsWebBootstrapper>false</IsWebBootstrapper> 33 <UseApplicationTrust>false</UseApplicationTrust> 34 <BootstrapperEnabled>true</BootstrapperEnabled> 35 <TargetFrameworkProfile>Client</TargetFrameworkProfile> 36 </PropertyGroup> 37 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 38 <DebugSymbols>true</DebugSymbols> 39 <DebugType>full</DebugType> 40 <Optimize>false</Optimize> 41 <OutputPath>bin\Debug\</OutputPath> 42 <DefineConstants>DEBUG;TRACE</DefineConstants> 43 <ErrorReport>prompt</ErrorReport> 44 <WarningLevel>4</WarningLevel> 45 <PlatformTarget>x86</PlatformTarget> 46 </PropertyGroup> 47 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 48 <DebugType>pdbonly</DebugType> 49 <Optimize>true</Optimize> 50 <OutputPath>bin\Release\</OutputPath> 51 <DefineConstants>TRACE</DefineConstants> 52 <ErrorReport>prompt</ErrorReport> 53 <WarningLevel>4</WarningLevel> 54 </PropertyGroup> 55 <ItemGroup> 56 <Reference Include="System" /> 57 </ItemGroup> 58 <ItemGroup> 59 <Compile Include="Checksums\Adler32.cs" /> 60 <Compile Include="Checksums\Crc32.cs" /> 61 <Compile Include="CompressionException.cs" /> 62 <Compile Include="Properties\AssemblyInfo.cs" /> 63 <Compile Include="CompressionMethod.cs" /> 64 <Compile Include="Deflaters\Deflater.cs" /> 65 <Compile Include="Deflaters\DeflaterConstants.cs" /> 66 <Compile Include="Deflaters\DeflaterEngine.cs" /> 67 <Compile Include="Deflaters\DeflaterHuffman.cs" /> 68 <Compile Include="Deflaters\DeflaterPending.cs" /> 69 <Compile Include="Deflaters\DeflateStrategy.cs" /> 70 <Compile Include="GeneralBitFlags.cs" /> 71 <Compile Include="Inflaters\Inflater.cs" /> 72 <Compile Include="Inflaters\InflaterDynHeader.cs" /> 73 <Compile Include="Inflaters\InflaterHuffmanTree.cs" /> 74 <Compile Include="KeyRequiredEventArgs.cs" /> 75 <Compile Include="PendingBuffer.cs" /> 76 <Compile Include="Streams\DeflaterOutputStream.cs" /> 77 <Compile Include="Streams\InflaterInputBuffer.cs" /> 78 <Compile Include="Streams\InflaterInputStream.cs" /> 79 <Compile Include="Streams\OutputWindow.cs" /> 80 <Compile Include="Streams\StreamManipulator.cs" /> 81 <Compile Include="Zip.cs" /> 82 <Compile Include="ZipConstants.cs" /> 83 <Compile Include="ZipEncryption.cs" /> 84 <Compile Include="ZipEntry.cs" /> 85 <Compile Include="ZipException.cs" /> 86 <Compile Include="ZipFile.cs" /> 87 <Compile Include="Streams\ZipInputStream.cs" /> 88 <Compile Include="Streams\ZipOutputStream.cs" /> 89 </ItemGroup> 90 <ItemGroup> 91 <BootstrapperPackage Include="Microsoft.Net.Client.3.5"> 92 <Visible>False</Visible> 93 <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName> 94 <Install>false</Install> 95 </BootstrapperPackage> 96 <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> 97 <Visible>False</Visible> 98 <ProductName>.NET Framework 3.5 SP1</ProductName> 99 <Install>true</Install> 100 </BootstrapperPackage> 101 <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1"> 102 <Visible>False</Visible> 103 <ProductName>Windows Installer 3.1</ProductName> 104 <Install>true</Install> 105 </BootstrapperPackage> 106 </ItemGroup> 107 <ItemGroup> 108 <ProjectReference Include="..\Delta.Utilities.csproj"> 109 <Project>{D8C2961F-ABC0-424A-8603-0671C427B185}</Project> 110 <Name>Delta.Utilities</Name> 111 </ProjectReference> 112 </ItemGroup> 113 <ItemGroup /> 114 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 115 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 116 Other similar extension points exist, see Microsoft.Common.targets. 117 <Target Name="BeforeBuild"> 118 </Target> 119 <Target Name="AfterBuild"> 120 </Target> 121 --> 122</Project>