Update to .NET 10

This commit is contained in:
Sven van Heugten 2026-01-23 20:07:03 +01:00
parent 59a1b1e41d
commit 90fe37eacc
5 changed files with 9 additions and 9 deletions

View file

@ -1,7 +1,7 @@
{
buildDotnetModule,
dotnet-sdk_9,
dotnet-runtime_9,
dotnet-sdk_10,
dotnet-runtime_10,
}:
buildDotnetModule rec {
@ -13,8 +13,8 @@ buildDotnetModule rec {
projectFile = "NightLight/NightLight.fsproj";
nugetDeps = ./deps.json;
dotnet-sdk = dotnet-sdk_9;
dotnet-runtime = dotnet-runtime_9;
dotnet-sdk = dotnet-sdk_10;
dotnet-runtime = dotnet-runtime_10;
executables = [ "NightLight" ];
}