Skip to content

Commit

Permalink
Update roslyn to 4.13.0-3.24577.4 (#7833)
Browse files Browse the repository at this point in the history
  • Loading branch information
dibarbet authored Nov 27, 2024
2 parents 9d1e0ec + 782294a commit 2d60061
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)

# 2.59.x
* Update Roslyn to 4.13.0-3.24577.4 (PR: [#7833](https://github.com/dotnet/vscode-csharp/pull/7833))
* Fix issue where suppressors could not correctly suppress built in analyzers (PR: [#75684](https://github.com/dotnet/roslyn/pull/75684))
* Implement find all references to preprocessing symbols (PR: [#66425](https://github.com/dotnet/roslyn/pull/66425))
* Postpone respecting the code-style analysis config rule until NET10 (PR: [#75978](https://github.com/dotnet/roslyn/pull/75978))
* Delete `dotnet.dotnetPath` setting and support automatic migration to replacements (PR: [#7825](https://github.com/dotnet/vscode-csharp/pull/7825))
* Existing `dotnet.dotnetPath` values will be migrated to the .NET Install Tool extension's `dotnetAcquisitionExtension.existingDotnetPath` setting. See [this page](https://github.com/dotnet/vscode-dotnet-runtime/blob/main/vscode-dotnet-runtime-extension/README.md#i-already-have-a-net-runtime-or-sdk-installed-and-i-want-to-use-it) for more details on configuring the .NET Install Tool.
* The OmniSharp version of `dotnet.dotnetPath` has been migrated to `omnisharp.dotnetPath`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
}
},
"defaults": {
"roslyn": "4.13.0-2.24569.1",
"roslyn": "4.13.0-3.24577.4",
"omniSharp": "1.39.11",
"razor": "9.0.0-preview.24569.4",
"razorOmnisharp": "7.0.0-preview.23363.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ describe(`Code Actions Tests`, () => {
'internal class CodeActions',
'{',
' private static void Do() { Method(); }',
'',
' private static void Method()',
' {',
' var x = 1;',
Expand Down Expand Up @@ -149,7 +148,6 @@ describe(`Code Actions Tests`, () => {
'internal class CodeActions',
'{',
' private static void Do() { Method(); }',
'',
' private static void Method()',
' {',
' var x = 1;',
Expand Down Expand Up @@ -190,7 +188,6 @@ describe(`Code Actions Tests`, () => {
'internal class CodeActions',
'{',
' private static void Do() { Method(); }',
'',
' private static void Method()',
' {',
' var x = 1;',
Expand Down

0 comments on commit 2d60061

Please sign in to comment.