Created
January 25, 2020 06:38
-
-
Save kasunkv/06fbc35acf7b87a4b418d6224d0a68be to your computer and use it in GitHub Desktop.
Configure middleware pipeline to use Azure App Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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