Upgrade from Sitefinity CMS 9.1 and above
If your project is running on Sitefinity CMS 9.1 and above, to upgrade it, perform the following:
- Backup your project and its database.
- Set the target framework version of your project to .NET Framework 4.7.2.
Perform the following:
- Open your project in Visual Studio.
- In the context menu of SitefinityWebApp, click Properties.
- On Application tab, in Target framework dropdown box, select .NET Framework 4.7.2
- Save the changes to your project
- Reinstall all packages:
- In Visual Studio, navigate to Tools » NuGet Package Manager » Package Manager Console.
- Execute the following command: Update-Package -Reinstall
NOTE: You do this, because changing the target framework requires re-installation of all packages.
- In the Package Manager Console, install the latest
Telerik.Sitefinity.All
package using the following command:
Install-Package Telerik.Sitefinity.All
NOTE: With this command you install the latest patch build, if you want to install a specific version you must use the command above followed by -Version
and the version number.
For example, enter Install-Package Telerik.Sitefinity.All -Version 13.0.7322.
NOTE: The BCL dependency used by Sitefinity CMS to integrate Azure search in previous versions is also removed. As a result, you can safely remove the Tools folder under the root of your SitefinityWebApp project.
- In the Package Manager Console, uninstall the following packages and delete the respective assemblies from the project's bin folder:
Telerik.Sitefinity.Thunder
Telerik.Sitefinity.DropboxLibraries
Telerik.Sitefinity.MobileAppBuilder
Telerik.Sitefinity.DAM
Telerik.Sitefinity.EverliveConnector
Telerik.Sitefinity.OpenAccess
- Build your solution.