You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-core-tools-reference.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ When you supply `<PROJECT_FOLDER>`, the project is created in a new folder with
47
47
|**`--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. |
48
48
|**`--source-control`**| Controls whether a git repository is created. By default, a repository isn't created. When `true`, a repository is created. |
49
49
|**`--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). |
51
51
|
52
52
53
53
> [!NOTE]
@@ -96,7 +96,7 @@ To learn more, see [Create a function](functions-run-local.md#create-func).
96
96
97
97
*Version 1.x only.*
98
98
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).
100
100
101
101
```command
102
102
func run
@@ -148,7 +148,7 @@ func start
148
148
|**`--timeout`**| The timeout for the Functions host to start, in seconds. Default: 20 seconds.|
149
149
|**`--useHttps`**| Bind to `https://localhost:{port}` rather than to `http://localhost:{port}`. By default, this option creates a trusted certificate on your computer.|
150
150
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).
0 commit comments