Skip to content

Commit 1c81e65

Browse files
committed
Fixing markup
1 parent bee133d commit 1c81e65

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/azure-app-configuration/quickstart-feature-flag-aspnet-core.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Use the [.NET Core command-line interface (CLI)](https://docs.microsoft.com/dotn
4949

5050
Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/app-secrets) to your project. The Secret Manager tool stores sensitive data for development work outside your project tree. This approach helps prevent the accidental sharing of app secrets within source code.
5151

52-
> [!IMPORTANT]
53-
> Significant differences exist between .NET Core 2.x and 3.x. Select the correct syntax based on your environment.
52+
> [!IMPORTANT]
53+
> Significant differences exist between .NET Core 2.x and 3.x. Select the correct syntax based on your environment.
5454
5555
1. Open the *.csproj* file.
5656
1. Add a `UserSecretsId` element as shown in the following example, and replace its value with your own, which typically is a GUID:
@@ -177,8 +177,10 @@ Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/ap
177177
```csharp
178178
public void ConfigureServices(IServiceCollection services)
179179
{
180-
services.AddControllersWithViews(); services.AddFeatureManagement();
180+
services.AddControllersWithViews();
181+
services.AddFeatureManagement();
181182
}
183+
```
182184
---
183185

184186
1. Update the `Configure` method to add a middleware to allow the feature flag values to be refreshed at a recurring interval while the ASP.NET Core web app continues to receive requests.

0 commit comments

Comments
 (0)