TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
MVC5 Vs MVC6 in ASP.NET
Rathrola Prem Kumar
Dec 20, 2015
51.1
k
0
5
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This blog show the difference between MVC5 Vs MVC6 in ASP.NET.
.NET framework is now part of your project and you can point to multiple frameworks at the same. Like in the figure its pointing to 4.5 framework ( full framework) and also to .NET core ( which is cross platform depending what you choose).
Global.asax is replaced by startup.cs which is more light weight and customizable.
Web.config configuration will not go in Config.json.
As a developer we have been adding references using our favorite add reference , you can now also add in project.json and your project will reference it automatically and also vice versa.
They have given a special wwwroot folder which will store static files of your project. Any files including HTML files, CSS files, image files, and JavaScript files which are sent to the users browser should be stored inside this folder.
There is a dependencies node which shows which JavaScript files have been used in your project.
MVC5 Vs MVC6 in ASP.NET
Next Recommended Reading
Main Difference Between ViewData Vs ViewBag Vs TempData In ASP.NET MVC