Could not load file or assembly System.Web.Http.WebHost after published to Azure web site Could not load file or assembly System.Web.Http.WebHost after published to Azure web site asp.net asp.net

Could not load file or assembly System.Web.Http.WebHost after published to Azure web site


The dll is missing in the published (deployed environment). That is the reason why it is working in the local i.e. Visual Studio but not in the Azure Website Environment.

Just do Copy Local = true in the properties for the assembly(System.Web.Http.WebHost) and then do a redeploy, it should work fine.

If you get the similar error i.e. some other assembly missing, then make that assembly to copylocal=true and redeploy, repeat this iteratively - if you are unsure of its dependencies.


If you are still looking for an answer, try checking this question thread. It helped me resolve a similar problem.

edit:The solution that helped me was to run Update-Package Microsoft.AspNet.WebApi -reinstall from the NugGet package manager, as suggested by Pathoschild.I then had to delete my .suo file and restart VS, as suggested by Sergey Osypchuk in this thread.


I met the same problem and I resolved it by setting CopyLocal to true for the following libs:

System.Web.Http.dllSystem.Web.Http.WebHost.dllSystem.Net.Http.Formatting.dll

I must add that I use MVC4 and NET 4