This commit is contained in:
Ajay Bhargav Baaskaran 2015-06-09 15:57:09 -07:00
parent a679e87a9b
commit a40d4aef2b
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Diagnostics;
using Microsoft.Framework.DependencyInjection;
namespace ErrorPageMiddlewareWebSite
@ -18,7 +19,7 @@ namespace ErrorPageMiddlewareWebSite
{
app.UseCultureReplacer();
app.UseErrorPage();
app.UseErrorPage(ErrorPageOptions.ShowAll);
app.UseMvc();
}
}