This commit is contained in:
Ajay Bhargav Baaskaran 2015-06-16 11:27:33 -07:00
parent 69e051dab7
commit 4fe3fbabf0
1 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@
// 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
@ -19,7 +18,7 @@ namespace ErrorPageMiddlewareWebSite
{
app.UseCultureReplacer();
app.UseErrorPage(ErrorPageOptions.ShowAll);
app.UseErrorPage();
app.UseMvc();
}
}