Skip to content

Commit df3649f

Browse files
authored
Remove Azure Functions explorer vernacular (#4519)
* Remove Azure Functions explorer venacular * Update README
1 parent e983c02 commit df3649f

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use the Azure Functions extension to quickly create, debug, manage, and deploy s
1414
1515
## Create your first serverless app
1616

17-
1. Select the button to create a new project in the Azure Functions explorer
17+
1. Select the button to create a new project in the Azure Resources explorer
1818

1919
![createNewProject](resources/readme/createFunction.png)
2020

@@ -36,7 +36,7 @@ This extension integrates with the [Azure Functions Core Tools](https://docs.mic
3636

3737
1. If you do not have the [Azure Functions Core Tools](https://aka.ms/Dqur4e) installed, you will be automatically prompted to install. Follow the specified instructions, or skip to the "Deploy" step if you would rather deploy without running locally.
3838
> TIP: The "Terminal" panel should pop up automatically and you know your project is running if you see output
39-
1. Expand your _local project_ in the Azure Functions explorer to copy your function's url
39+
1. Expand your _local project_ in the Azure Workspace explorer to copy your function's url
4040

4141
![debug2](resources/readme/copyFunctionUrl.png)
4242

@@ -49,7 +49,7 @@ This extension integrates with the [Azure Functions Core Tools](https://docs.mic
4949

5050
## Deploy to Azure
5151

52-
1. Sign in to your Azure Account by clicking "Sign in to Azure..." in the Azure Functions explorer
52+
1. Sign in to your Azure Account by clicking "Sign in to Azure..." in the Azure Resources explorer
5353
> If you don't already have an Azure Account, click "Create a Free Azure Account"
5454
1. Select the 'plus' button to open the "Create Resource" menu
5555

@@ -74,7 +74,7 @@ This extension integrates with the [Azure Functions Core Tools](https://docs.mic
7474

7575
![Deploy to Function App](resources/readme/deploy/deploy.png)
7676

77-
1. Once deployment is complete, expand your _subscription_ in the Azure Functions explorer to copy your deployed function's url
77+
1. Once deployment is complete, expand your _subscription_ in the Azure Resources explorer to copy your deployed function's url
7878

7979
![deploy3](resources/readme/deploy/copyFunctionUrl.png)
8080

package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,11 +1003,6 @@
10031003
{
10041004
"title": "Azure Functions",
10051005
"properties": {
1006-
"azureFunctions.showExplorer": {
1007-
"type": "boolean",
1008-
"default": true,
1009-
"description": "%azureFunctions.showExplorer%"
1010-
},
10111006
"azureFunctions.templateFilter": {
10121007
"scope": "resource",
10131008
"type": "string",

package.nls.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@
8585
"azureFunctions.showDeployConfirmation": "Ask for confirmation before deploying to a Function App in Azure (deploying will overwrite any previous deployment and cannot be undone).",
8686
"azureFunctions.showDeploySubpathWarning": "Show a warning when the \"deploySubpath\" setting does not match the selected folder for deploying.",
8787
"azureFunctions.showDeprecatedStacks": "Show deprecated runtime stacks when creating a Function App in Azure. WARNING: These stacks may be removed at any time and may not be available in all regions.",
88-
"azureFunctions.showExplorer": "Show or hide the Azure Functions Explorer",
8988
"azureFunctions.showExtensionsCsprojWarning": "Show a warning when an Azure Functions project was detected that has mismatched \"extensions.csproj\" configuration.",
9089
"azureFunctions.showFlexEventGridWarning": "Show a warning when deploying a Azure Blob Storage Trigger (using Event Grid) to a Flex Consumption Function App.",
9190
"azureFunctions.showHiddenStacks": "Show hidden runtime stacks when creating a Function App in Azure. WARNING: These stacks may be in preview or may not be available in all regions.",

src/commands/deploy/notifyDeployComplete.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ async function listHttpTriggerUrls(context: IActionContext, node: SlotTreeItem):
9393

9494
if (functions.find(f => f instanceof RemoteFunctionTreeItem && f.isHttpTrigger && !f.isAnonymous)) {
9595
hasHttpTriggers = true;
96-
ext.outputChannel.appendLog(localize('nonAnonymousWarning', 'WARNING: Some http trigger urls cannot be displayed in the output window because they require an authentication token. Instead, you may copy them from the Azure Functions explorer.'), logOptions);
96+
ext.outputChannel.appendLog(localize('nonAnonymousWarning', 'WARNING: Some http trigger urls cannot be displayed in the output window because they require an authentication token. Instead, you may copy them from the Azure Resources explorer.'), logOptions);
9797
}
9898

9999
if (!hasHttpTriggers) {

0 commit comments

Comments
 (0)