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
# 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.
11
11
---
@@ -1239,9 +1239,9 @@ Through the Azure portal, you can add blank workflows to a Standard logic app re
1239
1239
1240
1240
To debug a stateless workflow more easily, you can enable the run history for that workflow, and then disable the run history when you're done. Follow these steps for Visual Studio Code, or if you're working in the Azure portal, see [Create single-tenant based workflows in the Azure portal](create-single-tenant-workflows-azure-portal.md#enable-run-history-stateless).
1241
1241
1242
-
1. In your Visual Studio Code project, expand the folder that's named **workflow-designtime**. Open the **local.settings.json** file.
1242
+
1. In your Visual Studio Code project, at the root folder level, open the **local.settings.json** file.
1243
1243
1244
-
1. Add the `Workflows.{yourWorkflowName}.operationOptions` property and set the value to `WithStatelessRunHistory`, for example:
1244
+
1. Add the `Workflows.{yourWorkflowName}.operationOptions` property, and set the value to `WithStatelessRunHistory`, for example:
1245
1245
1246
1246
**Windows**
1247
1247
@@ -1270,6 +1270,8 @@ To debug a stateless workflow more easily, you can enable the run history for th
1270
1270
}
1271
1271
```
1272
1272
1273
+
1. In the project folder named **workflow-designtime**, open the **local.settings.json** file, and make the same change.
1274
+
1273
1275
1. To disable the run history when you're done, either set the `Workflows.{yourWorkflowName}.OperationOptions`property to `None`, or delete the property and its value.
0 commit comments