From ad4649cfed21dc4539656ce76cc32f46c2f4e31a Mon Sep 17 00:00:00 2001 From: Kuurama <74458092+Kuurama@users.noreply.github.com> Date: Mon, 22 Dec 2025 00:33:44 +0100 Subject: [PATCH] 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.``` --- pkgs/applications/editors/jetbrains/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index a1230f66d418..2994e787f57c 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -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; };