Skip to content

Commit fff7f54

Browse files
Merge pull request #233796 from ejizba/ej/openInWindow
Use "Open in current window" for functions vs code tutorials
2 parents 9e4b8a9 + 2a84f6e commit fff7f54

7 files changed

+10
-10
lines changed

articles/azure-functions/create-first-function-vs-code-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
5252
|**Provide a function name**|Type `HttpExample`.|
5353
|**Provide a namespace** | Type `My.Functions`. |
5454
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
55-
|**Select how you would like to open your project**|Select `Add to workspace`.|
55+
|**Select how you would like to open your project**|Select `Open in current window`.|
5656

5757
1. Visual Studio Code uses the provided information and generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. For more information about the files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=csharp#generated-project-files).
5858

articles/azure-functions/create-first-function-vs-code-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
5555
| **Select the build tool for Java project** | Choose `Maven`. |
5656
|**Provide a function name**| Enter `HttpExample`.|
5757
|**Authorization level**| Choose `Anonymous`, which lets anyone call your function endpoint. For more information about the authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
58-
|**Select how you would like to open your project**| Choose `Add to workspace`.|
58+
|**Select how you would like to open your project**| Choose `Open in current window`.|
5959

6060
1. Visual Studio Code uses the provided information and generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. For more information about the files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=java#generated-project-files).
6161

articles/azure-functions/create-first-function-vs-code-node.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
5353
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
5454
|**Provide a function name**|Type `HttpExample`.|
5555
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
56-
|**Select how you would like to open your project**|Choose `Add to workspace`.|
56+
|**Select how you would like to open your project**|Choose `Open in current window`.|
5757

5858
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=javascript#generated-project-files).
5959
::: zone-end
@@ -66,7 +66,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
6666
|**Select a JavaScript programming model**|Choose `Model V4 (Preview)`|
6767
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
6868
|**Provide a function name**|Type `HttpExample`.|
69-
|**Select how you would like to open your project**|Choose `Add to workspace`|
69+
|**Select how you would like to open your project**|Choose `Open in current window`|
7070

7171
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Azure Functions JavaScript developer guide](functions-reference-node.md).
7272
::: zone-end

articles/azure-functions/create-first-function-vs-code-other.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions cu
6565
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
6666
|**Provide a function name**|Type `HttpExample`.|
6767
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
68-
|**Select how you would like to open your project**|Choose `Add to workspace`.|
68+
|**Select how you would like to open your project**|Choose `Open in current window`.|
6969

7070
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer.
7171

articles/azure-functions/create-first-function-vs-code-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
4141
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
4242
|**Provide a function name**|Type `HttpExample`.|
4343
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
44-
|**Select how you would like to open your project**|Choose `Add to workspace`.|
44+
|**Select how you would like to open your project**|Choose `Open in current window`.|
4545

4646
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=powershell#generated-project-files).
4747

articles/azure-functions/create-first-function-vs-code-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
6969
|**Select a template for your project's first function**| Choose `HTTP trigger`.|
7070
|**Provide a function name**| Enter `HttpExample`.|
7171
|**Authorization level**| Choose `Anonymous`, which lets anyone call your function endpoint. For more information about the authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
72-
|**Select how you would like to open your project**| Choose `Add to workspace`.|
72+
|**Select how you would like to open your project**| Choose `Open in current window`.|
7373

7474
4. Visual Studio Code uses the provided information and generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. For more information about the files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=python#generated-project-files).
7575
::: zone-end
@@ -80,7 +80,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
8080
|--|--|
8181
|**Select a language**| Choose `Python (Programming Model V2)`.|
8282
|**Select a Python interpreter to create a virtual environment**| Choose your preferred Python interpreter. If an option isn't shown, type in the full path to your Python binary.|
83-
|**Select how you would like to open your project**| Choose `Add to workspace`.|
83+
|**Select how you would like to open your project**| Choose `Open in current window`.|
8484

8585
4. Visual Studio Code uses the provided information and generates an Azure Functions project.
8686

articles/azure-functions/create-first-function-vs-code-typescript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
6464
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
6565
|**Provide a function name**|Type `HttpExample`.|
6666
|**Authorization level**|Choose `Anonymous`, which enables anyone to call your function endpoint. To learn about authorization level, see [Authorization keys](functions-bindings-http-webhook-trigger.md#authorization-keys).|
67-
|**Select how you would like to open your project**|Choose `Add to workspace`.|
67+
|**Select how you would like to open your project**|Choose `Open in current window`.|
6868

6969
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=typescript#generated-project-files).
7070
::: zone-end
@@ -77,7 +77,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
7777
|**Select a TypeScript programming model**|Choose `Model V4 (Preview)`|
7878
|**Select a template for your project's first function**|Choose `HTTP trigger`.|
7979
|**Provide a function name**|Type `HttpExample`.|
80-
|**Select how you would like to open your project**|Choose `Add to workspace`|
80+
|**Select how you would like to open your project**|Choose `Open in current window`|
8181

8282
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Azure Functions TypeScript developer guide](functions-reference-node.md).
8383
::: zone-end

0 commit comments

Comments
 (0)