Skip to content

Commit 9028054

Browse files
authored
Remove createContainerAppFromWorkspace command (#827)
1 parent 4b61f1d commit 9028054

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

package.json

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,6 @@
6565
"category": "Azure Container Apps",
6666
"icon": "$(add)"
6767
},
68-
{
69-
"command": "containerApps.createContainerAppFromWorkspace",
70-
"title": "%containerApps.createContainerAppFromWorkspace%",
71-
"category": "Azure Container Apps"
72-
},
7368
{
7469
"command": "containerApps.deleteManagedEnvironment",
7570
"title": "%containerApps.deleteManagedEnvironment%",
@@ -368,11 +363,6 @@
368363
"when": "view =~ /(azureResourceGroups|azureFocusView)/ && viewItem =~ /managedEnvironmentItem/i",
369364
"group": "2@1"
370365
},
371-
{
372-
"command": "containerApps.createContainerAppFromWorkspace",
373-
"when": "view =~ /(azureResourceGroups|azureFocusView)/ && viewItem =~ /managedEnvironmentItem/i",
374-
"group": "2@2"
375-
},
376366
{
377367
"command": "containerApps.deleteManagedEnvironment",
378368
"when": "view =~ /(azureResourceGroups|azureFocusView)/ && viewItem =~ /managedEnvironmentItem/i",
@@ -605,10 +595,6 @@
605595
}
606596
],
607597
"commandPalette": [
608-
{
609-
"command": "containerApps.createContainerAppFromWorkspace",
610-
"when": "never"
611-
},
612598
{
613599
"command": "containerApps.deployWorkspaceProjectApi",
614600
"when": "never"

package.nls.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"containerApps.showDraftCommandDeployPopup": "Prompt to deploy revision draft whenever a draft command is run.",
88
"containerApps.browse": "Browse",
99
"containerApps.createContainerApp": "Create Container App...",
10-
"containerApps.createContainerAppFromWorkspace": "Create Container App from Workspace...",
1110
"containerApps.editContainerApp": "Edit Container App (Advanced)...",
1211
"containerApps.editContainer": "Edit Container...",
1312
"containerApps.editContainerImage.title": "Edit Container Image...",

src/commands/registerCommands.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export function registerCommands(): void {
6161
// container apps
6262
registerCommandWithTreeNodeUnwrapping('containerApps.browse', browseContainerAppNode);
6363
registerCommandWithTreeNodeUnwrapping('containerApps.createContainerApp', createContainerApp);
64-
registerCommandWithTreeNodeUnwrapping('containerApps.createContainerAppFromWorkspace', deployWorkspaceProject);
6564
registerCommandWithTreeNodeUnwrapping('containerApps.deleteContainerApp', deleteContainerApp);
6665
registerCommandWithTreeNodeUnwrapping('containerApps.editContainerApp', editContainerApp);
6766
registerCommandWithTreeNodeUnwrapping('containerApps.openConsoleInPortal', openConsoleInPortal);

0 commit comments

Comments
 (0)