Skip to content

Commit 6d25be8

Browse files
Merge pull request #249270 from ggailey777/quickstarts
[Functions] Core Tools team tech review fixes
2 parents 9b517fd + 932515f commit 6d25be8

File tree

2 files changed

+55
-60
lines changed

2 files changed

+55
-60
lines changed

articles/azure-functions/functions-core-tools-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ When you supply `<PROJECT_FOLDER>`, the project is created in a new folder with
4747
| **`--model`** | Sets the desired programming model for a target language when more than one model is available. Supported options are `V1` and `V2` for Python and `V3` and `V4` for Node.js. For more information, see the [Python developer guide](functions-reference-python.md#programming-model) and the [Node.js developer guide](functions-reference-node.md), respectively. |
4848
| **`--source-control`** | Controls whether a git repository is created. By default, a repository isn't created. When `true`, a repository is created. |
4949
| **`--worker-runtime`** | Sets the language runtime for the project. Supported values are: `csharp`, `dotnet`, `dotnet-isolated`, `javascript`,`node` (JavaScript), `powershell`, `python`, and `typescript`. For Java, use [Maven](functions-reference-java.md#create-java-functions). To generate a language-agnostic project with just the project files, use `custom`. When not set, you're prompted to choose your runtime during initialization. |
50-
| **`--target-framework`** | Sets the target framework for the function app project. Valid only with `--worker-runtime dotnet-isolated`. Supported values are: `net6.0` (default), `net7.0`, and `net48`. |
50+
| **`--target-framework`** | Sets the target framework for the function app project. Valid only with `--worker-runtime dotnet-isolated`. Supported values are: `net6.0` (default), `net7.0`, and `net48` (.NET Framework 4.8). |
5151
|
5252

5353
> [!NOTE]
@@ -96,7 +96,7 @@ To learn more, see [Create a function](functions-run-local.md#create-func).
9696

9797
*Version 1.x only.*
9898

99-
Enables you to invoke a function directly, which is similar to running a function using the **Test** tab in the Azure portal. This action is only supported in version 1.x. For later versions, use `func start` and [call the function endpoint directly](functions-run-local.md#pass-data-to-local-functions).
99+
Enables you to invoke a function directly, which is similar to running a function using the **Test** tab in the Azure portal. This action is only supported in version 1.x. For later versions, use `func start` and [call the function endpoint directly](functions-run-local.md#run-a-local-function).
100100

101101
```command
102102
func run
@@ -148,7 +148,7 @@ func start
148148
| **`--timeout`** | The timeout for the Functions host to start, in seconds. Default: 20 seconds.|
149149
| **`--useHttps`** | Bind to `https://localhost:{port}` rather than to `http://localhost:{port}`. By default, this option creates a trusted certificate on your computer.|
150150

151-
With the project running, you can [verify individual function endpoints](functions-run-local.md#pass-data-to-local-functions).
151+
With the project running, you can [verify individual function endpoints](functions-run-local.md#run-a-local-function).
152152

153153
# [v1.x](#tab/v1)
154154

0 commit comments

Comments
 (0)