How to use webgrease?

It is possible and quite easy. You can find WG.EXE in your Visual Studio folder. WG.EXE is actually the command line minifier that calls the same minification libraries. You can use it from command line, or from MSBuild or from any script of your choice to do the minification.

Here is a good article written by WG team on how to use WG from command line: https://kenhaines.net/webgrease-as-seen-in-visual-studio-2012/

you may also check https://webgrease.codeplex.com/documentation

for detail information


It should be possible - when you include webgrease using NuGet, you also get the "WG" command line tool that does exactly what you are trying to accomplish above. Code for the webgrease dll and the WG utility are available on CodePlex. There are no specific ASP.Net dll references in it.

If you have ILSpy or Reflector have a look in the code for "WebGrease.Program.ProcessJsFileSet" for how to compress Javascript. The class WebGrease.Activities.MinifyJSActivity is the one to use, and you can see that one on CodePlex as well.