Skip to content

Commit d9bbdbb

Browse files
Merge pull request #219211 from ecfan/functions
Azure Logic Apps: Update support for Functions v4
2 parents 92f9bb7 + 1b9996b commit d9bbdbb

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

articles/logic-apps/create-single-tenant-workflows-visual-studio-code.md

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 11/01/2022
8+
ms.date: 11/17/2022
99
ms.custom: ignite-fall-2021, engagement-fy23
1010

1111
# Customer intent: As a logic apps developer, I want to create a Standard logic app workflow that runs in single-tenant Azure Logic Apps using Visual Studio Code.
@@ -80,7 +80,7 @@ For more information, review the [Azurite documentation](https://github.com/Azur
8080

8181
* [C# for Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp), which enables F5 functionality to run your logic app.
8282

83-
* [Azure Functions Core Tools - 3.x version](https://github.com/Azure/azure-functions-core-tools/releases/tag/3.0.4868) by using the Microsoft Installer (MSI) version, which is `func-cli-X.X.XXXX-x*.msi`. These tools include a version of the same runtime that powers the Azure Functions runtime, which the Azure Logic Apps (Standard) extension uses in Visual Studio Code.
83+
* [Azure Functions Core Tools - 4.x version](https://github.com/Azure/azure-functions-core-tools/releases/tag/4.0.4865) by using the Microsoft Installer (MSI) version, which is `func-cli-X.X.XXXX-x*.msi`. These tools include a version of the same runtime that powers the Azure Functions runtime, which the Azure Logic Apps (Standard) extension uses in Visual Studio Code.
8484

8585
* If you have an installation that's earlier than these versions, uninstall that version first, or make sure that the PATH environment variable points at the version that you download and install.
8686

@@ -248,25 +248,6 @@ The authoring capability is currently available only in Visual Studio Code, but
248248

249249
## Open the workflow definition file in the designer
250250

251-
1. Check the versions that are installed on your computer by running this command:
252-
253-
`..\Users\{yourUserName}\dotnet --list-sdks`
254-
255-
If you have .NET Core SDK 5.x, this version might prevent you from opening the logic app's underlying workflow definition in the designer. Rather than uninstall this version, at your project's root folder, create a **global.json** file that references the .NET Core runtime 3.x version that you have that's later than 3.1.201, for example:
256-
257-
```json
258-
{
259-
"sdk": {
260-
"version": "3.1.8",
261-
"rollForward": "disable"
262-
}
263-
}
264-
```
265-
266-
> [!IMPORTANT]
267-
> Make sure that you explicitly add the **global.json** file in your project's
268-
> root folder from inside Visual Studio Code. Otherwise, the designer won't open.
269-
270251
1. Expand the project folder for your workflow. Open the **workflow.json** file's shortcut menu, and select **Open in Designer**.
271252

272253
![Screenshot that shows Explorer pane and shortcut window for the workflow.json file with "Open in Designer" selected.](./media/create-single-tenant-workflows-visual-studio-code/open-definition-file-in-designer.png)

0 commit comments

Comments
 (0)