Skip to content

temilaj/ASP.NET-Core-custom-error-pages

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

ASPNETCore-customErrorPages

Code sample detailing how to create and use custom error pages in ASP.NET Core 1.0. Article detailing the steps to take can be found here

This application consists of:

  • Sample pages using ASP.NET Core MVC
  • Gulp and Bower for managing client-side libraries
  • Theming using Bootstrap

Run & Deploy

restore the .NET core packages described in the package.json, install the npm and bower dependencies,and then update database with the migrations and run the project:

dotnet restore
npm install
bower install
dotnet ef database update
dotnet run

The dotnet restore command first restores the necessary packages required to run the application, the dotnet run command simultaneously re-compiles and runs the kestrel-server.

I would love to hear your feedback