Troubleshooting Guide - Sitefinity/feather GitHub Wiki
##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
- 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
- Open web.config
- 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.
- In Windows Explorer, open the %localappdata%\NuGet\Cache folder.
- Select all files and delete them.