Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Telerik.Windows.Controls.dll
  • Telerik.Windows.Data.dll
  • Telerik.Windows.Documents.dll
  • Telerik.Windows.Documents.FormatProviders.Html.dll
  • Telerik.Windows.Documents.FormatProviders.OpenXml.dll
  • Telerik.Windows.Documents.FormatProviders.Rtf.dll
  • Telerik.Windows.RadUploadHandler.dll


Assemblies That Need to be Added

The following assemblies are additional assemblies that are needed for classic e-Business Telerik Upgrade and need to be downloaded from telerik Site and added in the bin directory. 

Updating web.config

New required entries in the application config file must be manually added to web.config for existing sites. There are two common types of entries to account for with every version upgrade:  new appSettings entries and new binding redirects. These entries are documented in the general release notes for the core upgrade, as they typically apply to all products that are being upgraded. If you are upgrading your site from more than one version of Aptify, you will need to consult the documentation for those releases to understand all entries that potentially need to be added. 

  1. Whether you have done an OR sync on your e-Business bin or not, you should change the .NET framework

...

  1. to 4.8. Search for "targetFramework" in the web.config and update it to target .NET 4.8, like this: 

<compilation debug="true" targetFramework="4.8">


2. Update the web config to update the binding redirect to the 2020 version:


<runtime>

    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

      <dependentAssembly>

        <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121FAE78165BA3D4" culture="neutral" />

        <bindingRedirect oldVersion="2015.2.623.40" newVersion="2020.2.617.45" />

      </dependentAssembly>

    </assemblyBinding>

  </runtime>

3.  Add the following key 

<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />

4.Save and close your web.config.

...