fsautocomplete: use dotnet sdk 8.0.2xx

This commit is contained in:
David McFarland
2024-05-15 12:13:35 -03:00
parent 581cf4d435
commit 6ee3c71201
@@ -20,8 +20,8 @@ buildDotnetModule rec {
--replace TargetFrameworks TargetFramework \
'';
dotnet-sdk = with dotnetCorePackages; combinePackages [ sdk_6_0 sdk_7_0 sdk_8_0 ];
dotnet-runtime = dotnetCorePackages.sdk_8_0;
dotnet-sdk = with dotnetCorePackages; combinePackages [ sdk_6_0 sdk_7_0 sdk_8_0_2xx ];
dotnet-runtime = dotnetCorePackages.sdk_8_0_2xx;
projectFile = "src/FsAutoComplete/FsAutoComplete.fsproj";
executables = [ "fsautocomplete" ];