Troubleshooting: Resolving Could not load file or assembly '[assemblyname]' Error and Its Dependencies

Could not load file or assembly ā€˜[assemblyname]ā€™ or one of its dependencies

ā€œAn attempt was made to load a program with an incorrect format.ā€ That means that the assembly, which was to be loaded, was in an unexpected format. The format, in this case, refers most likely to 64-bit build of an application being deployed to IIS, which is being run in 32-bits.

By default, Visual Studio uses 32-bit version of IIS Express (Internet Information Services Express ā€“ the free lightweight web server that ships with some Windows versions and is useful for local development with Visual Studio) for your deployments.

If youā€™re building your solution in x64, running it in 32-bit IIS Express wonā€™t work.

In my case, I was indeed building a 64-bit application. Therefore I also had to change the IIS to run in 64-bit version.

Solution: Change the IIS Express to run in 64b 

  1. Youā€™ll need to enable 64-bit IIS Express from VS settings.
  2. Navigate to Visual Studio => Tools => Options => Projects and Solutions => Web Projects
  3. Select ā€œUse the 64 bit version of IIS Express for web sites and projectsā€.
  4. Hit ā€œOKā€ to save your changes. 


Popular Posts