From b085e1c21e25e400756ec6999445aa3150b3cbe9 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 29 Sep 2021 11:02:52 +0200 Subject: [PATCH] Add "features" property to schema (microsoft/vscode-remote-release#5442) --- .../devContainer.schema.generated.json | 25 +++++++++++++++++++ .../schemas/devContainer.schema.src.json | 5 ++++ 2 files changed, 30 insertions(+) diff --git a/extensions/configuration-editing/schemas/devContainer.schema.generated.json b/extensions/configuration-editing/schemas/devContainer.schema.generated.json index 492b21827cf..34702e66916 100644 --- a/extensions/configuration-editing/schemas/devContainer.schema.generated.json +++ b/extensions/configuration-editing/schemas/devContainer.schema.generated.json @@ -124,6 +124,11 @@ "$ref": "vscode://schemas/settings/machine", "description": "Machine specific settings that should be copied into the container. These are only copied when connecting to the container for the first time, rebuilding the container then triggers it again." }, + "features": { + "type": "object", + "description": "Features to add to the dev container.", + "additionalProperties": true + }, "forwardPorts": { "type": "array", "description": "Ports that are forwarded from the container to the local machine. Can be an integer port number, or a string of the format \"host:port_number\".", @@ -522,6 +527,11 @@ "$ref": "vscode://schemas/settings/machine", "description": "Machine specific settings that should be copied into the container. These are only copied when connecting to the container for the first time, rebuilding the container then triggers it again." }, + "features": { + "type": "object", + "description": "Features to add to the dev container.", + "additionalProperties": true + }, "forwardPorts": { "type": "array", "description": "Ports that are forwarded from the container to the local machine. Can be an integer port number, or a string of the format \"host:port_number\".", @@ -886,6 +896,11 @@ "$ref": "vscode://schemas/settings/machine", "description": "Machine specific settings that should be copied into the container. These are only copied when connecting to the container for the first time, rebuilding the container then triggers it again." }, + "features": { + "type": "object", + "description": "Features to add to the dev container.", + "additionalProperties": true + }, "forwardPorts": { "type": "array", "description": "Ports that are forwarded from the container to the local machine. Can be an integer port number, or a string of the format \"host:port_number\".", @@ -1224,6 +1239,11 @@ "$ref": "vscode://schemas/settings/machine", "description": "Machine specific settings that should be copied into the container. These are only copied when connecting to the container for the first time, rebuilding the container then triggers it again." }, + "features": { + "type": "object", + "description": "Features to add to the dev container.", + "additionalProperties": true + }, "forwardPorts": { "type": "array", "description": "Ports that are forwarded from the container to the local machine. Can be an integer port number, or a string of the format \"host:port_number\".", @@ -1527,6 +1547,11 @@ "$ref": "vscode://schemas/settings/machine", "description": "Machine specific settings that should be copied into the container. These are only copied when connecting to the container for the first time, rebuilding the container then triggers it again." }, + "features": { + "type": "object", + "description": "Features to add to the dev container.", + "additionalProperties": true + }, "forwardPorts": { "type": "array", "description": "Ports that are forwarded from the container to the local machine. Can be an integer port number, or a string of the format \"host:port_number\".", diff --git a/extensions/configuration-editing/schemas/devContainer.schema.src.json b/extensions/configuration-editing/schemas/devContainer.schema.src.json index 20ef3b20dac..4d863b1e2a3 100644 --- a/extensions/configuration-editing/schemas/devContainer.schema.src.json +++ b/extensions/configuration-editing/schemas/devContainer.schema.src.json @@ -24,6 +24,11 @@ "$ref": "vscode://schemas/settings/machine", "description": "Machine specific settings that should be copied into the container. These are only copied when connecting to the container for the first time, rebuilding the container then triggers it again." }, + "features": { + "type": "object", + "description": "Features to add to the dev container.", + "additionalProperties": true + }, "forwardPorts": { "type": "array", "description": "Ports that are forwarded from the container to the local machine. Can be an integer port number, or a string of the format \"host:port_number\".",