-
Notifications
You must be signed in to change notification settings - Fork 25.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrating from ASP.NET MVC5 to MVC6, Part 1 #5
Conversation
Conflicts: docs/index.rst
Add migrating config article as well. Skeleton of auth/identity article can be ignored for now. |
|
||
.. _`Steve Smith`: Author_ | ||
|
||
Migrating from ASP.NET MVC 5 to ASP.NET 5 and MVC 6 requires a few steps to complete, since ASP.NET 5 introduces a number of new concepts. In this article you will learn how to migrate from the ASP.NET MVC 5 Starter Web Project to ASP.NET MVC 6, including initial setup, basic controllers and views, and static content and client side dependencies. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ASP.NET MVC 5 Starter Web Project
ASP.NET MVC 5 Starter Web Project default project template
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and static content
Create the Destination Solution | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
We will begin our migration by creating a new, empty ASP.NET 6 solution. Create a new project in Visual Studio 2015, choose an ASP.NET Web Application, and then choose select the ASP.NET 5 Empty template. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ASP.NET 6 => ASP.NET 5
Let's not use zip files. I prefer to see the sample projects checked in in a samples directory that can be built and referenced. |
This is a good start for an MVC 5 migration doc, but I think there is a bunch of stuff that is different in MVC 6 that we still need to cover:
|
Thanks for the feedback - my plan is to have additional articles to cover the additional MVC 6 features, while keeping this one a bit simpler and shorter. |
Migrating from ASP.NET MVC5 to MVC6, Part 1
conversion work
This is the first article. It was getting long, and there are features of the new MVC 6 starter template that aren't feature complete yet, so I'm breaking it up into a series. In fact, as long as this article is, it might be better broken up already (shifting the configuration of bundling and minification to its own separate article).