From aea04d37e0e017e0d33f472fc5dcb4eeb997608d Mon Sep 17 00:00:00 2001 From: David Wengier Date: Mon, 25 May 2026 10:17:37 +1000 Subject: [PATCH 1/3] Update Roslyn to 5.8.0-1.26273.3 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- CHANGELOG.md | 13 +++++++++++++ package.json | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80dcc0562..f88aae9ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ - Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876) # 2.143.x +* Update Roslyn to 5.8.0-1.26273.3 (PR: [#](https://github.com/dotnet/vscode-csharp/pull/)) + * Suppress Razor completion when @ is typed in Emmet numbering context (PR: [#83837](https://github.com/dotnet/roslyn/pull/83837)) + * Convert to local function: ensure unique names for multiple discard parameters (PR: [#83644](https://github.com/dotnet/roslyn/pull/83644)) + * remove duplicate lsp registration breaking cca (PR: [#83830](https://github.com/dotnet/roslyn/pull/83830)) + * Modify VSCode HTML completion to use the VSCode HTML language server again (PR: [#83783](https://github.com/dotnet/roslyn/pull/83783)) + * Fix formatting capability checks (PR: [#83781](https://github.com/dotnet/roslyn/pull/83781)) + * Make remaining Razor imports lazy (PR: [#83770](https://github.com/dotnet/roslyn/pull/83770)) + * Reset Hot Reload _disabled flag when a new debug session starts (PR: [#83747](https://github.com/dotnet/roslyn/pull/83747)) + * Use non-recursive file watches when watching individual files (PR: [#83725](https://github.com/dotnet/roslyn/pull/83725)) + * Support smart break line for `fixed` statement (PR: [#83543](https://github.com/dotnet/roslyn/pull/83543)) + * Add in-process HTML completion provider for Razor (PR: [#83740](https://github.com/dotnet/roslyn/pull/83740)) + * Move Razor code actions out of Razor Workspaces layer (PR: [#83621](https://github.com/dotnet/roslyn/pull/83621)) + * Update Roslyn to 5.8.0-1.26267.2 (PR: [#9321](https://github.com/dotnet/vscode-csharp/pull/9321)) * Fix racecondition on UnsuedDirectiveCache.Set (PR: [#83693](https://github.com/dotnet/roslyn/pull/83693)) * Fix single line script tag formatting (PR: [#83721](https://github.com/dotnet/roslyn/pull/83721)) diff --git a/package.json b/package.json index e9dac41fc..78a59550d 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "workspace" ], "defaults": { - "roslyn": "5.8.0-1.26267.2", + "roslyn": "5.8.0-1.26273.3", "omniSharp": "1.39.14", "razorOmnisharp": "7.0.0-preview.23363.1", "xamlTools": "18.7.11727.258" @@ -5763,4 +5763,4 @@ } } } -} \ No newline at end of file +} From 71b86f993408fa342b5d21a07924f60dd358c665 Mon Sep 17 00:00:00 2001 From: David Wengier Date: Mon, 25 May 2026 10:18:18 +1000 Subject: [PATCH 2/3] Update changelog with PR number Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f88aae9ef..2bd07142d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ - Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876) # 2.143.x -* Update Roslyn to 5.8.0-1.26273.3 (PR: [#](https://github.com/dotnet/vscode-csharp/pull/)) +* Update Roslyn to 5.8.0-1.26273.3 (PR: [#9348](https://github.com/dotnet/vscode-csharp/pull/9348)) * Suppress Razor completion when @ is typed in Emmet numbering context (PR: [#83837](https://github.com/dotnet/roslyn/pull/83837)) * Convert to local function: ensure unique names for multiple discard parameters (PR: [#83644](https://github.com/dotnet/roslyn/pull/83644)) * remove duplicate lsp registration breaking cca (PR: [#83830](https://github.com/dotnet/roslyn/pull/83830)) From f3075105ca89086ee576f068eb472eb8ff541041 Mon Sep 17 00:00:00 2001 From: David Wengier Date: Mon, 25 May 2026 10:23:34 +1000 Subject: [PATCH 3/3] Apply suggestion from @davidwengier --- CHANGELOG.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bd07142d..31302806f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,6 @@ * Update Roslyn to 5.8.0-1.26273.3 (PR: [#9348](https://github.com/dotnet/vscode-csharp/pull/9348)) * Suppress Razor completion when @ is typed in Emmet numbering context (PR: [#83837](https://github.com/dotnet/roslyn/pull/83837)) * Convert to local function: ensure unique names for multiple discard parameters (PR: [#83644](https://github.com/dotnet/roslyn/pull/83644)) - * remove duplicate lsp registration breaking cca (PR: [#83830](https://github.com/dotnet/roslyn/pull/83830)) - * Modify VSCode HTML completion to use the VSCode HTML language server again (PR: [#83783](https://github.com/dotnet/roslyn/pull/83783)) - * Fix formatting capability checks (PR: [#83781](https://github.com/dotnet/roslyn/pull/83781)) - * Make remaining Razor imports lazy (PR: [#83770](https://github.com/dotnet/roslyn/pull/83770)) - * Reset Hot Reload _disabled flag when a new debug session starts (PR: [#83747](https://github.com/dotnet/roslyn/pull/83747)) - * Use non-recursive file watches when watching individual files (PR: [#83725](https://github.com/dotnet/roslyn/pull/83725)) - * Support smart break line for `fixed` statement (PR: [#83543](https://github.com/dotnet/roslyn/pull/83543)) - * Add in-process HTML completion provider for Razor (PR: [#83740](https://github.com/dotnet/roslyn/pull/83740)) - * Move Razor code actions out of Razor Workspaces layer (PR: [#83621](https://github.com/dotnet/roslyn/pull/83621)) * Update Roslyn to 5.8.0-1.26267.2 (PR: [#9321](https://github.com/dotnet/vscode-csharp/pull/9321)) * Fix racecondition on UnsuedDirectiveCache.Set (PR: [#83693](https://github.com/dotnet/roslyn/pull/83693))