我使用ASP.NET捆綁,而不是RequestReduce帶啓動任務。 這似乎是一件容易的事在第一,但後來我遇到了問題,minifieng CSS文件時:WebGrease捆綁忽略全局
(3017,287): run-time error CSS1054: JavaScript error in expression property: Variable 'jGrowl' has not been declared: jGrowl
(3017,287): run-time error CSS1054: JavaScript error in expression property: Variable 'ignoreMe2' has not been declared: ignoreMe2
(3018,151): run-time error CSS1054: JavaScript error in expression property: Variable 'ignoreMe' has not been declared: ignoreMe
(3022,156): run-time error CSS1054: JavaScript error in expression property: Variable 'ignoreMe2' has not been declared: ignoreMe2
我發現這是它與我擰jGrowl。 一些googleing後,我發現:http://kenhaines.net/post/2012/06/09/WebGrease-As-seen-in-Visual-Studio-2012.aspx
那兒,我發現:
您的文件似乎有未申報的JS全局的,所以預期的錯誤。您應該將它們添加到webgrease清單文件中的GlobalsToIgnore設置中。
例如:
<GlobalsToIgnore>jGrowl;ignoreMe;ignoreMe2</GlobalsToIgnore>
哪裏webgrease清單文件?我如何編輯它?
我一直googleing很多沒有任何運氣
Btw。我在這裏,我的問題建立的第一個問題,這樣的反饋將是很好的藏漢:)
//和平了