WebGrease是在mvc4中找到的程序集,但是可以像Yahoo.Yui.Compressor一样使用吗?
我想在C#控制台程序中使用webgrease.dll,并将一个javascript字符串压缩到另一个。

    class Program
    {
        static void Main(string[] args)
        {
            Yahoo.Yui.Compressor.JavaScriptCompressor c = new Yahoo.Yui.Compressor.JavaScriptCompressor();
            string s = "function    hello (name)  {  return 'hello '+ name + '!'; }";
            s = c.Compress(s);
            Console.WriteLine(s);
        }
    }

最佳答案

这是可能的,而且非常容易。您可以在Visual Studio文件夹中找到WG.EXE。 WG.EXE实际上是调用相同缩小库的命令行缩小器。您可以从命令行,MSBuild或您选择的任何脚本中使用它来进行缩小。

这是WG小组写的一篇不错的文章,内容涉及如何从命令行使用WG:https://kenhaines.net/webgrease-as-seen-in-visual-studio-2012/

您还可以检查https://webgrease.codeplex.com/documentation

有关详细信息

10-06 00:34