Skip to content

Troubleshooting Guide

Mariush Minkov edited this page Jul 15, 2015 · 5 revisions

##Could not load assembly error

The current version of Feather is built against Sitefinity 7.3.5600. If you are running a newer version of Sitefinity, you may get a Could not load file or assembly error. To avoid this, you need to configure binding redirects

  1. Go to the bin directory of your project and check the file version of Telerik.Sitefinity.dll. It should be something like 7.3.56xx
  2. Open web.config
  3. Add the following to the assemblyBinding node:
      <dependentAssembly>
            <assemblyIdentity name="Telerik.Sitefinity.Services.Events" publicKeyToken="b28c218413bdf563" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-7.3.56xx.0" newVersion="7.3.56xx.0" />
      </dependentAssembly>

NOTE: Replace xx with the numbers from the version in point 1 and add a binding redirect for each assembly, which could not be loaded.

Feather module won't install successfully

Clear the NuGet cache files.

  1. In Windows Explorer, open the %localappdata%\NuGet\Cache folder.
  2. Select all files and delete them.
Clone this wiki locally