Search code examples
c#.netasp.net-mvc-4dllwebgrease

Could not load file or assembly 'WebGrease, Version=1.5.1.25624, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies


I have an MVC4 Web API project. While running the service project I am getting an error

Could not load file or assembly 'WebGrease, Version=1.5.1.25624, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

I have added the WebGrease.dll file and still its coming error

And tried with changing web.config

<bindingRedirect oldVersion="0.0.0.0-1.3.0.0"/>"

And

<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />

Solution

  • Have you tried through NuGet ?

    Install-Package WebGrease -Version 1.5.1
    

    or

    Install-Package WebGrease -Version 1.5.2