Change order of UseBrowserLink method invocation
This commit is contained in:
parent
529ef02290
commit
af23185c06
|
|
@ -110,10 +110,10 @@ namespace Company.WebApplication1
|
|||
{
|
||||
if (env.IsDevelopment())
|
||||
{
|
||||
app.UseDeveloperExceptionPage();
|
||||
#if (UseBrowserLink)
|
||||
app.UseBrowserLink();
|
||||
#endif
|
||||
app.UseDeveloperExceptionPage();
|
||||
#if (IndividualLocalAuth)
|
||||
app.UseDatabaseErrorPage();
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -84,10 +84,10 @@ namespace Company.WebApplication1
|
|||
{
|
||||
if (env.IsDevelopment())
|
||||
{
|
||||
app.UseDeveloperExceptionPage();
|
||||
#if (UseBrowserLink)
|
||||
app.UseBrowserLink();
|
||||
#endif
|
||||
app.UseDeveloperExceptionPage();
|
||||
#if (IndividualLocalAuth)
|
||||
app.UseDatabaseErrorPage();
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue