Skip to content

Bump Razor to 10.0.0-preview.25408.2 #8518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)

# 2.89.x
* Bump Razor to 10.0.0-preview.25408.2 (PR: [#8512](https://github.com/dotnet/vscode-csharp/pull/8512))
* Fix cohost override setting (PR: [#12082](https://github.com/dotnet/razor/pull/12082))
* Cohost span mapping (PR: [#12055](https://github.com/dotnet/razor/pull/12055))
* Explicitly deny certain Roslyn formatting options (PR: [#12064](https://github.com/dotnet/razor/pull/12064))
* Don't use `requestContext` in document closed endpoint (PR: [#12080](https://github.com/dotnet/razor/pull/12080))

# 2.88.x
* Enable Razor Cohosting "on" by default (PR: [#8469](https://github.com/dotnet/vscode-csharp/pull/8469))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"defaults": {
"roslyn": "5.0.0-2.25405.5",
"omniSharp": "1.39.14",
"razor": "10.0.0-preview.25403.1",
"razor": "10.0.0-preview.25408.2",
"razorOmnisharp": "7.0.0-preview.23363.1",
"xamlTools": "17.14.36106.43"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,6 @@ describe(`Razor References ${testAssetWorkspace.description}`, function () {
});

test('Find All References - CSharp', async () => {
if (!integrationHelpers.usingDevKit()) {
// If we're not using devkit, then it means we are testing cohosting, and FAR from C# doesn't currently work in cohosting.
return;
}

if (!integrationHelpers.isRazorWorkspace(vscode.workspace)) {
return;
}
Expand Down
Loading