Skip to content

Commit

Permalink
Merge pull request #7544 from dibarbet/update_roslyn_option
Browse files Browse the repository at this point in the history
Expose sourcelink option and update Roslyn
  • Loading branch information
dibarbet authored Sep 11, 2024
2 parents 827e35a + 34478e8 commit 6868c3c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)

# Latest
* Bump Roslyn to 4.12.0-2.24461.7 (PR: [#7544](https://github.com/dotnet/vscode-csharp/pull/7544))
* Fix crash when closing source link documents (PR: [#75047](https://github.com/dotnet/roslyn/pull/75047))
* Add option to disable source link (PR: [#75047](https://github.com/dotnet/roslyn/pull/75047))
* Fix issue navigating from source link documents (PR: [#75033](https://github.com/dotnet/roslyn/pull/75033))
* Fix exception applying fix all code action (PR: [#7537](https://github.com/dotnet/vscode-csharp/pull/7537))

# 2.45.20
* Fix check for rzls being present (PR: [#7462](https://github.com/dotnet/vscode-csharp/pull/7462))
* Bump Razor to 9.0.0-preview.24418.1 (PR: [#7456](https://github.com/dotnet/vscode-csharp/pull/7456))
* Don't add already known documents to the misc files project (#10753) (PR: [#10753](https://github.com/dotnet/razor/pull/10753))
Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
}
},
"defaults": {
"roslyn": "4.12.0-2.24422.6",
"roslyn": "4.12.0-2.24461.7",
"omniSharp": "1.39.11",
"razor": "9.0.0-preview.24418.1",
"razorOmnisharp": "7.0.0-preview.23363.1",
Expand Down Expand Up @@ -916,6 +916,12 @@
"description": "%configuration.dotnet.navigation.navigateToDecompiledSources%",
"order": 60
},
"dotnet.navigation.navigateToSourceLinkAndEmbeddedSources": {
"type": "boolean",
"default": "true",
"description": "%configuration.dotnet.navigation.navigateToSourceLinkAndEmbeddedSources%",
"order": 60
},
"dotnet.quickInfo.showRemarksInQuickInfo": {
"type": "boolean",
"default": "true",
Expand Down
1 change: 1 addition & 0 deletions package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
"configuration.dotnet.inlayHints.suppressInlayHintsForParametersThatMatchArgumentName": "Suppress hints when argument matches parameter name",
"configuration.dotnet.inlayHints.suppressInlayHintsForParametersThatMatchMethodIntent": "Suppress hints when parameter name matches the method's intent",
"configuration.dotnet.navigation.navigateToDecompiledSources": "Enable navigation to decomplied sources.",
"configuration.dotnet.navigation.navigateToSourceLinkAndEmbeddedSources": "Enable navigation to source link and embedded sources.",
"configuration.dotnet.quickInfo.showRemarksInQuickInfo": "Show remarks information when display symbol.",
"configuration.dotnet.symbolSearch.searchReferenceAssemblies": "Search symbols in reference assemblies. It affects features requires symbol searching, such as add imports.",
"configuration.dotnet.unitTestDebuggingOptions": "Options to use with the debugger when launching for unit test debugging. (Previously `csharp.unitTestDebuggingOptions`)",
Expand Down

0 comments on commit 6868c3c

Please sign in to comment.