Skip to content

Commit b8d8f95

Browse files
committed
Tech review edits.
1 parent 1e04e4f commit b8d8f95

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

articles/azure-app-configuration/integrate-ci-cd-pipeline.md

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -65,53 +65,53 @@ If you build locally, download and install the [Azure CLI](/cli/azure/install-az
6565

6666
1. Set an environment variable named *ConnectionString*, and set it to the access key to your App Configuration store.
6767

68-
#### [Windows command prompt](#tab/windowscommandprompt)
69-
70-
To build and run the app locally using the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
71-
72-
```console
73-
setx ConnectionString "connection-string-of-your-app-configuration-store"
74-
```
75-
76-
### [PowerShell](#tab/powershell)
77-
78-
If you use Windows PowerShell, run the following command:
79-
80-
```powershell
81-
$Env:ConnectionString = "connection-string-of-your-app-configuration-store"
82-
```
83-
84-
### [macOS](#tab/unix)
85-
86-
If you use macOS, run the following command:
87-
88-
```console
89-
export ConnectionString='connection-string-of-your-app-configuration-store'
90-
```
91-
92-
### [Linux](#tab/linux)
93-
94-
If you use Linux, run the following command:
95-
96-
```console
97-
export ConnectionString='connection-string-of-your-app-configuration-store'
98-
```
99-
100-
---
68+
#### [Windows command prompt](#tab/windowscommandprompt)
69+
70+
To build and run the app locally using the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
71+
72+
```console
73+
setx ConnectionString "connection-string-of-your-app-configuration-store"
74+
```
75+
76+
### [PowerShell](#tab/powershell)
77+
78+
If you use Windows PowerShell, run the following command:
79+
80+
```powershell
81+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store"
82+
```
83+
84+
### [macOS](#tab/unix)
85+
86+
If you use macOS, run the following command:
87+
88+
```console
89+
export ConnectionString='connection-string-of-your-app-configuration-store'
90+
```
91+
92+
### [Linux](#tab/linux)
93+
94+
If you use Linux, run the following command:
95+
96+
```console
97+
export ConnectionString='connection-string-of-your-app-configuration-store'
98+
```
99+
100+
---
101101

102-
2. To build the app by using the .NET Core CLI, run the following command in the command shell:
102+
1. To build the app by using the .NET Core CLI, run the following command in the command shell:
103103

104104
```console
105105
dotnet build
106106
```
107107

108-
3. After the build completes successfully, run the following command to run the web app locally:
108+
1. After the build completes successfully, run the following command to run the web app locally:
109109

110110
```console
111111
dotnet run
112112
```
113113

114-
4. Open a browser window and go to `http://localhost:5000`, which is the default URL for the web app hosted locally.
114+
1. Open a browser window and go to `http://localhost:5000`, which is the default URL for the web app hosted locally.
115115

116116
:::image type="content" source="./media/quickstarts/aspnet-core-app-launch-local.png" alt-text="Screenshot that shows Quickstart app launch local page.":::
117117

0 Bytes
Loading

0 commit comments

Comments
 (0)