Skip to content

Instantly share code, notes, and snippets.

@gmartinezsan
Last active May 9, 2018 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmartinezsan/94a64550e898880af76c9e0572ffeb77 to your computer and use it in GitHub Desktop.
Save gmartinezsan/94a64550e898880af76c9e0572ffeb77 to your computer and use it in GitHub Desktop.
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseDatabaseErrorPage();
}
else
{
app.UseExceptionHandler("/Error");
}
app.UseAuthentication();
app.UseMvc();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment