2024-01-15 23:03:45 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2025-01-16 20:13:59 +01:00
|
|
|
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
|
|
|
|
<LangVersion>latestmajor</LangVersion>
|
2024-01-15 23:03:45 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\CS2GSI\CS2GSI.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|