Skip to content

Commit 304bc54

Browse files
committed
adjust naming
1 parent 75d7cfc commit 304bc54

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1682,11 +1682,11 @@
16821682
"default": null,
16831683
"description": "%configuration.dotnet.server.crashDumpPath%"
16841684
},
1685-
"dotnet.server.enableXamlTools": {
1685+
"dotnet.enableXamlTools": {
16861686
"scope": "machine-overridable",
16871687
"type": "boolean",
16881688
"default": false,
1689-
"description": "%configuration.dotnet.server.enableXamlTools%"
1689+
"description": "%configuration.dotnet.enableXamlTools%"
16901690
},
16911691
"dotnet.projects.binaryLogPath": {
16921692
"scope": "machine-overridable",

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"configuration.dotnet.server.trace": "Sets the logging level for the language server",
3535
"configuration.dotnet.server.extensionPaths": "Override for path to language server --extension arguments",
3636
"configuration.dotnet.server.crashDumpPath": "Sets a folder path where crash dumps are written to if the language server crashes. Must be writeable by the user.",
37-
"configuration.dotnet.server.enableXamlTools": "[Experimental] Enables XAML tools when using C# Dev Kit",
37+
"configuration.dotnet.enableXamlTools": "[Experimental] Enables XAML tools when using C# Dev Kit",
3838
"configuration.dotnet.projects.enableAutomaticRestore": "Enables automatic NuGet restore if the extension detects assets are missing.",
3939
"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 C# Dev Kit. (Requires window reload)",
4040
"configuration.dotnet.implementType.insertionBehavior": "The insertion location of properties, events, and methods When implement interface or abstract class.",

src/shared/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ class LanguageServerOptionsImpl implements LanguageServerOptions {
403403
return readOption<{ [key: string]: string }>('dotnet.server.componentPaths', {});
404404
}
405405
public get enableXamlTools() {
406-
return readOption<boolean>('dotnet.server.enableXamlTools', false);
406+
return readOption<boolean>('dotnet.enableXamlTools', false);
407407
}
408408
}
409409

0 commit comments

Comments
 (0)