From 39f41abf9eed30281d41a36bdbc1a8aec43afdbf Mon Sep 17 00:00:00 2001 From: Bart Koelman <10324372+bkoelman@users.noreply.github.com> Date: Fri, 24 Oct 2025 11:43:06 +0200 Subject: [PATCH] Reduce required version of Microsoft.CodeAnalysis to enable building on .NET 8 installed via Ubuntu feed --- package-versions.props | 2 +- .../ControllerSourceGenerator.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-versions.props b/package-versions.props index bdca942ce..a4fa94ce0 100644 --- a/package-versions.props +++ b/package-versions.props @@ -1,7 +1,7 @@ - 4.13.0 + 4.8.0 0.4.1 2.14.1 13.0.4 diff --git a/src/JsonApiDotNetCore.SourceGenerators/ControllerSourceGenerator.cs b/src/JsonApiDotNetCore.SourceGenerators/ControllerSourceGenerator.cs index ec8ff77a7..ee14dd104 100644 --- a/src/JsonApiDotNetCore.SourceGenerators/ControllerSourceGenerator.cs +++ b/src/JsonApiDotNetCore.SourceGenerators/ControllerSourceGenerator.cs @@ -5,7 +5,7 @@ using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Text; -// To debug in Visual Studio (requires v17.13 or higher): +// To debug in Visual Studio (requires v17.8 or higher): // - Set JsonApiDotNetCore.SourceGenerators as startup project // - Add a breakpoint at the start of the Initialize method // - Optional: change targetProject in Properties\launchSettings.json