Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Mira
85536a6874
fix: Update to net10 2026-05-13 15:50:01 +02:00
Mira
cc41bea576
fix: Allow net8 builds 2025-05-07 00:45:08 +02:00

View file

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Configurations>Debug;Release;x64</Configurations>
@ -38,7 +38,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.8" />
</ItemGroup>
</Project>