Skip to content

Commit e3d1d11

Browse files
authored
Update Roslyn version to 5.0.0-1.25204.1 (#8138)
2 parents 6aa8d69 + 2a913cc commit e3d1d11

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

CHANGELOG.md

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

66
# 2.73.x
7+
* Bump Roslyn to 5.0.0-1.25204.1 (PR: [#8138](https://github.com/dotnet/vscode-csharp/pull/8138))
8+
* [View Complete Diff of Changes](https://github.com/dotnet/roslyn/compare/1a06295e3cd3e57be2c79953f16db724db119a4f...ad1c386da419e0d6fe9f25a1f41e5cc2368964e7?w=1)
9+
* Don't show duplicate toast if C# Dev Kit fails to activate (PR: [#8135](https://github.com/dotnet/vscode-csharp/pull/8135))
710
* Bump xamlTools to 17.14.36004.3 (PR: [#8134](https://github.com/dotnet/vscode-csharp/pull/8134))
11+
* Acquire aspnetcore runtime when using Dev Kit to avoid double acquisition (PR: [#8132](https://github.com/dotnet/vscode-csharp/pull/8132))
812

913
# 2.72.x
1014
* Revert xamlTools to 17.14.35913.250 (PR: [#8121](https://github.com/dotnet/vscode-csharp/pull/8121))

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.14.0-3.25178.1",
40+
"roslyn": "5.0.0-1.25204.1",
4141
"omniSharp": "1.39.12",
4242
"razor": "9.0.0-preview.25177.4",
4343
"razorOmnisharp": "7.0.0-preview.23363.1",

test/lsptoolshost/integrationTests/formatting.integration.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ describe(`Formatting Tests`, () => {
3939
'using Options;',
4040
'using System;',
4141
'namespace Formatting;',
42+
'',
4243
'class DocumentFormatting',
4344
'{',
4445
' public int Property1',
@@ -108,6 +109,7 @@ describe(`Formatting Tests`, () => {
108109
'using System;',
109110
'using Options;',
110111
'namespace Formatting;',
112+
'',
111113
'class DocumentFormatting',
112114
'{',
113115
' public int Property1',
@@ -134,6 +136,7 @@ describe(`Formatting Tests`, () => {
134136
'using Options;',
135137
'using System;',
136138
'namespace Formatting;',
139+
'',
137140
'class DocumentFormatting',
138141
'{',
139142
' public int Property1',

test/lsptoolshost/integrationTests/formattingEditorConfig.integration.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ describe(`Formatting With EditorConfig Tests`, () => {
3939

4040
const expectedText = [
4141
'namespace Formatting;',
42+
'',
4243
'class DocumentFormattingWithEditorConfig {',
4344
' public int Property1 {',
4445
' get; set;',

0 commit comments

Comments
 (0)