We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8079b53 + 4cf9e95 commit af521cfCopy full SHA for af521cf
articles/azure-app-configuration/quickstart-feature-flag-aspnet-core.md
@@ -138,15 +138,27 @@ dotnet new mvc --no-https --output TestFeatureFlags
138
}
139
```
140
#### [.NET Core 3.x](#tab/core3x)
141
-
+
142
+ Add the following code:
143
```csharp
144
public void ConfigureServices(IServiceCollection services)
145
{
146
services.AddControllersWithViews();
147
+ services.AddAzureAppConfiguration();
148
services.AddFeatureManagement();
149
150
151
152
+ And then add below:
153
154
+ ```csharp
155
+ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
156
+ {
157
+ // ...
158
+ app.UseAzureAppConfiguration();
159
+ }
160
+ ```
161
162
#### [.NET Core 2.x](#tab/core2x)
163
164
0 commit comments