Skip to content

Commit 576d383

Browse files
authored
Merge pull request #6816 from dibarbet/update_roslyn
Update Roslyn version
2 parents d07dd86 + c47d073 commit 576d383

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## Known Issues
22

3-
- In version 2.15.30 only, .NET 6.0 projects fail to load if only the 6.0 SDK is installed [#6801](https://github.com/dotnet/vscode-csharp/issues/6801)
4-
- If you are trying to load a project that uses the 6.0 SDK, and you do not have any higher SDKs installed, you might get an error message like "Exception thrown while loading (project name) System.Exception: The server disconnected unexpectedly." In that case, try installing a 7.0 SDK as well, which should mitigate the issue. Other workarounds are available in the bug link if needed.
53
- Diagnostics related feature requests and improvements [#5951](https://github.com/dotnet/vscode-csharp/issues/5951)
6-
- [O# Parity] Nested code code action support for code fixes and refactorings [#5735](https://github.com/dotnet/vscode-csharp/issues/5735)
7-
- [O# Parity] Nuget restore [#5725](https://github.com/dotnet/vscode-csharp/issues/5725)
84
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)
95

6+
## Latest
7+
* Update Roslyn to 4.10.0-1.24066.17 (PR: [#6816](https://github.com/dotnet/vscode-csharp/pull/6816))
8+
* Fix issue loading .NET 6.0 projects when only the 6.0 SDK is installed (PR: [#71597](https://github.com/dotnet/roslyn/pull/71597))
9+
1010
## 2.15.30
1111
* Update Roslyn to 4.10.0-1.24058.1 (PR: [#6791](https://github.com/dotnet/vscode-csharp/pull/6791))
1212
* Fix error when a source generated file was present in find references or go to definition requests (PR: [#71395](https://github.com/dotnet/roslyn/pull/71395))

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.10.0-1.24058.1",
40+
"roslyn": "4.10.0-1.24066.17",
4141
"omniSharp": "1.39.11",
4242
"razor": "7.0.0-preview.23627.2",
4343
"razorOmnisharp": "7.0.0-preview.23363.1",

test/artifactTests/vsix.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('Vscode VSIX', () => {
1818
vsixFiles.forEach((element) => {
1919
// We're packaging the platform specific Roslyn server with ready to run in the vsix, so the size should be roughly ~50MB
2020
// We also publish the Razor server, which is roughly ~75MB
21-
const sizeInMB = 230;
21+
const sizeInMB = 240;
2222
const maximumVsixSizeInBytes = sizeInMB * 1024 * 1024;
2323

2424
describe(`Given ${element}`, () => {

0 commit comments

Comments
 (0)