Skip to content

Commit 5cc3cb0

Browse files
committed
Remove tab
1 parent ffd2b83 commit 5cc3cb0

File tree

2 files changed

+3
-28
lines changed

2 files changed

+3
-28
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
@@ -7,7 +7,7 @@ ms.service: azure-app-configuration
77
ms.devlang: csharp
88
ms.custom: devx-track-csharp, devx-track-dotnet
99
ms.topic: tutorial
10-
ms.date: 03/20/2023
10+
ms.date: 03/19/2025
1111
ms.author: zhenlwa
1212
#Customer intent: I want to dynamically update my ASP.NET web application (.NET Framework) to use the latest configuration data in App Configuration.
1313
---

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

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: azure-app-configuration
99
ms.devlang: csharp
1010
ms.custom: devx-track-csharp, devx-track-dotnet
1111
ms.topic: tutorial
12-
ms.date: 02/20/2024
12+
ms.date: 03/19/2025
1313
ms.author: malev
1414
#Customer intent: I want to dynamically update my .NET app to use the latest configuration data in App Configuration.
1515
---
@@ -118,10 +118,7 @@ In the previous code, you're manually saving an instance of `IConfigurationRefre
118118

119119
## Build and run the app locally
120120

121-
1. Set an environment variable.
122-
123-
### [Microsoft Entra ID (recommended)](#tab/entra-id)
124-
Set an environment variable named **Endpoint** to the endpoint of your App Configuration store found under the *Overview* of your store in the Azure portal.
121+
1. Set an environment variable named **Endpoint** to the endpoint of your App Configuration store found under the *Overview* of your store in the Azure portal.
125122

126123
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
127124

@@ -141,28 +138,6 @@ In the previous code, you're manually saving an instance of `IConfigurationRefre
141138
export Endpoint='<endpoint-of-your-app-configuration-store>'
142139
```
143140

144-
### [Connection string](#tab/connection-string)
145-
Set an environment variable named **ConnectionString** to the read-only connection string of your App Configuration store found under **Access settings** of your store in the Azure portal.
146-
147-
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
148-
149-
```cmd
150-
setx ConnectionString "<connection-string-of-your-app-configuration-store>"
151-
```
152-
153-
If you use PowerShell, run the following command:
154-
155-
```powershell
156-
$Env:ConnectionString = "<connection-string-of-your-app-configuration-store>"
157-
```
158-
159-
If you use macOS or Linux, run the following command:
160-
161-
```bash
162-
export ConnectionString='<connection-string-of-your-app-configuration-store>'
163-
```
164-
---
165-
166141
1. Run the following command to build the console app:
167142

168143
```console

0 commit comments

Comments
 (0)