Skip to content

Commit 086efb7

Browse files
Update Razor cohosting to be 'on' by default. (#8469)
2 parents 12bf016 + cf49ba3 commit 086efb7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

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

66
# 2.88.x
7+
* Enable Razor Cohosting "on" by default (PR: [#8469](https://github.com/dotnet/vscode-csharp/pull/8469))
78
* Bump Roslyn to 5.0.0-2.25375.9 (PR: [#8463](https://github.com/dotnet/vscode-csharp/pull/8463))
89
* Add diagnostic provider for clients without dynamic registration(PR: [#77984](https://github.com/dotnet/roslyn/pull/77984))
910
* Fix eol handling on the last token in a file when formatting code actions(PR: [#79602](https://github.com/dotnet/roslyn/pull/79602))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,7 @@
15601560
},
15611561
"razor.languageServer.cohostingEnabled": {
15621562
"type": "boolean",
1563-
"default": false,
1563+
"default": true,
15641564
"description": "%configuration.razor.languageServer.cohostingEnabled%",
15651565
"tags": [
15661566
"experimental"

test/razor/razorIntegrationTests/testAssets/RazorApp/.vscode/devkit_RazorApp.code-workspace

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"dotnet.server.useOmnisharp": false,
1010
"omnisharp.enableLspDriver": false,
1111
"razor.server.trace": "Trace",
12-
"dotnet.preferCSharpExtension": false
12+
"dotnet.preferCSharpExtension": false,
13+
"razor.languageServer.cohostingEnabled": false
1314
}
1415
}

0 commit comments

Comments
 (0)