Skip to content

Commit fbc7f51

Browse files
committed
Clean-up
1 parent 187fba9 commit fbc7f51

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

articles/azure-functions/functions-reference-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ These instructions show you how to convert C# script functions (which run in-pro
654654
1. Complete the **Create a functions app project** section from your preferred quickstart:
655655

656656
### [Azure CLI](#tab/azure-cli)
657-
[Create a C# function in Azure from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-csharp#create-a-local-function-project-and-function)
657+
[Create a C# function in Azure from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-csharp#create-a-local-code-project-and-function)
658658
### [Visual Studio](#tab/vs)
659659
[Create your first C# function in Azure using Visual Studio](functions-create-your-first-function-visual-studio.md#create-a-function-app-project)
660660
### [Visual Studio Code](#tab/vs-code)

articles/azure-functions/how-to-create-function-azure-cli.md

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

1010
# Quickstart: Create a function in Azure from the command line
1111

12-
In this article, you use command-line tools locally to create a function that responds to HTTP requests. After verifying your code locally, you deploy it to a serverless hosting plan in Azure Functions.
12+
In this article, you use local command-line tools to create a function that responds to HTTP requests. After verifying your code locally, you deploy it to a serverless hosting plan in Azure Functions.
1313

1414
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
1515

@@ -27,9 +27,9 @@ Before you begin, you must have the following:
2727

2828
[!INCLUDE [functions-cli-create-venv](../../includes/functions-cli-create-venv.md)]
2929

30-
## Create a local function project and function
30+
## Create a local code project and function
3131

32-
In Azure Functions, a function project is a container for one or more individual functions that each responds to a specific trigger. All functions in a project share the same local and hosting configurations. In this section, you create a function project that contains a single function.
32+
In Azure Functions, your code project is an app that contains one or more individual functions that each responds to a specific trigger. All functions in a project share the same configurations and are deployed as a unit to Azure. In this section, you create a code project that contains a single function.
3333
::: zone pivot="programming-language-csharp"
3434
1. In a terminal or command prompt, run this [`func init`](./functions-core-tools-reference.md#func-init) command to create a function app project in the current folder:
3535

@@ -134,9 +134,9 @@ The project root folder contains various files for the project, including config
134134

135135
## Run the function locally
136136

137-
1. Run your function by starting the local Azure Functions runtime host from the root folder:
137+
Verify your new function by running the project locally and calling the function endpoint.
138138

139-
To test the function locally, start the local Azure Functions runtime host in the root of the project folder.
139+
1. Use this command to start the local Azure Functions runtime host in the root of the project folder:
140140
::: zone pivot="programming-language-csharp"
141141
```console
142142
func start

articles/digital-twins/how-to-ingest-iot-hub-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ In this section, you create an Azure function to access Azure Digital Twins and
7474

7575
1. First, create a new Azure Functions project of Event Grid trigger type.
7676

77-
You can do this using **Visual Studio** (for instructions, see [Develop Azure Functions using Visual Studio](../azure-functions/functions-develop-vs.md#create-an-azure-functions-project)), **Visual Studio Code** (for instructions, see [Create a C# function in Azure using Visual Studio Code](../azure-functions/create-first-function-vs-code-csharp.md?tabs=in-process#create-an-azure-functions-project)), or the **Azure CLI** (for instructions, see [Create a C# function in Azure from the command line](../azure-functions/how-to-create-function-azure-cli.md?pivots=programming-language-csharp#create-a-local-function-project-and-function)).
77+
You can do this using **Visual Studio** (for instructions, see [Develop Azure Functions using Visual Studio](../azure-functions/functions-develop-vs.md#create-an-azure-functions-project)), **Visual Studio Code** (for instructions, see [Create a C# function in Azure using Visual Studio Code](../azure-functions/create-first-function-vs-code-csharp.md?tabs=in-process#create-an-azure-functions-project)), or the **Azure CLI** (for instructions, see [Create a C# function in Azure from the command line](../azure-functions/how-to-create-function-azure-cli.md?pivots=programming-language-csharp#create-a-local-code-project-and-function)).
7878

7979
2. Add the following packages to your project (you can use the Visual Studio NuGet package manager, or the [dotnet add package](/dotnet/core/tools/dotnet-add-package) command in a command-line tool).
8080
* [Azure.DigitalTwins.Core](https://www.nuget.org/packages/Azure.DigitalTwins.Core/)

articles/digital-twins/how-to-send-twin-to-twin-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Next, create an Azure function that listens on the endpoint and receive twin eve
3939

4040
1. First, create a new Azure Functions project.
4141

42-
You can do this using **Visual Studio** (for instructions, see [Develop Azure Functions using Visual Studio](../azure-functions/functions-develop-vs.md#create-an-azure-functions-project)), **Visual Studio Code** (for instructions, see [Create a C# function in Azure using Visual Studio Code](../azure-functions/create-first-function-vs-code-csharp.md?tabs=in-process#create-an-azure-functions-project)), or the **Azure CLI** (for instructions, see [Create a C# function in Azure from the command line](../azure-functions/how-to-create-function-azure-cli.md?pivots=programming-language-csharp#create-a-local-function-project-and-function)).
42+
You can do this using **Visual Studio** (for instructions, see [Develop Azure Functions using Visual Studio](../azure-functions/functions-develop-vs.md#create-an-azure-functions-project)), **Visual Studio Code** (for instructions, see [Create a C# function in Azure using Visual Studio Code](../azure-functions/create-first-function-vs-code-csharp.md?tabs=in-process#create-an-azure-functions-project)), or the **Azure CLI** (for instructions, see [Create a C# function in Azure from the command line](../azure-functions/how-to-create-function-azure-cli.md?pivots=programming-language-csharp#create-a-local-code-project-and-function)).
4343

4444
2. Add the following packages to your project (you can use the Visual Studio NuGet package manager, or the [dotnet add package](/dotnet/core/tools/dotnet-add-package) command in a command-line tool).
4545

0 commit comments

Comments
 (0)