diff --git a/CHANGELOG.md b/CHANGELOG.md index 705925f9a..fefdf9128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ - Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876) # 2.89.x +* Bump Razor to 10.0.0-preview.25411.5 (PR: [#8512](https://github.com/dotnet/vscode-csharp/pull/8512)) + * Fix VS Code cohosting completion when Razor and C# are valid (PR: [#12096](https://github.com/dotnet/razor/pull/12096)) + * Fix null reference exception in formatting (PR: [#12097](https://github.com/dotnet/razor/pull/12097)) + * 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)) diff --git a/package.json b/package.json index 646f1e4fd..198d4bbaa 100644 --- a/package.json +++ b/package.json @@ -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.25411.5", "razorOmnisharp": "7.0.0-preview.23363.1", "xamlTools": "17.14.36106.43" }, diff --git a/test/razor/razorIntegrationTests/reference.integration.test.ts b/test/razor/razorIntegrationTests/reference.integration.test.ts index 06c9bd57b..5a15c3794 100644 --- a/test/razor/razorIntegrationTests/reference.integration.test.ts +++ b/test/razor/razorIntegrationTests/reference.integration.test.ts @@ -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; }