Skip to content

Commit ae41175

Browse files
committed
Small fixes
1 parent 2004222 commit ae41175

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,21 +181,21 @@ This project will use [dependency injection in .NET Azure Functions](../azure-fu
181181
1. Set an environment variable named **ConnectionString**, and set it to the access key to your App Configuration store.
182182

183183
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
184-
184+
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-core-app.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
8585
1. Connect to your App Configuration store by calling the `AddAzureAppConfiguration` method in the `Program.cs` file.
8686
8787
### [Microsoft Entra ID](#tab/entra-id)
88-
You use the `DefaultAzureCredential` to authenticate to your App Configuration store. Follow the [instructions](./concept-enable-rbac.md#authentication-with-token-credentials) to assign your credential the **App Configuration Data Reader** role. Be sure to allow sufficient time for the permission to propagate before running your application. You may replace the `DefaultAzureCredential` with another token credential as appropriate.
88+
You use the `DefaultAzureCredential` to authenticate to your App Configuration store. Follow the [instructions](./concept-enable-rbac.md#authentication-with-token-credentials) to assign your credential the **App Configuration Data Reader** role. Be sure to allow sufficient time for the permission to propagate before running your application.
8989
9090
```csharp
9191
var builder = new ConfigurationBuilder();
@@ -119,19 +119,19 @@ 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:
126126
127127
```powershell
128-
$Env:Endpoint = "endpoint-of-your-app-configuration-store"
128+
$Env:Endpoint = "endpoint-of-your-app-configuration-store"
129129
```
130130
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

0 commit comments

Comments
 (0)