2024-07-09 00:37:18 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-04-12 21:43:50 -07:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-03-04 12:21:53 +01:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-04-12 21:43:50 -07:00
|
|
|
<Description>A commandline version of Duplicati</Description>
|
|
|
|
|
<AssemblyName>Duplicati.CommandLine.Implementation</AssemblyName>
|
|
|
|
|
<ApplicationIcon>TrayWarning.ico</ApplicationIcon>
|
2025-01-22 21:04:19 +01:00
|
|
|
<Copyright>Copyright © 2025 Team Duplicati, MIT license</Copyright>
|
2022-04-12 21:43:50 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-11-18 21:55:46 -08:00
|
|
|
<ItemGroup>
|
2024-04-26 14:32:41 +02:00
|
|
|
<ProjectReference Include="..\..\Library\Utility\Duplicati.Library.Utility.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Common\Duplicati.Library.Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\DynamicLoader\Duplicati.Library.DynamicLoader.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Logging\Duplicati.Library.Logging.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Main\Duplicati.Library.Main.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\License\Duplicati.License.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BackendTool\Duplicati.CommandLine.BackendTool.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BackendTester\Duplicati.CommandLine.BackendTester.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\AutoUpdater\Duplicati.Library.AutoUpdater.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\Localization\Duplicati.Library.Localization.csproj" />
|
|
|
|
|
<ProjectReference Include="..\RecoveryTool\Duplicati.CommandLine.RecoveryTool.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Library\UsageReporter\Duplicati.Library.UsageReporter.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Tools\Duplicati.Tools.csproj" />
|
2024-11-29 08:42:43 +01:00
|
|
|
<ProjectReference Include="..\..\Library\Crashlog\Duplicati.Library.Crashlog.csproj" />
|
2022-04-12 21:43:50 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="help.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
2024-07-09 00:37:18 +02:00
|
|
|
</Project>
|