asp.net – 如何使用webgrease?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何使用webgrease?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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的好文章http://kenhaines.net/post/2012/06/09/WebGrease-As-seen-in-Visual-Studio-2012.aspx

你也可以查看https://webgrease.codeplex.com/documentation

了解详细信息

原文链接:https://www.f2er.com/aspnet/247868.html

猜你在找的asp.Net相关文章