diff --git a/package.json b/package.json index b0d3e2c..5f4f14a 100644 --- a/package.json +++ b/package.json @@ -459,6 +459,17 @@ "description": "%vscode-dapr.tasks.dapr.properties.metricsPort.description%", "default": -1 }, + "options": { + "type": "object", + "description": "%vscode-dapr.tasks.dapr.properties.options.description%", + "additionalProperties":true, + "properties": { + "env": { + "type": "object", + "description": "%vscode-dapr.tasks.dapr.properties.options.env.description%" + } + } + }, "placementHostAddress": { "type": "string", "description": "%vscode-dapr.tasks.dapr.properties.placementHostAddress.description%", @@ -484,10 +495,6 @@ "type": "string", "description": "%vscode-dapr.tasks.dapr.properties.runFile.description%" }, - "options": { - "type": "object", - "description": "%vscode-dapr.tasks.dapr.properties.options.description%" - }, "unixDomainSocket": { "type": "string", "description": "%vscode-dapr.tasks.dapr.properties.unixDomainSocket.description%" @@ -662,6 +669,17 @@ ], "default": "standalone" }, + "options": { + "type": "object", + "description": "%vscode-dapr.tasks.daprd.properties.options.description%", + "additionalProperties":true, + "properties": { + "env": { + "type": "object", + "description": "%vscode-dapr.tasks.daprd.properties.options.env.description%" + } + } + }, "placementHostAddress": { "type": "string", "description": "%vscode-dapr.tasks.daprd.properties.placementHostAddress.description%" diff --git a/package.nls.json b/package.nls.json index 44b2b0a..72110ca 100644 --- a/package.nls.json +++ b/package.nls.json @@ -67,11 +67,12 @@ "vscode-dapr.tasks.dapr.properties.listenAddresses.description": "One or more addresses for the Dapr API to listen on, CSV limited.", "vscode-dapr.tasks.dapr.properties.logLevel.description": "Sets the log verbosity.", "vscode-dapr.tasks.dapr.properties.metricsPort.description": "The port of metrics on dapr.", + "vscode-dapr.tasks.dapr.properties.options.description": "Task execution options.", + "vscode-dapr.tasks.dapr.properties.options.env.description": "Task execution environment variables.", "vscode-dapr.tasks.dapr.properties.placementHostAddress.description": "The host on which the placement service resides.", "vscode-dapr.tasks.dapr.properties.profilePort.description": "The port for the profile server to listen on.", "vscode-dapr.tasks.dapr.properties.resourcesPath.description": "(Deprecated in v1.11.) The path for resources directory (default \"/.dapr/components\").", "vscode-dapr.tasks.dapr.properties.resourcesPaths.description": "The paths for resources directory (default \"/.dapr/components\").", - "vscode-dapr.tasks.dapr.properties.options.description": "Task execution options.", "vscode-dapr.tasks.dapr.properties.runFile.description": "Path to the run template file for the list of apps to run.", "vscode-dapr.tasks.dapr.properties.unixDomainSocket.description": "Path to a unix domain socket dir. If specified, Dapr API servers will use Unix Domain Sockets.", @@ -106,6 +107,8 @@ "vscode-dapr.tasks.daprd.properties.logLevel.description": "Sets the log verbosity.", "vscode-dapr.tasks.daprd.properties.metricsPort.description": "The port for the metrics server.", "vscode-dapr.tasks.daprd.properties.mode.description": "Runtime mode for Dapr.", + "vscode-dapr.tasks.daprd.properties.options.description": "Task execution options.", + "vscode-dapr.tasks.daprd.properties.options.env.description": "Task execution environment variables.", "vscode-dapr.tasks.daprd.properties.placementHostAddress.description": "Address for the Dapr placement service.", "vscode-dapr.tasks.daprd.properties.profilePort.description": "The port for the profile server.", "vscode-dapr.tasks.daprd.properties.publicPort.description": "Public port for Dapr Health and Metadata to listen on.",