Moved things around to make cleaner build files. Implementing everything with `netstandard2.1` and then thin wrapper executables using .net5
21 lines
613 B
XML
21 lines
613 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Copyright>LGPL, Copyright © Duplicati Team 2021</Copyright>
|
|
<Description>Localization implementation for Duplicati</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NGettext" Version="0.6.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="..\..\..\Localizations\duplicati\*.mo" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Logging\Duplicati.Library.Logging.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |