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 4
4
- Debug from .csproj and .sln [ #5876 ] ( https://github.com/dotnet/vscode-csharp/issues/5876 )
5
5
6
6
# 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 ) )
7
9
8
10
# 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 ) )
9
13
* Update Razor to 9.0.0-preview.24557.11 (PR: [ #7756 ] ( https://github.com/dotnet/vscode-csharp/pull/7756 ) )
10
14
* Fix FUSE hook up in VS Code (#11175 ) (PR: [ #11175 ] ( https://github.com/dotnet/razor/pull/11175 ) )
11
15
* Update VSTelemetryAPI version (#11181 ) (PR: [ #11181 ] ( https://github.com/dotnet/razor/pull/11181 ) )
26
30
* Reduce memory and CPU costs due to SegmentedList usage (PR: [ #75661 ] ( https://github.com/dotnet/roslyn/pull/75661 ) )
27
31
* Bump xamltools to 17.13.35506.24 (PR: [ #7740 ] ( https://github.com/dotnet/vscode-csharp/pull/7740 ) )
28
32
* 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
30
34
31
35
# 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 ) )
32
40
* Update Roslyn to 4.13.0-2.24531.3 (PR: [ #7722 ] ( https://github.com/dotnet/vscode-csharp/pull/7722 ) )
33
41
* Proffer project system query service (PR: [ #75682 ] ( https://github.com/dotnet/roslyn/pull/75682 ) )
34
42
* 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 37
37
}
38
38
},
39
39
"defaults" : {
40
- "roslyn" : " 4.13.0-2.24557.5 " ,
40
+ "roslyn" : " 4.13.0-2.24561.3 " ,
41
41
"omniSharp" : " 1.39.11" ,
42
- "razor" : " 9.0.0-preview.24557.11 " ,
42
+ "razor" : " 9.0.0-preview.24561.3 " ,
43
43
"razorOmnisharp" : " 7.0.0-preview.23363.1" ,
44
44
"xamlTools" : " 17.13.35507.225"
45
45
},
Original file line number Diff line number Diff line change @@ -126,6 +126,9 @@ export class CSharpPreviewPanel {
126
126
vertical-align: middle;
127
127
cursor: pointer;
128
128
}
129
+ button:focus-visible {
130
+ outline-color: var(--vscode-focusBorder)
131
+ }
129
132
</style>
130
133
131
134
<script type="text/javascript">
Original file line number Diff line number Diff line change @@ -127,6 +127,9 @@ export class HtmlPreviewPanel {
127
127
vertical-align: middle;
128
128
cursor: pointer;
129
129
}
130
+ button:focus-visible {
131
+ outline-color: var(--vscode-focusBorder)
132
+ }
130
133
</style>
131
134
132
135
<script type="text/javascript">
You can’t perform that action at this time.
0 commit comments