Skip to content

Commit cdb0a54

Browse files
update
1 parent e38c368 commit cdb0a54

11 files changed

+11
-11
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Add the following key-values to the App Configuration store and leave **Label**
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Azure Functions support running [in-process](../azure-functions/functions-dotnet
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:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ You use the [.NET command-line interface (CLI)](/dotnet/core/tools/) to create a
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:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ In the previous code, you're manually saving an instance of `IConfigurationRefre
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:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Add the following key-value to the App Configuration store and leave **Label** a
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ If you build locally, download and install the [Azure CLI](/cli/azure/install-az
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)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ This project will use [dependency injection in .NET Azure Functions](../azure-fu
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:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Add the following key-value to the App Configuration store and leave **Label** a
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
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:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ This project will use [dependency injection in .NET Azure Functions](../azure-fu
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:

0 commit comments

Comments
 (0)