Files
duplicati/Duplicati/Library/Compression/Duplicati.Library.Compression.csproj
T

91 lines
4.0 KiB
XML
Raw Normal View History

2012-08-01 19:50:40 +00:00
<?xml version="1.0" encoding="utf-8"?>
2019-07-31 13:20:03 -04:00
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0">
2009-01-14 17:29:30 +00:00
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{19ECCE09-B5EB-406C-8C57-BAC66997D469}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Duplicati.Library.Compression</RootNamespace>
<AssemblyName>Duplicati.Library.Compression</AssemblyName>
2009-01-15 19:42:14 +00:00
<AssemblyOriginatorKeyFile>Duplicati.snk</AssemblyOriginatorKeyFile>
2009-07-05 11:41:02 +00:00
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
2020-07-26 18:12:54 -07:00
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
2015-01-26 11:13:54 +01:00
<TargetFrameworkProfile />
2009-07-05 11:41:02 +00:00
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<UseMSBuildEngine>false</UseMSBuildEngine>
2009-01-14 17:29:30 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
2009-01-14 17:29:30 +00:00
<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>
2019-08-31 16:42:12 -04:00
<Reference Include="SharpCompress, Version=0.24.0.0, Culture=neutral, PublicKeyToken=afb0a02973931d96, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\SharpCompress.0.24.0\lib\net45\SharpCompress.dll</HintPath>
2019-07-26 09:18:16 -04:00
</Reference>
2009-01-14 17:29:30 +00:00
<Reference Include="System" />
2017-02-27 22:21:01 +01:00
<Reference Include="System.Core" />
<Reference Include="managed-lzma">
<HintPath>..\..\..\thirdparty\ManagedLZMA\managed-lzma.dll</HintPath>
</Reference>
2009-01-14 17:29:30 +00:00
</ItemGroup>
<ItemGroup>
2010-06-19 21:08:21 +00:00
<Compile Include="FileArchiveDirectory.cs" />
<Compile Include="FileArchiveZip.cs" />
2009-01-14 17:29:30 +00:00
<Compile Include="Properties\AssemblyInfo.cs" />
2012-08-01 19:50:40 +00:00
<Compile Include="StreamWrapper.cs" />
<Compile Include="SevenZipCompression.cs" />
<Compile Include="Strings.cs" />
2009-01-14 17:29:30 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Utility\Duplicati.Library.Utility.csproj">
2009-01-14 17:29:30 +00:00
<Project>{DE3E5D4C-51AB-4E5E-BEE8-E636CEBFBA65}</Project>
<Name>Duplicati.Library.Utility</Name>
2009-01-14 17:29:30 +00:00
</ProjectReference>
2010-06-19 21:08:21 +00:00
<ProjectReference Include="..\Interface\Duplicati.Library.Interface.csproj">
<Project>{C5899F45-B0FF-483C-9D38-24A9FCAAB237}</Project>
<Name>Duplicati.Library.Interface</Name>
</ProjectReference>
2009-01-14 17:29:30 +00:00
<ProjectReference Include="..\Logging\Duplicati.Library.Logging.csproj">
<Project>{D10A5FC0-11B4-4E70-86AA-8AEA52BD9798}</Project>
<Name>Duplicati.Library.Logging</Name>
</ProjectReference>
<ProjectReference Include="..\Localization\Duplicati.Library.Localization.csproj">
<Project>{B68F2214-951F-4F78-8488-66E1ED3F50BF}</Project>
<Name>Duplicati.Library.Localization</Name>
</ProjectReference>
2018-11-02 22:45:07 +01:00
<ProjectReference Include="..\Common\Duplicati.Library.Common.csproj">
<Project>{D63E53E4-A458-4C2F-914D-92F715F58ACF}</Project>
2018-11-02 21:34:07 +01:00
<Name>Duplicati.Library.Common</Name>
</ProjectReference>
2009-01-14 17:29:30 +00:00
</ItemGroup>
2009-01-15 19:42:14 +00:00
<ItemGroup>
<None Include="app.config" />
2009-01-15 19:42:14 +00:00
<None Include="Duplicati.snk" />
<None Include="packages.config" />
2009-01-15 19:42:14 +00:00
</ItemGroup>
2009-01-14 17:29:30 +00:00
<Import Project="$(MSBuildBinPath)\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>