Change order of UseBrowserLink method invocation
This commit is contained in:
parent
a68c7241b5
commit
3a4c81dcc9
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -78,10 +78,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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue