From 71ec1f3e35b56f900e5604d021c0500e58196e91 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 21 Feb 2024 10:05:09 -0800 Subject: [PATCH] Update SupportedVersion.json to include .NET 8 --- ClientConfiguration/SupportedVersion.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/ClientConfiguration/SupportedVersion.json b/ClientConfiguration/SupportedVersion.json index 905cae1..dfe53f9 100644 --- a/ClientConfiguration/SupportedVersion.json +++ b/ClientConfiguration/SupportedVersion.json @@ -1,29 +1,35 @@ { "FormatVersion": "1.0", "Versions": [ + { + "DisplayName": ".NET 8 (Microsoft LTS)", + "TargetFrameworkMoniker": "net8.0", + "RequiredVisualStudioVersion": "17.7.0", + "RecommendOrder": "1" + }, { "DisplayName": ".NET 7 (Standard Term Support)", "TargetFrameworkMoniker": "net7.0", "RequiredVisualStudioVersion": "17.4.0", - "RecommendOrder": "1" + "RecommendOrder": "2" }, { "DisplayName": ".NET 6 (Microsoft LTS)", "TargetFrameworkMoniker": "net6.0", "RequiredVisualStudioVersion": "17.0.0", - "RecommendOrder": "2" + "RecommendOrder": "3" }, { "DisplayName": ".NET Core 3.1 (Microsoft LTS)", "TargetFrameworkMoniker": "netcoreapp3.1", "RequiredVisualStudioVersion": "16.0.0", - "RecommendOrder": "3" + "RecommendOrder": "4" }, { "DisplayName": ".NET 5 (Microsoft out of support)", "TargetFrameworkMoniker": "net5.0", "RequiredVisualStudioVersion": "16.0.0", - "RecommendOrder": "4" + "RecommendOrder": "5" } ] }