Skip to content

Commit a6bfdb9

Browse files
committed
Add obsolete classifications to vs2019 themes
1 parent 82d86ab commit a6bfdb9

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

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

66
## Latest
7-
* Add oboslete classification definitions to default themes (PR: [#<>](https://github.com/dotnet/vscode-csharp/pull/<>))
7+
* Add oboslete classification definitions to vs2019 themes (PR: [#<>](https://github.com/dotnet/vscode-csharp/pull/<>))
88
* Bump Roslyn to 4.11.0-1.24179.11 (PR: [#<>](https://github.com/dotnet/vscode-csharp/pull/<>))
99
* Add feature to strike out obsolete symbols (PR: [#72156](https://github.com/dotnet/roslyn/pull/72156))
1010
* Fix issue where some file changes would be ignored on Windows due to casing (PR: [#72555](https://github.com/dotnet/roslyn/pull/72555))

themes/vs2019_dark.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
"sideBarSectionHeader.border": "#ccc3"
2525
},
2626
"semanticHighlighting": true,
27+
"semanticTokenColors": {
28+
"*.deprecated": {
29+
"strikethrough": true
30+
}
31+
},
2732
// https://github.com/microsoft/vscode/blob/master/extensions/theme-defaults/themes/dark_vs.json
2833
"tokenColors": [
2934
{

themes/vs2019_light.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
"sideBarSectionHeader.border": "#61616130"
2525
},
2626
"semanticHighlighting": true,
27+
"semanticTokenColors": {
28+
"*.deprecated": {
29+
"strikethrough": true
30+
}
31+
},
2732
// https://github.com/microsoft/vscode/blob/master/extensions/theme-defaults/themes/light_vs.json
2833
"tokenColors": [
2934
{

0 commit comments

Comments
 (0)