How to integrate the Google Closure compiler as a build step in Visual Studio 2010

Is there any link or tutorial for this? And if possible, create a javascript file only if the file is modified.

+7
source share
1 answer

You might be able to try the following:

http://closurecompiler.codeplex.com/documentation ,

But I could not get it to work and as a result I wrote a batch file and connected it to the post-build process in the project properties. I was pleased with this solution because it allows me to easily (and in a more standardized way) configure the closing parameters. And any errors from it are reported to you whenever you build.

+3
source

All Articles