jetbrains: bump dotnet version to 10

Fixes issues when the IDE expect .net 10 assemblies in it's toolsets:
```System.IO.FileNotFoundException: Could not load file or assembly 'System.Collections.Immutable, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.```
This commit is contained in:
Kuurama
2025-12-23 02:43:19 +01:00
parent c6245e83d8
commit ad4649cfed
@@ -46,7 +46,7 @@ let
products = versions.${system} or (throw "Unsupported system: ${system}");
dotnet-sdk = dotnetCorePackages.sdk_9_0-source;
dotnet-sdk = dotnetCorePackages.sdk_10_0-source;
package = if stdenv.hostPlatform.isDarwin then ./bin/darwin.nix else ./bin/linux.nix;
mkJetBrainsProductCore = callPackage package { inherit vmopts; };