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.
1 parent 058d7a9 commit f43df80Copy full SHA for f43df80
articles/azure-app-configuration/howto-create-snapshots.md
@@ -104,11 +104,9 @@ configurationBuilder.AddAzureAppConfiguration(options =>
104
options.Connect(Environment.GetEnvironmentVariable("ConnectionString"));
105
106
// Select an existing snapshot by name. This will add all of the key-values from the snapshot to this application's configuration.
107
- options.SelectSnapshot("SnapshotName1");
+ options.SelectSnapshot("SnapshotName");
108
109
// You can use any combination of Select and SelectSnapshot.
110
- options.Select("*");
111
- options.SelectSnapshot("SnapshotName2");
112
113
// Other changes to options
114
});
0 commit comments