Skip to content

Commit 5409324

Browse files
committed
Use lowercase for service name and folder in azure.logicappsstandard extension snippets
1 parent 2b9a5c1 commit 5409324

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

  • cli/azd/extensions/azure.logicappsstandard

cli/azd/extensions/azure.logicappsstandard/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ For example, if your template has a Logic App Standard project with the followin
2525

2626
```
2727
└── src
28-
└── logicApp
28+
└── logicapp
2929
├── .vscode
30-
├── Artifacts
30+
├── artifacts
3131
├── lib
32-
├── SampleWorkflow1
32+
├── workflow1
3333
│ └── workflow.json
34-
├── SampleWorkflow2
34+
├── workflow2
3535
│ └── workflow.json
3636
├── workflow-designtime
3737
├── .funcignore
@@ -44,27 +44,27 @@ Use the following snippet in your `azure.yaml` file to configure the Logic App:
4444

4545
```yaml
4646
services:
47-
logicApp:
48-
project: ./src/logicApp
47+
logicapp:
48+
project: ./src/logicapp
4949
host: function
5050
language: logicappsstandard
5151
```
5252
53-
This will package everything under the `src/logicApp` folder in a .zip file. Because `function` is used as the host, the exclusions in `.funcignore` are respected and only the relevant files are packaged.
53+
This will package everything under the `src/logicapp` folder in a .zip file. Because `function` is used as the host, the exclusions in `.funcignore` are respected and only the relevant files are packaged.
5454

5555
The extension also supports Logic App Standard projects with a .NET 8 or .NET Framework custom code project. For example, if your template has a Logic App Standard project with custom code project following this structure:
5656

5757
```
5858
└── src
59-
└── logicApp
59+
└── logicapp
6060
├── Functions
6161
│ ├── MyFunctions.cs
6262
│ ├── Functions.csproj
6363
│ └── ...
6464
└── Workflows
65-
├── SampleWorkflow1
65+
├── workflow1
6666
│ └── workflow.json
67-
├── SampleWorkflow2
67+
├── workflow2
6868
│ └── workflow.json
6969
├── host.json
7070
└── ...
@@ -74,8 +74,8 @@ You can use the following snippet in your `azure.yaml` file to configure the Log
7474

7575
```yaml
7676
services:
77-
logicAppSample2:
78-
project: ./src/logicApp
77+
logicapp:
78+
project: ./src/logicapp
7979
dist: Workflows
8080
host: function
8181
language: logicappsstandard

0 commit comments

Comments
 (0)