Skip to content

Commit 2d60061

Browse files
authored
Update roslyn to 4.13.0-3.24577.4 (#7833)
2 parents 9d1e0ec + 782294a commit 2d60061

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)
55

66
# 2.59.x
7+
* Update Roslyn to 4.13.0-3.24577.4 (PR: [#7833](https://github.com/dotnet/vscode-csharp/pull/7833))
8+
* Fix issue where suppressors could not correctly suppress built in analyzers (PR: [#75684](https://github.com/dotnet/roslyn/pull/75684))
9+
* Implement find all references to preprocessing symbols (PR: [#66425](https://github.com/dotnet/roslyn/pull/66425))
10+
* Postpone respecting the code-style analysis config rule until NET10 (PR: [#75978](https://github.com/dotnet/roslyn/pull/75978))
711
* Delete `dotnet.dotnetPath` setting and support automatic migration to replacements (PR: [#7825](https://github.com/dotnet/vscode-csharp/pull/7825))
812
* 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.
913
* The OmniSharp version of `dotnet.dotnetPath` has been migrated to `omnisharp.dotnetPath`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
}
3838
},
3939
"defaults": {
40-
"roslyn": "4.13.0-2.24569.1",
40+
"roslyn": "4.13.0-3.24577.4",
4141
"omniSharp": "1.39.11",
4242
"razor": "9.0.0-preview.24569.4",
4343
"razorOmnisharp": "7.0.0-preview.23363.1",

test/lsptoolshost/integrationTests/codeactions.integration.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ describe(`Code Actions Tests`, () => {
120120
'internal class CodeActions',
121121
'{',
122122
' private static void Do() { Method(); }',
123-
'',
124123
' private static void Method()',
125124
' {',
126125
' var x = 1;',
@@ -149,7 +148,6 @@ describe(`Code Actions Tests`, () => {
149148
'internal class CodeActions',
150149
'{',
151150
' private static void Do() { Method(); }',
152-
'',
153151
' private static void Method()',
154152
' {',
155153
' var x = 1;',
@@ -190,7 +188,6 @@ describe(`Code Actions Tests`, () => {
190188
'internal class CodeActions',
191189
'{',
192190
' private static void Do() { Method(); }',
193-
'',
194191
' private static void Method()',
195192
' {',
196193
' var x = 1;',

0 commit comments

Comments
 (0)