Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Last active May 23, 2022 16:20
Embed
What would you like to do?
ssms-ps Api Program ConfigureAppConfiguration
builder.WebHost.ConfigureAppConfiguration(
c => {
c.AddSystemsManager(source =>{
source.Path = "/testapp";
source.ReloadAfter =
TimeSpan.FromMinutes(10);
});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment