Skip to content

Commit f43df80

Browse files
committed
remove method calls, simplify example
1 parent 058d7a9 commit f43df80

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

articles/azure-app-configuration/howto-create-snapshots.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,9 @@ configurationBuilder.AddAzureAppConfiguration(options =>
104104
options.Connect(Environment.GetEnvironmentVariable("ConnectionString"));
105105

106106
// 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");
107+
options.SelectSnapshot("SnapshotName");
108108

109109
// You can use any combination of Select and SelectSnapshot.
110-
options.Select("*");
111-
options.SelectSnapshot("SnapshotName2");
112110
113111
// Other changes to options
114112
});

0 commit comments

Comments
 (0)