Tuesday, July 24, 2012

Migrate SharePoint 2010 project to SharePoint 2013 Beta

Scenario: I was tasked with migrating one of the SharePoint2010 project to SharePoint 2013 Beta. Basically to deploy the SharaPoint2010 Project developed in VS2010 on SharePoint2013 Beta and make it work. Below are some of the issues I faced while doing this

Solution:
Issue1: When I deployed the 2010 solution(.wsp) on 2013. I observed that custom Central Admin pages were not showing up.

Resolution: Add the DDLs that central admin pages are referencing to GAC
From visual studio solution explorer, double click on Package.package --> Click on "Advanced" button -->click "Add" button -->Add Existing Assembly
Browse to the required Sharepoint Dlls refrenced in the pages that are not getting displayed. Then build the solution and deploy new WSP and my custom central admin pages are getting displayed without any issue

Issue2: Custom webparts in 2010 were not showing up in 2013

Resolution: SharePoint2013 beta version has both 14 hive and 15 hive. So If I deploy the solution to 15 hive the webparts were not showing up. I then deployed it to 14 hive and the webparts are getting added without any issue.
The reason webparts were not showing up when deployed to 15 hive was because the webpart was loading a user control which were referencing version 14 bits\assemblies.

No comments:

Post a Comment