Để nâng cấp dự án từ MVC3 lên MVC4, có 2 cách:
Nâng cấp phiên bản của Webpages, MVC, Helper, Razor
App Settings
Bỏ tất cả nội dung trong cặp thẻ compilation
Chuyển từ
Trong Solution Explorer, bạn nhấp phải Project hoặc References, chọn Manage NuGet Packages. Trong cửa sổ bên trái, chọn Online\NuGet official package source, và cập nhật như sau:
Nếu dự án của bạn sử dụng các thư viện khác như Entity Framework, Log4Net thì trong mục Compilation, bạn không được xóa hết, mà phải để lại những dòng Assembly trỏ tới thư viện đang xài.
Chúc các bạn thành công.
Updates:
Cập nhật cách thay đổi file web.config trong thư mục Views
Chỉnh lại ProjectTypeGuid để Visual Studio nhận diện Project là Project MVC4
- Tạo mới dự án MVC4. Copy tất cả các file từ thư mục Controllers, Views, Models và các file trong thư mục Contents… sang Project mới. Cập nhật lại các assembly references nếu cần. Chỉnh sửa lại web.config (những phần bạn đã sửa đổi) cho phù hợp với dự án MVC4.
- Trong dự án MVC3, bạn chỉnh sửa 2 file web.config trong thư mục gốc của Project MVC và web.config trong thư mục Views (và các file web.config khác nếu có), dùng Nuget để cập nhật các library cho MVC4.
Nâng cấp lên ASP.NET MVC
Đầu tiên, bạn chỉnh sửa file Web.config ở thư mục gốc của Project MVC3Nâng cấp phiên bản của Webpages, MVC, Helper, Razor
App Settings
<appSettings>
<add key="webpages:Version" value="1.0.0.0"/>
<add key="ClientValidationEnabled" value="true"/>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>
Sửa thành
<appSettings>
<add key="webpages:Version" value="2.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="PreserveLoginUrl" value="true" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
CompilationBỏ tất cả nội dung trong cặp thẻ compilation
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
</compilation>
sửa thành
<compilation debug="true" targetFramework="4.0" />
Runtime:Chuyển từ
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" /> </dependentAssembly> </assemblyBinding> </runtime>sửa thành
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
Chỉnh sửa Web.Config trong thư mục Views
Ngoài ra, bạn còn phải chỉnh file web.config trong thư mục Views (tương tự chỉnh ở Area nếu bạn có sử dụng)<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
thành
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
Config Sections:
<configSections>
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
</sectionGroup>
</configSections>
thành
<configSections>
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
</sectionGroup>
</configSections>
Chỉnh thẻ Pages (thường nằm ở dòng 40-41)
<pages
validateRequest="false"
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<controls>
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls>
</pages>
thành
<pages
validateRequest="false"
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<controls>
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls>
</pages>
Nâng cấp library từ MVC3 tới MVC4
Mở file {projectName}.csproj, tìm đến dòng chứa phần tử ProjectTypeGuids, thay giá trị {E53F8FEA-EAE0-44A6-8774-FFD645390401} bằng giá trị {E3E379DF-F4C6-4180-9B81-6769533ABE47}.Trong Solution Explorer, bạn nhấp phải Project hoặc References, chọn Manage NuGet Packages. Trong cửa sổ bên trái, chọn Online\NuGet official package source, và cập nhật như sau:
- ASP.NET MVC 4 (Tùy chọn)
- jQuery, jQuery Validation and jQuery UI (Tùy chọn)
- Entity Framework (Tùy chọn)
- Modernizr
Nếu dự án của bạn sử dụng các thư viện khác như Entity Framework, Log4Net thì trong mục Compilation, bạn không được xóa hết, mà phải để lại những dòng Assembly trỏ tới thư viện đang xài.
Kết luận
Việc nâng cấp khá dễ dàng nhưng bản nâng cấp này chưa hoàn thiện vì chưa cập nhật đầy đủ các tính năng mới của MVC 4 như Web API, Bundling và Minification… Để nâng cấp toàn vẹn, bạn dựa vào nuget để thêm các thư viện cần thiết và tham khảo một số đoạn code trong template MVC4.Chúc các bạn thành công.
Updates:
Cập nhật cách thay đổi file web.config trong thư mục Views
Chỉnh lại ProjectTypeGuid để Visual Studio nhận diện Project là Project MVC4
Nhatkyhoctap's blog
Tham khảo:
Nhận xét
Đăng nhận xét