-
Notifications
You must be signed in to change notification settings - Fork 675
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
Add option to disable devkit #6390
Conversation
package.json
Outdated
@@ -1169,6 +1169,12 @@ | |||
"default": null, | |||
"description": "Sets a path where MSBuild binary logs are written to when loading projects, to help diagnose loading errors." | |||
}, | |||
"dotnet.loadProjectsWithCSharpExtension": { | |||
"scope": "machine-overridable", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately this doesn't remove it from user settings. I saw no way to actually remove it from user settings :(. Might be a limitation we have to live with.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, does this work?
resource - Resource settings, which apply to files and folders, and can be configured in all settings levels, even folder settings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
28e2485
to
bf8b811
Compare
package.nls.json
Outdated
@@ -5,6 +5,7 @@ | |||
"configuration.dotnet.server.waitForDebugger": "Passes the --debug flag when launching the server to allow a debugger to be attached. (Previously `omnisharp.waitForDebugger`)", | |||
"configuration.dotnet.server.trace": "Sets the logging level for the language server", | |||
"configuration.dotnet.server.extensionPaths": "Override for path to language server --extension arguments", | |||
"configuration.dotnet.preferCSharpExtension": "Forces projects to load with the C# extension only. This can be useful when using legacy project types that are not supported by the C# Dev Kit. (Requires window reload)", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should there be a "the" before "C# Dev Kit" not?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There shouldn't be a "the" before CDK.
Add option to disable devkit
Add option to disable devkit
No description provided.