Skip to content

Commit 6868c3c

Browse files
authored
Merge pull request #7544 from dibarbet/update_roslyn_option
Expose sourcelink option and update Roslyn
2 parents 827e35a + 34478e8 commit 6868c3c

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

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

66
# Latest
7+
* Bump Roslyn to 4.12.0-2.24461.7 (PR: [#7544](https://github.com/dotnet/vscode-csharp/pull/7544))
8+
* Fix crash when closing source link documents (PR: [#75047](https://github.com/dotnet/roslyn/pull/75047))
9+
* Add option to disable source link (PR: [#75047](https://github.com/dotnet/roslyn/pull/75047))
10+
* Fix issue navigating from source link documents (PR: [#75033](https://github.com/dotnet/roslyn/pull/75033))
11+
* Fix exception applying fix all code action (PR: [#7537](https://github.com/dotnet/vscode-csharp/pull/7537))
12+
13+
# 2.45.20
714
* Fix check for rzls being present (PR: [#7462](https://github.com/dotnet/vscode-csharp/pull/7462))
815
* Bump Razor to 9.0.0-preview.24418.1 (PR: [#7456](https://github.com/dotnet/vscode-csharp/pull/7456))
916
* Don't add already known documents to the misc files project (#10753) (PR: [#10753](https://github.com/dotnet/razor/pull/10753))

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
}
3838
},
3939
"defaults": {
40-
"roslyn": "4.12.0-2.24422.6",
40+
"roslyn": "4.12.0-2.24461.7",
4141
"omniSharp": "1.39.11",
4242
"razor": "9.0.0-preview.24418.1",
4343
"razorOmnisharp": "7.0.0-preview.23363.1",
@@ -916,6 +916,12 @@
916916
"description": "%configuration.dotnet.navigation.navigateToDecompiledSources%",
917917
"order": 60
918918
},
919+
"dotnet.navigation.navigateToSourceLinkAndEmbeddedSources": {
920+
"type": "boolean",
921+
"default": "true",
922+
"description": "%configuration.dotnet.navigation.navigateToSourceLinkAndEmbeddedSources%",
923+
"order": 60
924+
},
919925
"dotnet.quickInfo.showRemarksInQuickInfo": {
920926
"type": "boolean",
921927
"default": "true",

package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"configuration.dotnet.inlayHints.suppressInlayHintsForParametersThatMatchArgumentName": "Suppress hints when argument matches parameter name",
7676
"configuration.dotnet.inlayHints.suppressInlayHintsForParametersThatMatchMethodIntent": "Suppress hints when parameter name matches the method's intent",
7777
"configuration.dotnet.navigation.navigateToDecompiledSources": "Enable navigation to decomplied sources.",
78+
"configuration.dotnet.navigation.navigateToSourceLinkAndEmbeddedSources": "Enable navigation to source link and embedded sources.",
7879
"configuration.dotnet.quickInfo.showRemarksInQuickInfo": "Show remarks information when display symbol.",
7980
"configuration.dotnet.symbolSearch.searchReferenceAssemblies": "Search symbols in reference assemblies. It affects features requires symbol searching, such as add imports.",
8081
"configuration.dotnet.unitTestDebuggingOptions": "Options to use with the debugger when launching for unit test debugging. (Previously `csharp.unitTestDebuggingOptions`)",

0 commit comments

Comments
 (0)