From 06a4b33a7814b9a5a3d3bf1b1c801b69472f79f7 Mon Sep 17 00:00:00 2001 From: Phillip Hoff Date: Fri, 21 Oct 2022 15:06:36 -0700 Subject: [PATCH] Add provision command to the Azure Resources "create resources" menu. (#954) * Add new provision entrypoint. * Update menu text per PR feedback. --- ext/vscode/package.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ext/vscode/package.json b/ext/vscode/package.json index 898275e3fb7..6a7fe2352c0 100644 --- a/ext/vscode/package.json +++ b/ext/vscode/package.json @@ -38,7 +38,16 @@ ], "main": "./main.js", "contributes": { - "commands": [ + "x-azResources": { + "commands": [ + { + "command": "azure-dev.commands.cli.provision", + "title": "Create application infrastructure using azd...", + "detail": "Use the Azure Developer CLI to set up application infrastructure resources (azd provision)." + } + ] + }, + "commands": [ { "category": "%azure-dev.commands_category%", "command": "azure-dev.commands.cli.init",