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/logic-apps/create-single-tenant-workflows-visual-studio-code.md
+2-21Lines changed: 2 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: logic-apps
5
5
ms.suite: integration
6
6
ms.reviewer: estfan, azla
7
7
ms.topic: how-to
8
-
ms.date: 11/01/2022
8
+
ms.date: 11/17/2022
9
9
ms.custom: ignite-fall-2021, engagement-fy23
10
10
11
11
# 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
80
80
81
81
*[C# for Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp), which enables F5 functionality to run your logic app.
82
82
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.
84
84
85
85
* 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.
86
86
@@ -248,25 +248,6 @@ The authoring capability is currently available only in Visual Studio Code, but
248
248
249
249
## Open the workflow definition file in the designer
250
250
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
-
270
251
1. Expand the project folder for your workflow. Open the **workflow.json** file's shortcut menu, and select **Open in Designer**.
271
252
272
253

0 commit comments