Skip to content

Commit 944cb51

Browse files
committed
Update README.md
1 parent f540900 commit 944cb51

File tree

6 files changed

+68
-48
lines changed
  • samples
    • Aliencube.AzureFunctions.FunctionAppV1IoC
    • Aliencube.AzureFunctions.FunctionAppV1Static
    • Aliencube.AzureFunctions.FunctionAppV2IoC
    • Aliencube.AzureFunctions.FunctionAppV2Static
    • Aliencube.AzureFunctions.FunctionAppV3IoC
    • Aliencube.AzureFunctions.FunctionAppV3Static

6 files changed

+68
-48
lines changed

samples/Aliencube.AzureFunctions.FunctionAppV1IoC/README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,20 @@
22

33
## Getting Started ##
44

5-
### Install Open API Templates ###
5+
### Restore NuGet Packages ###
66

7-
Run the following script to install the Open API templates:
7+
Run the following command to restore all necessary NuGet packages into the project.
88

9-
```powershell
10-
# PowerShell
11-
../../scripts/Install-OpenApiHttpTriggerTemplates.ps1 `
12-
-ProjectPath ./ `
13-
-Namespace Aliencube.AzureFunctions.FunctionAppV1IoC `
14-
-IsVersion1
9+
```bash
10+
dotnet restore .
1511
```
1612

1713

1814
### Run Function App ###
1915

2016
Run the Function app locally.
2117

22-
```powershell
18+
```bash
2319
func start
2420
```
2521

samples/Aliencube.AzureFunctions.FunctionAppV1Static/README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,20 @@
22

33
## Getting Started ##
44

5-
### Install Open API Templates ###
5+
### Restore NuGet Packages ###
66

7-
Run the following script to install the Open API templates:
7+
Run the following command to restore all necessary NuGet packages into the project.
88

9-
```powershell
10-
# PowerShell
11-
../../scripts/Install-OpenApiHttpTriggerTemplates.ps1 `
12-
-ProjectPath ./ `
13-
-Namespace Aliencube.AzureFunctions.FunctionAppV1Static `
14-
-IsVersion1
9+
```bash
10+
dotnet restore .
1511
```
1612

1713

1814
### Run Function App ###
1915

2016
Run the Function app locally.
2117

22-
```powershell
18+
```bash
2319
func start
2420
```
2521

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Aliencube.AzureFunctions.FunctionAppV2IoC #
2+
3+
## Getting Started ##
4+
5+
### Restore NuGet Packages ###
6+
7+
Run the following command to restore all necessary NuGet packages into the project.
8+
9+
```bash
10+
dotnet restore .
11+
```
12+
13+
14+
### Run Function App ###
15+
16+
Run the Function app locally.
17+
18+
```bash
19+
func start
20+
```
21+
22+
Open a web browser and visit the page.
23+
24+
```txt
25+
http://localhost:7071/api/swagger/ui
26+
```
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Aliencube.AzureFunctions.FunctionAppV2Static #
2+
3+
## Getting Started ##
4+
5+
### Restore NuGet Packages ###
6+
7+
Run the following command to restore all necessary NuGet packages into the project.
8+
9+
```bash
10+
dotnet restore .
11+
```
12+
13+
14+
### Run Function App ###
15+
16+
Run the Function app locally.
17+
18+
```bash
19+
func start
20+
```
21+
22+
Open a web browser and visit the page.
23+
24+
```txt
25+
http://localhost:7071/api/swagger/ui
26+
```

samples/Aliencube.AzureFunctions.FunctionAppV3IoC/README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,14 @@
22

33
## Getting Started ##
44

5-
### Install Open API Templates ###
5+
### Restore NuGet Packages ###
66

7-
Run the following script to install the Open API templates:
8-
9-
```powershell
10-
# PowerShell
11-
../../scripts/Install-OpenApiHttpTriggerTemplates.ps1 `
12-
-ProjectPath ./ `
13-
-Namespace Install.AzureFunctions.FunctionAppV3IoC
14-
```
7+
Run the following command to restore all necessary NuGet packages into the project.
158

169
```bash
17-
# Bash script
18-
../../scripts/Download-OpenApiHttpTriggerTemplates.sh \
19-
. \
20-
Aliencube.AzureFunctions.FunctionAppV3IoC
10+
dotnet restore .
2111
```
2212

23-
> You may need to run `chmod +x ../../scripts/Download-OpenApiHttpTriggerTemplates.sh` command.
24-
2513

2614
### Run Function App ###
2715

samples/Aliencube.AzureFunctions.FunctionAppV3Static/README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,14 @@
22

33
## Getting Started ##
44

5-
### Install Open API Templates ###
5+
### Restore NuGet Packages ###
66

7-
Run the following script to install the Open API templates:
8-
9-
```powershell
10-
# PowerShell
11-
../../scripts/Install-OpenApiHttpTriggerTemplates.ps1 `
12-
-ProjectPath ./ `
13-
-Namespace Aliencube.AzureFunctions.FunctionAppV3Static
14-
```
7+
Run the following command to restore all necessary NuGet packages into the project.
158

169
```bash
17-
# Bash script
18-
../../scripts/Install-OpenApiHttpTriggerTemplates.sh \
19-
. \
20-
Aliencube.AzureFunctions.FunctionAppV3Static
10+
dotnet restore .
2111
```
2212

23-
> You may need to run `chmod +x ../../scripts/Download-OpenApiHttpTriggerTemplates.sh` command.
24-
2513

2614
### Run Function App ###
2715

0 commit comments

Comments
 (0)