diff --git a/package.json b/package.json index 68120dd0a..2eaab2432 100644 --- a/package.json +++ b/package.json @@ -732,6 +732,11 @@ "title": "Text Editor", "order": 1, "properties": { + "dotnet.autoInsert.enableAutoInsert": { + "type": "boolean", + "default": true, + "description": "%configuration.dotnet.autoInsert.enableAutoInsert%" + }, "dotnet.typeMembers.memberInsertionLocation": { "type": "string", "enum": [ diff --git a/package.nls.json b/package.nls.json index 2cd483130..5c26a9a00 100644 --- a/package.nls.json +++ b/package.nls.json @@ -23,6 +23,7 @@ "command.dotnet.test.runTestsInContext": "Run Tests in Context", "command.dotnet.test.debugTestsInContext": "Debug Tests in Context", "command.dotnet.restartServer": "Restart Language Server", + "configuration.dotnet.autoInsert.enableAutoInsert": "Enable automatic insertion of documentation comments.", "configuration.dotnet.defaultSolution.description": "The path of the default solution to be opened in the workspace, or set to 'disable' to skip it. (Previously `omnisharp.defaultLaunchSolution`)", "configuration.dotnet.dotnetPath": "Specifies the path to a dotnet installation directory to use instead of the default system one. This only influences the dotnet installation to use for hosting the language server itself. Example: \"/home/username/mycustomdotnetdirectory\".", "configuration.dotnet.server.path": "Specifies the absolute path to the server (LSP or O#) executable. When left empty the version pinned to the C# Extension is used. (Previously `omnisharp.path`)",