Skip to content

Commit ba14b98

Browse files
author
Andrew Hall
authored
Bump razor to 9.0.0-preview.24360.1 (#7327)
Small fix for serialization casing
1 parent 09d8fd9 commit ba14b98

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

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

66
# Latest
7-
* Update Razor to 9.0.0-preview.24327.6 (PR: [#7273](https://github.com/dotnet/vscode-csharp/pull/7273))
7+
* Update Razor to 9.0.0-preview.24360.1 (PR: [#7327](https://github.com/dotnet/vscode-csharp/pull/7327))
8+
* Improve perf in generator cache cases (PR: [#10577](https://github.com/dotnet/razor/pull/10577))
9+
* Handle InsertReplaceEdit for completion (PR: [#10563](https://github.com/dotnet/razor/pull/10563))
10+
* Use System.Text.Json for serialization (PR: [#10551](https://github.com/dotnet/razor/pull/10551))
11+
* Support `DocumentSymbol` results from Roslyn (PR: [#10560](https://github.com/dotnet/razor/pull/10560))
812
* Use a named pipe to communicate projectinfo in vscode (PR: [#10521](https://github.com/dotnet/razor/pull/10521))
913
* Reduce allocations in Razor's DirectiveVisitor (PR: [10521](https://github.com/dotnet/razor/pull/10521))
1014
* Update Roslyn to 4.12.0-1.24359.11 (PR: [#7326](https://github.com/dotnet/vscode-csharp/pull/7326))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"defaults": {
4040
"roslyn": "4.12.0-1.24359.11",
4141
"omniSharp": "1.39.11",
42-
"razor": "9.0.0-preview.24327.6",
42+
"razor": "9.0.0-preview.24360.1",
4343
"razorOmnisharp": "7.0.0-preview.23363.1",
4444
"xamlTools": "17.12.35103.251"
4545
},

src/razor/src/semantic/provideSemanticTokensResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
export class ProvideSemanticTokensResponse {
77
// tslint:disable-next-line: variable-name
8-
constructor(public Tokens: number[], public HostDocumentSyncVersion: number) {}
8+
constructor(public tokens: number[], public hostDocumentSyncVersion: number) {}
99
}

0 commit comments

Comments
 (0)