Skip to content

Commit 024e972

Browse files
committed
Health check
1 parent 7083859 commit 024e972

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

articles/azure-app-configuration/overview-managed-identity.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ title: Configure managed identities with Azure App Configuration
33
description: Learn how managed identities work in Azure App Configuration and how to configure a managed identity
44
author: maud-lv
55
ms.topic: article
6-
ms.date: 02/25/2020
6+
ms.date: 05/24/2024
77
ms.author: malev
8-
ms.reviewer: lcozzens
98
ms.service: azure-app-configuration
109
ms.custom: devx-track-azurecli
1110
---
@@ -104,6 +103,3 @@ A system-assigned identity can be removed by disabling the feature by using the
104103
105104
> [!div class="nextstepaction"]
106105
> [Create an ASP.NET Core app with Azure App Configuration](quickstart-aspnet-core-app.md)
107-
108-
[az appconfig identity assign]: /cli/azure/appconfig/identity#az_appconfig_identity_assign
109-
[az login]: /cli/azure/reference-index#az_login

articles/azure-app-configuration/powershell-samples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: PowerShell samples
2+
title: Azure App Configuration PowerShell samples
33
description: Learn about the Azure PowerShell sample scripts available for App Configuration.
44
ms.service: azure-app-configuration
55
ms.custom: devx-track-azurepowershell
66
ms.topic: sample
7-
ms.date: 01/19/2023
7+
ms.date: 05/25/2025
88
ms.author: malev
99
author: maud-lv
1010
---

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
---
2-
title: Quickstart for Azure App Configuration with .NET Framework | Microsoft Docs
2+
title: Quickstart for Azure App Configuration with .NET Framework
33
description: In this article, create a .NET Framework app with Azure App Configuration to centralize storage and management of application settings separate from your code.
44
services: azure-app-configuration
55
author: maud-lv
66
ms.service: azure-app-configuration
77
ms.devlang: csharp
88
ms.custom: devx-track-csharp, mode-other, devx-track-dotnet
99
ms.topic: quickstart
10-
ms.date: 02/28/2023
10+
ms.date: 05/24/2024
1111
ms.author: malev
1212
#Customer intent: As a .NET Framework developer, I want to manage all my app settings in one place.
1313
---
1414
# Quickstart: Create a .NET Framework app with Azure App Configuration
1515

1616
There are two ways to incorporate Azure App Configuration into a .NET Framework-based app.
17+
1718
- The configuration builder for App Configuration enables data from App Configuration to be loaded to App Settings. Your app accesses configuration as it always does via `ConfigurationManager`. You don't need to make any code change other than updates to *app.config* or *web.config* files. This quickstart will walk you through this option.
1819
- As is designed by the .NET Framework, the App Settings can only refresh upon application restart. The App Configuration .NET provider is a .NET Standard library. It supports caching and refreshing configuration dynamically without application restart. If the dynamic configuration is essential to you and you are willing to make code changes, see tutorials on how you can implement dynamic configuration updates in a [.NET Framework console app](./enable-dynamic-configuration-dotnet.md) or an [ASP.NET web app](./enable-dynamic-configuration-aspnet-netfx.md).
1920

@@ -86,19 +87,21 @@ Add the following key-value to the App Configuration store and leave **Label** a
8687

8788
## Build and run the app
8889

89-
1. Set an environment variable named **ConnectionString** to the read-only key connection string obtained during your App Configuration store creation.
90+
1. Set an environment variable named **ConnectionString** to the read-only key connection string obtained during your App Configuration store creation.
9091

9192
If you use the Windows command prompt, run the following command:
93+
9294
```console
9395
setx ConnectionString "connection-string-of-your-app-configuration-store"
9496
```
9597

9698
If you use Windows PowerShell, run the following command:
99+
97100
```powershell
98101
$Env:ConnectionString = "connection-string-of-your-app-configuration-store"
99102
```
100103

101-
1. Restart Visual Studio to allow the change to take effect.
104+
1. Restart Visual Studio to allow the change to take effect.
102105

103106
1. Press Ctrl + F5 to build and run the console app. You should see the message from App Configuration outputs in the console.
104107

0 commit comments

Comments
 (0)