2024-07-09 00:37:18 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<PropertyGroup>
|
2024-03-01 14:29:54 +01:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-04-12 21:43:50 -07:00
|
|
|
<Description>A backend debugging tool for Duplicati</Description>
|
|
|
|
|
<AssemblyName>Duplicati.CommandLine.BackendTester.Implementation</AssemblyName>
|
2024-07-09 00:37:18 +02:00
|
|
|
<Copyright>Copyright © 2024 Team Duplicati, MIT license</Copyright>
|
2024-02-25 16:19:25 +01:00
|
|
|
</PropertyGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<ItemGroup>
|
2024-04-26 14:32:41 +02:00
|
|
|
<ProjectReference Include="..\..\Library\Utility\Duplicati.Library.Utility.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\DynamicLoader\Duplicati.Library.DynamicLoader.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\AutoUpdater\Duplicati.Library.AutoUpdater.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\License\Duplicati.License.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Modules\Builtin\Duplicati.Library.Modules.Builtin.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Backend\OAuthHelper\Duplicati.Library.OAuthHelper.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Localization\Duplicati.Library.Localization.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Logging\Duplicati.Library.Logging.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Common\Duplicati.Library.Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\SQLiteHelper\Duplicati.Library.SQLiteHelper.csproj" />
|
2024-02-25 16:19:25 +01:00
|
|
|
</ItemGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.2.12-alpha">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|
2024-07-09 00:37:18 +02:00
|
|
|
|