Change order of UseBrowserLink method invocation

This commit is contained in:
Scott Addie 2017-10-02 22:18:54 -05:00 committed by Steve Sanderson
parent 529ef02290
commit af23185c06
2 changed files with 2 additions and 2 deletions

View File

@ -110,10 +110,10 @@ namespace Company.WebApplication1
{ {
if (env.IsDevelopment()) if (env.IsDevelopment())
{ {
app.UseDeveloperExceptionPage();
#if (UseBrowserLink) #if (UseBrowserLink)
app.UseBrowserLink(); app.UseBrowserLink();
#endif #endif
app.UseDeveloperExceptionPage();
#if (IndividualLocalAuth) #if (IndividualLocalAuth)
app.UseDatabaseErrorPage(); app.UseDatabaseErrorPage();
#endif #endif

View File

@ -84,10 +84,10 @@ namespace Company.WebApplication1
{ {
if (env.IsDevelopment()) if (env.IsDevelopment())
{ {
app.UseDeveloperExceptionPage();
#if (UseBrowserLink) #if (UseBrowserLink)
app.UseBrowserLink(); app.UseBrowserLink();
#endif #endif
app.UseDeveloperExceptionPage();
#if (IndividualLocalAuth) #if (IndividualLocalAuth)
app.UseDatabaseErrorPage(); app.UseDatabaseErrorPage();
#endif #endif