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

81 lines
3.8 KiB
XML
Raw Normal View History

2019-07-30 09:32:33 -04:00
<?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')" />
2009-01-14 17:29:30 +00:00
<PropertyGroup>
2019-07-30 09:32:33 -04:00
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{2CF2D90E-C25B-47AD-91E0-98451BAB8058}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Encryption</RootNamespace>
<AssemblyName>Encryption</AssemblyName>
2020-07-26 18:12:54 -07:00
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
2019-07-30 09:32:33 -04:00
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
2009-01-14 17:29:30 +00:00
</PropertyGroup>
2019-07-30 09:32:33 -04:00
<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="SharpAESCrypt, Version=1.3.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\SharpAESCrypt.exe.1.3.3\lib\netstandard2.0\SharpAESCrypt.exe</HintPath>
2019-07-30 09:32:33 -04:00
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AESEncryption.cs" />
<Compile Include="CryptoStreamWrapper.cs" />
<Compile Include="EncryptionBase.cs" />
<Compile Include="GPGEncryption.cs" />
<Compile Include="GPGStreamWrapper.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Strings.cs" />
</ItemGroup>
2009-01-14 17:29:30 +00:00
<ItemGroup>
2019-09-12 17:38:26 -04:00
<ProjectReference Include="..\Common\Duplicati.Library.Common.csproj">
<Project>{d63e53e4-a458-4c2f-914d-92f715f58acf}</Project>
<Name>Duplicati.Library.Common</Name>
</ProjectReference>
2019-07-30 09:32:33 -04:00
<ProjectReference Include="..\Interface\Duplicati.Library.Interface.csproj">
<Project>{c5899f45-b0ff-483c-9d38-24a9fcaab237}</Project>
<Name>Duplicati.Library.Interface</Name>
</ProjectReference>
<ProjectReference Include="..\Localization\Duplicati.Library.Localization.csproj">
<Project>{b68f2214-951f-4f78-8488-66e1ed3f50bf}</Project>
<Name>Duplicati.Library.Localization</Name>
</ProjectReference>
<ProjectReference Include="..\Logging\Duplicati.Library.Logging.csproj">
<Project>{d10a5fc0-11b4-4e70-86aa-8aea52bd9798}</Project>
<Name>Duplicati.Library.Logging</Name>
</ProjectReference>
<ProjectReference Include="..\Utility\Duplicati.Library.Utility.csproj">
<Project>{de3e5d4c-51ab-4e5e-bee8-e636cebfba65}</Project>
<Name>Duplicati.Library.Utility</Name>
</ProjectReference>
2009-01-14 17:29:30 +00:00
</ItemGroup>
2019-07-31 13:20:03 -04:00
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
2019-07-30 09:32:33 -04:00
</Project>