chksum/src/Chksum/Chksum.csproj

24 lines
687 B
XML
Raw Normal View History

2023-05-16 00:43:47 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Chksum.Tests\Chksum.Tests.csproj" />
<EmbeddedResource Include="Libraries/libe_sqlite3.so" />
</ItemGroup>
2023-05-16 00:43:47 +02:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
2023-05-16 19:50:35 +02:00
<PublishTrimmed>true</PublishTrimmed>
2023-05-16 00:43:47 +02:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-06-23 22:38:32 +02:00
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.8" />
</ItemGroup>
2023-05-16 00:43:47 +02:00
</Project>