Skip to content

Commit e38c368

Browse files
perserve quote
1 parent fa74921 commit e38c368

11 files changed

+34
-34
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-aspnet-netfx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,12 @@ Add the following key-values to the App Configuration store and leave **Label**
164164

165165
If you use the Windows command prompt, run the following command:
166166
```console
167-
setx ConnectionString <connection-string-of-your-app-configuration-store>
167+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
168168
```
169169

170170
If you use Windows PowerShell, run the following command:
171171
```powershell
172-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
172+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
173173
```
174174

175175
1. Restart Visual Studio to allow the change to take effect.

articles/azure-app-configuration/enable-dynamic-configuration-azure-functions-csharp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,19 +184,19 @@ Azure Functions support running [in-process](../azure-functions/functions-dotnet
184184
1. Set an environment variable named **ConnectionString**, and set it to the access key to your app configuration store. If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
185185

186186
```console
187-
setx ConnectionString <connection-string-of-your-app-configuration-store>
187+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
188188
```
189189

190190
If you use Windows PowerShell, run the following command:
191191

192192
```powershell
193-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
193+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
194194
```
195195

196196
If you use macOS or Linux, run the following command:
197197

198198
```console
199-
export ConnectionString=<connection-string-of-your-app-configuration-store>
199+
export ConnectionString='<connection-string-of-your-app-configuration-store>'
200200
```
201201

202202
2. To test your function, press F5. If prompted, accept the request from Visual Studio to download and install **Azure Functions Core (CLI)** tools. You might also need to enable a firewall exception so that the tools can handle HTTP requests.

articles/azure-app-configuration/enable-dynamic-configuration-dotnet-background-service.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ You use the [.NET command-line interface (CLI)](/dotnet/core/tools/) to create a
177177
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
178178
179179
```cmd
180-
setx Endpoint <endpoint-of-your-app-configuration-store>
180+
setx Endpoint "<endpoint-of-your-app-configuration-store>"
181181
```
182182
183183
If you use PowerShell, run the following command:
@@ -189,7 +189,7 @@ You use the [.NET command-line interface (CLI)](/dotnet/core/tools/) to create a
189189
If you use macOS or Linux, run the following command:
190190
191191
```bash
192-
export Endpoint=<endpoint-of-your-app-configuration-store>
192+
export Endpoint='<endpoint-of-your-app-configuration-store>'
193193
```
194194
195195
### [Connection string](#tab/connection-string)
@@ -198,19 +198,19 @@ You use the [.NET command-line interface (CLI)](/dotnet/core/tools/) to create a
198198
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
199199
200200
```cmd
201-
setx ConnectionString <connection-string-of-your-app-configuration-store>
201+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
202202
```
203203
204204
If you use PowerShell, run the following command:
205205
206206
```powershell
207-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
207+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
208208
```
209209
210210
If you use macOS or Linux, run the following command:
211211
212212
```bash
213-
export ConnectionString=<connection-string-of-your-app-configuration-store>
213+
export ConnectionString='<connection-string-of-your-app-configuration-store>'
214214
```
215215
---
216216

articles/azure-app-configuration/enable-dynamic-configuration-dotnet-core.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,19 +117,19 @@ In the previous code, you're manually saving an instance of `IConfigurationRefre
117117
1. Set an environment variable named **ConnectionString**, and set it to the access key to your App Configuration store. If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
118118

119119
```console
120-
setx ConnectionString <connection-string-of-your-app-configuration-store>
120+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
121121
```
122122

123123
If you use Windows PowerShell, run the following command:
124124

125125
```powershell
126-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
126+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
127127
```
128128

129129
If you use macOS or Linux, run the following command:
130130

131131
```console
132-
export ConnectionString=<connection-string-of-your-app-configuration-store>
132+
export ConnectionString='<connection-string-of-your-app-configuration-store>'
133133
```
134134

135135
1. Run the following command to build the console app:

articles/azure-app-configuration/enable-dynamic-configuration-dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ Add the following key-value to the App Configuration store and leave **Label** a
114114

115115
If you use the Windows command prompt, run the following command:
116116
```console
117-
setx ConnectionString <connection-string-of-your-app-configuration-store>
117+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
118118
```
119119

120120
If you use Windows PowerShell, run the following command:
121121
```powershell
122-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
122+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
123123
```
124124

125125
1. Restart Visual Studio to allow the change to take effect.

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,31 +70,31 @@ If you build locally, download and install the [Azure CLI](/cli/azure/install-az
7070
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:
7171

7272
```console
73-
setx ConnectionString <connection-string-of-your-app-configuration-store>
73+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
7474
```
7575

7676
### [PowerShell](#tab/powershell)
7777

7878
If you use Windows PowerShell, run the following command:
7979

8080
```powershell
81-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
81+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
8282
```
8383

8484
### [macOS](#tab/unix)
8585

8686
If you use macOS, run the following command:
8787

8888
```console
89-
export ConnectionString=<connection-string-of-your-app-configuration-store>
89+
export ConnectionString='<connection-string-of-your-app-configuration-store>'
9090
```
9191

9292
### [Linux](#tab/linux)
9393

9494
If you use Linux, run the following command:
9595

9696
```console
97-
export ConnectionString=<connection-string-of-your-app-configuration-store>
97+
export ConnectionString='<connection-string-of-your-app-configuration-store>'
9898
```
9999

100100
---

articles/azure-app-configuration/quickstart-azure-functions-csharp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,19 +183,19 @@ This project will use [dependency injection in .NET Azure Functions](../azure-fu
183183
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
184184

185185
```cmd
186-
setx ConnectionString <connection-string-of-your-app-configuration-store>
186+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
187187
```
188188

189189
If you use PowerShell, run the following command:
190190

191191
```powershell
192-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
192+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
193193
```
194194

195195
If you use macOS or Linux, run the following command:
196196

197197
```bash
198-
export ConnectionString=<connection-string-of-your-app-configuration-store>
198+
export ConnectionString='<connection-string-of-your-app-configuration-store>'
199199
```
200200

201201
2. Press F5 to test your function. If prompted, accept the request from Visual Studio to download and install **Azure Functions Core (CLI)** tools. You might also need to enable a firewall exception so that the tools can handle HTTP requests.

articles/azure-app-configuration/quickstart-dotnet-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ Add the following key-value to the App Configuration store and leave **Label** a
9292
If you use the Windows command prompt, run the following command:
9393

9494
```console
95-
setx ConnectionString <connection-string-of-your-app-configuration-store>
95+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
9696
```
9797

9898
If you use Windows PowerShell, run the following command:
9999

100100
```powershell
101-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
101+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
102102
```
103103

104104
1. Restart Visual Studio to allow the change to take effect.

articles/azure-app-configuration/quickstart-dotnet-core-app.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
119119
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
120120
121121
```cmd
122-
setx Endpoint <endpoint-of-your-app-configuration-store>
122+
setx Endpoint "<endpoint-of-your-app-configuration-store>"
123123
```
124124
125125
If you use PowerShell, run the following command:
@@ -131,7 +131,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
131131
If you use macOS or Linux, run the following command:
132132
133133
```bash
134-
export Endpoint=<endpoint-of-your-app-configuration-store>
134+
export Endpoint='<endpoint-of-your-app-configuration-store>'
135135
```
136136
137137
### [Connection string](#tab/connection-string)
@@ -140,19 +140,19 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
140140
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
141141
142142
```cmd
143-
setx ConnectionString <connection-string-of-your-app-configuration-store>
143+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
144144
```
145145
146146
If you use PowerShell, run the following command:
147147
148148
```powershell
149-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
149+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
150150
```
151151
152152
If you use macOS or Linux, run the following command:
153153
154154
```bash
155-
export ConnectionString=<connection-string-of-your-app-configuration-store>
155+
export ConnectionString='<connection-string-of-your-app-configuration-store>'
156156
```
157157
---
158158

articles/azure-app-configuration/quickstart-feature-flag-azure-functions-csharp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,19 +171,19 @@ This project will use [dependency injection in .NET Azure Functions](../azure-fu
171171
1. Set an environment variable named **ConnectionString**, where the value is the connection string you retrieved earlier in your App Configuration store under **Access Keys**. If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
172172

173173
```cmd
174-
setx ConnectionString <connection-string-of-your-app-configuration-store>
174+
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
175175
```
176176

177177
If you use Windows PowerShell, run the following command:
178178

179179
```azurepowershell
180-
$Env:ConnectionString = <connection-string-of-your-app-configuration-store>
180+
$Env:ConnectionString = "connection-string-of-your-app-configuration-store>"
181181
```
182182

183183
If you use macOS or Linux, run the following command:
184184

185185
```bash
186-
export ConnectionString=<connection-string-of-your-app-configuration-store>
186+
export ConnectionString='<connection-string-of-your-app-configuration-store>'
187187
```
188188

189189
1. Press F5 to test your function. If prompted, accept the request from Visual Studio to download and install **Azure Functions Core (CLI)** tools. You might also need to enable a firewall exception so that the tools can handle HTTP requests.

0 commit comments

Comments
 (0)