Skip to content

Commit 57e7ace

Browse files
author
ecfan
committed
Remove content about private modules
1 parent ba4d129 commit 57e7ace

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

articles/logic-apps/add-run-csharp-scripts.md

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ The following list describes some example scenarios where you can use a script h
7878

7979
1. After the action information pane opens, on the **Parameters** tab, in the **Code File** box, update the prepopluated sample code with your own script code.
8080

81-
- At the top of the script, [import the necessary namespaces](#import-namespaces) and [add any required assembly references](#add-assembly-references) as usual. You can also [add private modules](#add-private-modules), if needed.
81+
- At the top of the script, [import the necessary namespaces](#import-namespaces) and [add any required assembly references](#add-assembly-references) as usual.
8282

8383
- Implement the **`Run`** method:
8484

@@ -226,27 +226,6 @@ System.Net.Http.Formatting
226226
Newtonsoft.Json
227227
```
228228

229-
<a name="Add-private-modules"></a>
230-
231-
## Add private modules
232-
233-
You can add and store custom modules at the logic app level by using the **KuduPlus** console in the Azure portal. In your logic app's directory at the root level, **site/wwwroot**, you can add a **Modules** folder that includes another folder with your module's name. In this subfolder, you can add a PowerShell module (.psm1) file. At your logic app's root level, you can also add any PowerShell manifest (.psd1) files that you might want to use, such as a **`requirements.psd1`** file.
234-
235-
To browse your logic app's directory, [follow the same steps to find your script's .csx file in the **KuduPlus** console](#view-script-file).
236-
237-
This example shows a sample logic app folder and file structure:
238-
239-
```text
240-
| Modules
241-
|| HelloWorldModule
242-
||| HelloWorldModule.psm1
243-
||| HelloWorldModule.psd1
244-
| MyLogicApp
245-
|| workflow.json
246-
| host.json
247-
| requirements.psd1
248-
```
249-
250229
<a name="access-trigger-action-outputs"></a>
251230

252231
## Access workflow trigger and action outputs in your script

0 commit comments

Comments
 (0)