Skip to content

Commit 33a6274

Browse files
author
Glenn Gailey
committed
Clean-up issues
1 parent cdbe84c commit 33a6274

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

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

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ zone_pivot_groups: programming-languages-set-functions
99

1010
# Quickstart: Create an Azure Functions project using Visual Studio Code
1111

12-
In this article, you use Visual Studio Code to create a function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account. To learn more, see the [Azure Functions overview](functions-overview.md).
12+
In this article, you use Visual Studio Code to create a function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
1313

1414
There is also a [CLI-based version](functions-create-first-azure-function-azure-cli.md) of this article.
1515

@@ -24,10 +24,14 @@ There is also a [CLI-based version](functions-create-first-azure-function-azure-
2424
::: zone-end
2525
::: zone pivot="programming-language-python"
2626
+ [Python 3.7](https://www.python.org/downloads/release/python-375/) or [Python 3.6](https://www.python.org/downloads/release/python-368/), which as supported by Azure Functions. Python 3.8 isn't yet supported.
27+
2728
+ The [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python) for Visual Studio Code.
2829
::: zone-end
2930
::: zone pivot="programming-language-powershell"
3031
+ [PowerShell Core](/powershell/scripting/install/installing-powershell-core-on-windows)
32+
33+
+ The [.NET Core SDK 2.2+](https://www.microsoft.com/net/download)
34+
3135
+ The [PowerShell extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode.PowerShell).
3236
::: zone-end
3337

@@ -54,7 +58,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
5458

5559
| Prompt | Value |
5660
| ------ | ----- |
57-
| Select a language for your Azure Functions project | C# |
61+
| Select a language for your function project | C# |
5862
| Select a version | Azure Functions v2 |
5963
| Select a template for your project's first function | HTTP trigger |
6064
| Provide a function name | HttpExample |
@@ -68,7 +72,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
6872

6973
| Prompt | Value |
7074
| ------ | ----- |
71-
| Select a language for your Azure Functions project | JavaScript |
75+
| Select a language for your function project | JavaScript |
7276
| Select a version | Azure Functions v2 |
7377
| Select a template for your project's first function | HTTP trigger |
7478
| Provide a function name | HttpExample |
@@ -81,7 +85,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
8185

8286
| Prompt | Value |
8387
| ------ | ----- |
84-
| Select a language for your Azure Functions project | TypeScript |
88+
| Select a language for your function project | TypeScript |
8589
| Select a version | Azure Functions v2 |
8690
| Select a template for your project's first function | HTTP trigger |
8791
| Provide a function name | HttpExample |
@@ -94,7 +98,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
9498

9599
| Prompt | Value |
96100
| ------ | ----- |
97-
| Select a language for your Azure Functions project | PowerShell |
101+
| Select a language for your function project | PowerShell |
98102
| Select a version | Azure Functions v2 |
99103
| Select a template for your project's first function | HTTP trigger |
100104
| Provide a function name | HttpExample |
@@ -107,7 +111,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
107111

108112
| Prompt | Value |
109113
| ------ | ----- |
110-
| Select a language for your Azure Functions project | Python |
114+
| Select a language for your function project | Python |
111115
| Select a version | Azure Functions v2 |
112116
| Select a Python alias to create a virtual environment | Python alias |
113117
| Select a template for your project's first function | HTTP trigger |

0 commit comments

Comments
 (0)