File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 44- Debug from .csproj and .sln [ #5876 ] ( https://github.com/dotnet/vscode-csharp/issues/5876 )
55
66# 2.57.x
7+ * Update Razor to 9.0.0-preview.24561.3 (PR: [ #7748 ] ( https://github.com/dotnet/vscode-csharp/pull/7748 ) )
8+ * Add feature flag to turn on the new Roslyn tokenizer (PR: [ #11185 ] ( https://github.com/dotnet/razor/pull/11185 ) )
79
810# 2.56.x
11+ * Update Roslyn to 4.13.0-2.24561.3 (PR: [ #7765 ] ( https://github.com/dotnet/vscode-csharp/pull/7765 ) )
12+ * Update Razor to fix serialization issue loading projects (PR: [ #75794 ] ( https://github.com/dotnet/roslyn/pull/75794 ) )
913* Update Razor to 9.0.0-preview.24557.11 (PR: [ #7756 ] ( https://github.com/dotnet/vscode-csharp/pull/7756 ) )
1014 * Fix FUSE hook up in VS Code (#11175 ) (PR: [ #11175 ] ( https://github.com/dotnet/razor/pull/11175 ) )
1115 * Update VSTelemetryAPI version (#11181 ) (PR: [ #11181 ] ( https://github.com/dotnet/razor/pull/11181 ) )
2630 * Reduce memory and CPU costs due to SegmentedList usage (PR: [ #75661 ] ( https://github.com/dotnet/roslyn/pull/75661 ) )
2731* Bump xamltools to 17.13.35506.24 (PR: [ #7740 ] ( https://github.com/dotnet/vscode-csharp/pull/7740 ) )
2832* Bump xamltools to 17.13.35507.225 (PR: [ #7755 ] ( https://github.com/dotnet/vscode-csharp/pull/7755 ) )
29- * XAML IntelliseSense completions for Image.Source
33+ * XAML IntelliseSense completions for Image.Source
3034
3135# 2.55.x
36+ * Update Razor to 9.0.0-preview.24557.10 (PR: [ #7757 ] ( https://github.com/dotnet/vscode-csharp/pull/7757 ) )
37+ * Update VSTelemetryAPI version (#11181 ) (PR: [ #11181 ] ( https://github.com/dotnet/razor/pull/11181 ) )
38+ * Update Roslyn to 4.13.0-2.24557.6 (PR: [ #7751 ] ( https://github.com/dotnet/vscode-csharp/pull/7751 ) )
39+ * Fix issue telemetry reporting incorrect property value (PR: [ #75817 ] ( https://github.com/dotnet/roslyn/pull/75817 ) )
3240* Update Roslyn to 4.13.0-2.24531.3 (PR: [ #7722 ] ( https://github.com/dotnet/vscode-csharp/pull/7722 ) )
3341 * Proffer project system query service (PR: [ #75682 ] ( https://github.com/dotnet/roslyn/pull/75682 ) )
3442 * Ensure discards are initially soft selected in VSCode (PR: [ #75655 ] ( https://github.com/dotnet/roslyn/pull/75655 ) )
Original file line number Diff line number Diff line change 3737 }
3838 },
3939 "defaults" : {
40- "roslyn" : " 4.13.0-2.24557.5 " ,
40+ "roslyn" : " 4.13.0-2.24561.3 " ,
4141 "omniSharp" : " 1.39.11" ,
42- "razor" : " 9.0.0-preview.24557.11 " ,
42+ "razor" : " 9.0.0-preview.24561.3 " ,
4343 "razorOmnisharp" : " 7.0.0-preview.23363.1" ,
4444 "xamlTools" : " 17.13.35507.225"
4545 },
Original file line number Diff line number Diff line change @@ -126,6 +126,9 @@ export class CSharpPreviewPanel {
126126 vertical-align: middle;
127127 cursor: pointer;
128128 }
129+ button:focus-visible {
130+ outline-color: var(--vscode-focusBorder)
131+ }
129132 </style>
130133
131134 <script type="text/javascript">
Original file line number Diff line number Diff line change @@ -127,6 +127,9 @@ export class HtmlPreviewPanel {
127127 vertical-align: middle;
128128 cursor: pointer;
129129 }
130+ button:focus-visible {
131+ outline-color: var(--vscode-focusBorder)
132+ }
130133 </style>
131134
132135 <script type="text/javascript">
You can’t perform that action at this time.
0 commit comments