You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -40,7 +40,7 @@ The .NET Feature Management libraries extend the framework with comprehensive fe
40
40
41
41
1. In **Create a new project**, filter on the **Console** project type and click on **Console App (.NET Framework)**. Click **Next**.
42
42
43
-
1. In **Configure your new project**, enter a project name. Under **Framework**, select **.NET Framework 4.7.1** or higher. Click **Create**.
43
+
1. In **Configure your new project**, enter a project name. Under **Framework**, select **.NET Framework 4.8** or higher. Click **Create**.
44
44
45
45
## Connect to an App Configuration store
46
46
@@ -64,13 +64,8 @@ The .NET Feature Management libraries extend the framework with comprehensive fe
64
64
1. Update the `Main` method to connect to App Configuration, specifying the `UseFeatureFlags` option so that feature flags are retrieved. Then display a message if the `Beta` feature flag is enabled.
65
65
66
66
```csharp
67
-
public static void Main(string[] args)
68
-
{
69
-
AsyncMain().Wait();
70
-
}
71
-
72
-
private static async Task AsyncMain()
73
-
{
67
+
public static async Task Main(string[] args)
68
+
{
74
69
IConfigurationRoot configuration = new ConfigurationBuilder()
75
70
.AddAzureAppConfiguration(options =>
76
71
{
@@ -121,4 +116,4 @@ The .NET Feature Management libraries extend the framework with comprehensive fe
121
116
In this quickstart, you created a feature flag in App Configuration and used it with a .NET Framework console app. To learn how to dynamically update feature flags and other configuration values without restarting the application, continue to the next tutorial.
0 commit comments