From c6affd38faa1a44359eaf69bef639e1082bbe09c Mon Sep 17 00:00:00 2001 From: Miha Zupan Date: Tue, 10 Dec 2024 14:51:12 +0100 Subject: [PATCH] Add .NET 9.0 to runtimes list (#2679) --- global.json | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/global.json b/global.json index 211c684d6..8ab77fdd5 100644 --- a/global.json +++ b/global.json @@ -6,14 +6,16 @@ "dotnet": "9.0.100", "runtimes": { "dotnet": [ - "6.0.29", - "7.0.18", - "8.0.4" + "6.0.36", + "7.0.20", + "8.0.11", + "9.0.0" ], "aspnetcore": [ - "6.0.29", - "7.0.18", - "8.0.4" + "6.0.36", + "7.0.20", + "8.0.11", + "9.0.0" ] } },