Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created January 25, 2020 06:38
Show Gist options
  • Save kasunkv/06fbc35acf7b87a4b418d6224d0a68be to your computer and use it in GitHub Desktop.
Save kasunkv/06fbc35acf7b87a4b418d6224d0a68be to your computer and use it in GitHub Desktop.
Configure middleware pipeline to use Azure App Configuration
namespace MusicStore.Web
{
public class Startup
{
...
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseAzureAppConfiguration();
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment