<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>YUICompressor Forum Rss Feed</title><link>http://www.codeplex.com/YUICompressor/Thread/List.aspx</link><description>YUICompressor Forum Rss Description</description><item><title>New Post: Ordering javascript imports</title><link>http://yuicompressor.codeplex.com/discussions/441283</link><description>&lt;div style="line-height: normal;"&gt;Lol, I didn't spot that either :)  Glad you're up and running now anyway...&lt;br /&gt;
&lt;/div&gt;</description><author>freeranger</author><pubDate>Tue, 23 Apr 2013 14:25:03 GMT</pubDate><guid isPermaLink="false">New Post: Ordering javascript imports 20130423022503P</guid></item><item><title>New Post: Ordering javascript imports</title><link>http://yuicompressor.codeplex.com/discussions/441283</link><description>&lt;div style="line-height: normal;"&gt;It's only the wildcard search that is ordered alphabetically, msbuild actually guarantees the order is maintained, see here: &lt;a href="http://stackoverflow.com/questions/1219859/do-items-in-msbuild-file-maintain-their-order-when-passed-to-a-task" rel="nofollow"&gt;http://stackoverflow.com/questions/1219859/do-items-in-msbuild-file-maintain-their-order-when-passed-to-a-task&lt;/a&gt; .&lt;br /&gt;
&lt;br /&gt;
The reason my code wasn't working was just because I had the $ and the ( the wrong way round, so file1.js and file2.js were being read in in the directory search, rather than being added at the start.&lt;br /&gt;
&lt;br /&gt;
This version: &lt;br /&gt;
&lt;pre&gt;&lt;code&gt; &amp;lt;JavaScriptFiles Include=&amp;quot;$(WebProjectOutputDir)/Scripts/file1.js&amp;quot;/&amp;gt;
 &amp;lt;JavaScriptFiles Include=&amp;quot;$(WebProjectOutputDir)/Scripts/file2.js&amp;quot;/&amp;gt;

      &amp;lt;JavaScriptFiles Include=&amp;quot;$(WebProjectOutputDir)\Scripts\*.js&amp;quot; 
      Exclude=&amp;quot;@(JavascriptFiles)&amp;quot;/&amp;gt;
    &amp;lt;/ItemGroup&amp;gt;&lt;/code&gt;&lt;/pre&gt;

will do what I wanted.&lt;br /&gt;
&lt;/div&gt;</description><author>davidconlin</author><pubDate>Tue, 23 Apr 2013 14:22:41 GMT</pubDate><guid isPermaLink="false">New Post: Ordering javascript imports 20130423022241P</guid></item><item><title>New Post: Ordering javascript imports</title><link>http://yuicompressor.codeplex.com/discussions/441283</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
You are falling foul of msbuild - it always orders them alphabetically. &lt;br /&gt;
One of the answers here &lt;a href="http://stackoverflow.com/questions/7050552/msbuild-item-order-when-using-wildcards" rel="nofollow"&gt;http://stackoverflow.com/questions/7050552/msbuild-item-order-when-using-wildcards&lt;/a&gt; links to a custom msbuild task that &lt;em&gt;may&lt;/em&gt; help&lt;br /&gt;
&lt;br /&gt;
Other options are:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;name your files such that the ones you want first appear first in the alphabet &lt;/li&gt;
&lt;li&gt;Compress each file you want first individually and then lump all the others together - you end up with a few more round trips than you'd like but you still get the benefit of compression.&lt;/li&gt;
&lt;li&gt;
Alter the scripts such that load order isn't important - it seems to me a bit brittle&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
Sorry there's no one easy answer to this one, but blame MSBuild for it :)&lt;br /&gt;
&lt;/div&gt;</description><author>freeranger</author><pubDate>Tue, 23 Apr 2013 12:24:33 GMT</pubDate><guid isPermaLink="false">New Post: Ordering javascript imports 20130423122433P</guid></item><item><title>New Post: Ordering javascript imports</title><link>http://yuicompressor.codeplex.com/discussions/441283</link><description>&lt;div style="line-height: normal;"&gt;Hi -&lt;br /&gt;
&lt;br /&gt;
I'm trying to get the compressor set up for my project. We have what can only be described as a buttload of our own and library javascript files which I'd like to concatenate and minify at build time. &lt;br /&gt;
&lt;br /&gt;
The problem I'm having is working out how the order of concatenation is controlled: I need to import my libraries in the correct order so that each file's dependencies are satisfied when its loaded and executed.&lt;br /&gt;
&lt;br /&gt;
Ideally what I'd like is something that looked a bit like:&lt;br /&gt;
&lt;br /&gt;
import file #1&lt;br /&gt;
import file #2&lt;br /&gt;
...&lt;br /&gt;
import all other files in scripts directory in any order.&lt;br /&gt;
&lt;br /&gt;
but if I have to list all the files, that'd be ok.&lt;br /&gt;
&lt;br /&gt;
I've tried&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;    &amp;lt;JavaScriptFiles Include=&amp;quot;($WebProjectOutputDir)/Scripts/file1.js;
($WebProjectOutputDir)/Scripts/file2.js;&amp;quot;/&amp;gt;

      &amp;lt;JavaScriptFiles Include=&amp;quot;$(WebProjectOutputDir)\Scripts\*.js&amp;quot; 
      Exclude=&amp;quot;@(JavascriptFiles)&amp;quot;/&amp;gt;
    &amp;lt;/ItemGroup&amp;gt;&lt;/code&gt;&lt;/pre&gt;

but it doesn't look like my intended ordering is respected.&lt;br /&gt;
&lt;br /&gt;
Is there a way to do what I want to do?&lt;br /&gt;
&lt;/div&gt;</description><author>davidconlin</author><pubDate>Tue, 23 Apr 2013 12:08:38 GMT</pubDate><guid isPermaLink="false">New Post: Ordering javascript imports 20130423120838P</guid></item><item><title>New Post: Advice for integrating YUI .NET into a ASP.NET Web App</title><link>http://yuicompressor.codeplex.com/discussions/439550</link><description>&lt;div style="line-height: normal;"&gt;Hi Andy,&lt;br /&gt;
&lt;br /&gt;
Agree with PK on 1 &amp;amp; 2. &lt;br /&gt;
As well as the msbuild video, if you go to the Source Code tab and navigate to Documentation/Post-build Events WebSite Example, this is an MVC project which uses msbuild and compresses your files when in Release mode.  If you download and run the project, one of the pages on the site will discuss it in some detail.&lt;br /&gt;
&lt;br /&gt;
re: Embedded resources - I thought about this before, replacing the resources post-build with minified versions, but you can't rewrite them in the assembly, so I abandoned that idea.   Recently however, I have come up with another idea....though it is untested as yet so may need a tweak:&lt;br /&gt;
&lt;br /&gt;
Lets say you have a file called myjs.js which is currently an embedded resource.  Do the following:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Change it's build action to None&lt;/li&gt;
&lt;li&gt;Create a copy of it called myjs.min.js and set the build action on that to be Embedded Resource&lt;/li&gt;
&lt;li&gt;Whereever you would have referred to myjs.js, you need to replace with references to myjs.min.js&lt;/li&gt;
&lt;li&gt;
Create a pre build event (similar to the post build events example I mentioned earlier) which will, in Debug mode, just copy myjs.js as myjs.min.js (to ensure you always have the latest version) but in Release mode will minify myjs.js to myjs.min.js&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
The end result should be your embedded minified (or no minified) resource file.&lt;br /&gt;
&lt;br /&gt;
hth!&lt;br /&gt;
&lt;/div&gt;</description><author>freeranger</author><pubDate>Tue, 09 Apr 2013 07:10:47 GMT</pubDate><guid isPermaLink="false">New Post: Advice for integrating YUI .NET into a ASP.NET Web App 20130409071047A</guid></item><item><title>New Post: Advice for integrating YUI .NET into a ASP.NET Web App</title><link>http://yuicompressor.codeplex.com/discussions/439550</link><description>&lt;div style="line-height: normal;"&gt;Hi GL,&lt;br /&gt;
&lt;br /&gt;
Thanks for the reply. I had previously watched all your short clips (very informative) but just wanted to be sure that it was possible to integrate with Web forms.&lt;br /&gt;
I think I will seperate the CSS/JS with regards to the embedded resources as the DLLs are not used outside of the web app and so the need for embedding is removed.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
&lt;br /&gt;
Andy&lt;br /&gt;
&lt;/div&gt;</description><author>awood20</author><pubDate>Tue, 09 Apr 2013 07:08:49 GMT</pubDate><guid isPermaLink="false">New Post: Advice for integrating YUI .NET into a ASP.NET Web App 20130409070849A</guid></item><item><title>New Post: Advice for integrating YUI .NET into a ASP.NET Web App</title><link>http://yuicompressor.codeplex.com/discussions/439550</link><description>&lt;div style="line-height: normal;"&gt;Hi Andy,&lt;br /&gt;
&lt;br /&gt;
it's been years since I've touched WebForms (all MVC myself). I believe it can be used in a Web forms app because there's no MVC specific stuff at all.&lt;br /&gt;
&lt;br /&gt;
1) and 2)&lt;br /&gt;
&lt;br /&gt;
I've &lt;a href="http://www.youtube.com/watch?v=sFFZ0nQog8U" rel="nofollow"&gt;made a a video about to use MSBuild&lt;/a&gt; to leverage the compressor. Yes, the video is using an MVC project but that's irrelevant because it's using NOTHING MVC-special. U can copy the entire video and substitute the 1 sec in it where i do FILE=&amp;gt;NEW=&amp;gt;MVC with FILE=&amp;gt;NEW=&amp;gt;WebForms.&lt;br /&gt;
&lt;br /&gt;
all the rest is the same.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3) Embedded resources .. hmm. never thought of that. If you're going to embedd the css/js, you can always manually minify the content and then just stick that result into the web resource? It's a PITA but a possible solution. Other than that, i would keep that content separate as u suggested.&lt;br /&gt;
&lt;br /&gt;
GL!&lt;br /&gt;
&lt;/div&gt;</description><author>purekrome</author><pubDate>Tue, 09 Apr 2013 02:23:36 GMT</pubDate><guid isPermaLink="false">New Post: Advice for integrating YUI .NET into a ASP.NET Web App 20130409022336A</guid></item><item><title>New Post: Advice for integrating YUI .NET into a ASP.NET Web App</title><link>http://yuicompressor.codeplex.com/discussions/439550</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
I am considering using this library within a .NET 4.0 ASP.NET Web forms App. None of the sample videos cover this specifically. So I've a few questions on this...&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Can this package actually be integrated into a Web Forms web app instead of MVC App?&lt;/li&gt;
&lt;li&gt;Are there any resources that can show me how to do this via either MsBuild or some other manner?&lt;/li&gt;
&lt;li&gt;
Apart from css/js within the web app I have server-side webcontrols that have css/js included with them as webResource files. I am considering removing the embedded resources and moving the css/js into the web app so that they would be processed by YUI. Would you consider this a good idea or is there a way for YUI .NET to handle the embedded resouces?&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
Andy&lt;br /&gt;
&lt;/div&gt;</description><author>awood20</author><pubDate>Mon, 08 Apr 2013 19:29:51 GMT</pubDate><guid isPermaLink="false">New Post: Advice for integrating YUI .NET into a ASP.NET Web App 20130408072951P</guid></item><item><title>New Post: Getting errors when trying to build</title><link>http://yuicompressor.codeplex.com/discussions/392379</link><description>&lt;div style="line-height: normal;"&gt;I got the solution. Previously I have added the old versions and added only new version of Yahoo.Yui.Compressor.Build.MsBuild.dll. I have removed all the old version files and again added new versions and it is working fine. The files are added here are &lt;br /&gt;
&lt;br /&gt;
EcmaScript.NET.dll&lt;br /&gt;
Iesi.Collections.dll&lt;br /&gt;
NAnt.Core.dll&lt;br /&gt;
Yahoo.Yui.Compressor.Build.MsBuild.dll&lt;br /&gt;
Yahoo.Yui.Compressor.dll&lt;br /&gt;
&lt;br /&gt;
Thanks all :)&lt;br /&gt;
&lt;/div&gt;</description><author>pankajsaha</author><pubDate>Mon, 18 Feb 2013 11:27:32 GMT</pubDate><guid isPermaLink="false">New Post: Getting errors when trying to build 20130218112732A</guid></item><item><title>New Post: Getting errors when trying to build</title><link>http://yuicompressor.codeplex.com/discussions/392379</link><description>&lt;div style="line-height: normal;"&gt;Hi pankajsaha,&lt;br /&gt;
&lt;br /&gt;
I have a few questions - please answer them.&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;The -exact- full path of where the xml file is located.&lt;/li&gt;
&lt;li&gt;The -exact- full path of where Yahoo.Yui.Compressor.Build.MsBuild.dll. is located&lt;/li&gt;
&lt;li&gt;The -exact- full path of the core Yahoo.Yui.Compressor dll&lt;/li&gt;
&lt;li&gt;
The -exact- full path of where you are 'running' msbuild against that xml file.&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
cheers!&lt;br /&gt;
&lt;/div&gt;</description><author>purekrome</author><pubDate>Mon, 18 Feb 2013 09:26:48 GMT</pubDate><guid isPermaLink="false">New Post: Getting errors when trying to build 20130218092648A</guid></item><item><title>New Post: Getting errors when trying to build</title><link>http://yuicompressor.codeplex.com/discussions/392379</link><description>&lt;div style="line-height: normal;"&gt;Thanks for the reply. I have changed the xml file in the below format&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;
&amp;lt;Project xmlns=&amp;quot;http://schemas.microsoft.com/developer/MsBuild/2003&amp;quot;&amp;gt;

  &amp;lt;UsingTask TaskName=&amp;quot;CssCompressorTask&amp;quot; AssemblyFile=&amp;quot;..\bin\Yahoo.Yui.Compressor.Build.MsBuild.dll&amp;quot; /&amp;gt;
  &amp;lt;UsingTask TaskName=&amp;quot;JavaScriptCompressorTask&amp;quot; AssemblyFile=&amp;quot;..\bin\Yahoo.Yui.Compressor.Build.MsBuild.dll&amp;quot; /&amp;gt;


  &amp;lt;PropertyGroup&amp;gt;
    &amp;lt;CSSOutputFile Condition=&amp;quot; '$(CSSOutputFile)'=='' &amp;quot;&amp;gt;..\Min\site.min.css&amp;lt;/CSSOutputFile&amp;gt;

    &amp;lt;JavascriptOutputFile Condition=&amp;quot; '$(JavascriptOutputFile)'=='' &amp;quot;&amp;gt;..\Min\jquery.min.js&amp;lt;/JavascriptOutputFile&amp;gt;
    
  &amp;lt;/PropertyGroup&amp;gt;

  &amp;lt;Target Name=&amp;quot;Minify&amp;quot;&amp;gt;
  
    &amp;lt;ItemGroup&amp;gt;
   
      &amp;lt;CssFiles Include=&amp;quot;..\Content\Site.css&amp;quot;/&amp;gt;
     
      &amp;lt;JavaScriptFiles Include=&amp;quot;..\Scripts\jquery-1.6.2.js&amp;quot;/&amp;gt;
    &amp;lt;/ItemGroup&amp;gt;

    &amp;lt;CssCompressorTask
          SourceFiles=&amp;quot;@(CssFiles)&amp;quot;
          DeleteSourceFiles=&amp;quot;false&amp;quot;
          OutputFile=&amp;quot;$(CSSOutputFile)&amp;quot;
          CompressionType=&amp;quot;Standard&amp;quot;
          LoggingType=&amp;quot;Info&amp;quot;
          PreserveComments=&amp;quot;false&amp;quot;
          LineBreakPosition=&amp;quot;-1&amp;quot;
       /&amp;gt;

  
 

    &amp;lt;JavaScriptCompressorTask
        SourceFiles=&amp;quot;@(JavaScriptFiles)&amp;quot;
        DeleteSourceFiles=&amp;quot;false&amp;quot;
        OutputFile=&amp;quot;$(JavascriptOutputFile)&amp;quot;
        CompressionType=&amp;quot;Standard&amp;quot;
        ObfuscateJavaScript=&amp;quot;True&amp;quot;
        PreserveAllSemicolons=&amp;quot;False&amp;quot;
        DisableOptimizations=&amp;quot;No&amp;quot;
        EncodingType=&amp;quot;Default&amp;quot;
        LineBreakPosition=&amp;quot;-1&amp;quot;
        LoggingType=&amp;quot;Info&amp;quot;
        ThreadCulture=&amp;quot;en-au&amp;quot;
        IsEvalIgnored=&amp;quot;false&amp;quot;
            /&amp;gt;

 
  &amp;lt;/Target&amp;gt;
&amp;lt;/Project&amp;gt;&lt;/code&gt;&lt;/pre&gt;

But it is showing the below error&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;JavaScriptCompressorTask&amp;quot; task could not be loaded from the assembly D:\Projects\YUI..\bin\Yahoo.Yui.Compressor.Build.MsBuild.dll. Could not load file or assembly 'Yahoo.Yui.Compressor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. Confirm that the &amp;lt;UsingTask&amp;gt; declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.	D:\Projects\YUI\myfile.xml	&lt;br /&gt;
&lt;/div&gt;</description><author>pankajsaha</author><pubDate>Mon, 18 Feb 2013 09:16:08 GMT</pubDate><guid isPermaLink="false">New Post: Getting errors when trying to build 20130218091608A</guid></item><item><title>New Post: Getting errors when trying to build</title><link>http://yuicompressor.codeplex.com/discussions/392379</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br /&gt;
&lt;br /&gt;
It looks like you are trying to use the lastest code with an old version of an msbuild file.&lt;br /&gt;
Since 2.x, the compressor task has been broken out into separate css and javascript compressors - see the documentation pages or download samples for examples of how to use msbuild in 2.x versions of YUICompressor.Net&lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;
&lt;/div&gt;</description><author>freeranger</author><pubDate>Fri, 15 Feb 2013 12:26:08 GMT</pubDate><guid isPermaLink="false">New Post: Getting errors when trying to build 20130215122608P</guid></item><item><title>New Post: Getting errors when trying to build</title><link>http://yuicompressor.codeplex.com/discussions/392379</link><description>&lt;div style="line-height: normal;"&gt;I have installed the latest  YUICompressor.NET and YUICompressor.NET.MSBuild and installed through the &lt;a href="http://yuicompressor.codeplex.com/" rel="nofollow"&gt;http://yuicompressor.codeplex.com/&lt;/a&gt;  and the xml file file is &lt;br /&gt;
&lt;pre&gt;&lt;code&gt;  &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;Project xmlns=&amp;quot;http://schemas.microsoft.com/developer/MsBuild/2003&amp;quot;&amp;gt;
  &amp;lt;UsingTask
      TaskName=&amp;quot;CompressorTask&amp;quot;
      AssemblyFile=&amp;quot;..\..\lib\yui\Yahoo.Yui.Compressor.Build.MsBuild.dll&amp;quot; /&amp;gt;


  &amp;lt;PropertyGroup&amp;gt;
    &amp;lt;JavaScriptOutputFile Condition=&amp;quot; '$(JavaScriptOutputFile)'=='' &amp;quot;&amp;gt;..\scripts-min\myfile.min.js&amp;lt;/JavaScriptOutputFile&amp;gt;
  &amp;lt;/PropertyGroup&amp;gt;


  &amp;lt;Target Name=&amp;quot;MyTaskTarget&amp;quot;&amp;gt;

    &amp;lt;ItemGroup&amp;gt;


&amp;lt;JavaScriptFiles Include=&amp;quot;$(SourceLocation)..\scripts\myfile.js&amp;quot;/&amp;gt;



&amp;lt;/ItemGroup&amp;gt;
&amp;lt;CompressorTask
    CssFiles=&amp;quot;@(CssFiles)&amp;quot;
    DeleteCssFiles=&amp;quot;false&amp;quot;
    CssOutputFile=&amp;quot;$(CssOutputFile)&amp;quot;
    CssCompressionType=&amp;quot;YuiStockCompression&amp;quot;
    JavaScriptFiles=&amp;quot;@(JavaScriptFiles)&amp;quot;
    ObfuscateJavaScript=&amp;quot;True&amp;quot;
    PreserveAllSemicolons=&amp;quot;False&amp;quot;
    DisableOptimizations=&amp;quot;Nope&amp;quot;
    EncodingType=&amp;quot;Default&amp;quot;
    DeleteJavaScriptFiles=&amp;quot;false&amp;quot;
    LineBreakPosition=&amp;quot;-1&amp;quot;
    JavaScriptOutputFile=&amp;quot;$(JavaScriptOutputFile)&amp;quot;
    LoggingType=&amp;quot;ALittleBit&amp;quot;
    ThreadCulture=&amp;quot;en-au&amp;quot;

            /&amp;gt;
&amp;lt;/Target&amp;gt;

&amp;lt;/Project&amp;gt;&lt;/code&gt;&lt;/pre&gt;

but it is still showing the error &lt;br /&gt;
&lt;br /&gt;
Error	18	The &amp;quot;CompressorTask&amp;quot; task could not be loaded from the assembly D:\Projects\YUI....\lib\yui\Yahoo.Yui.Compressor.Build.MsBuild.dll. Could not load file or assembly 'Yahoo.Yui.Compressor, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null'or one of its dependencies. The system cannot find the file specified. Confirm that the &amp;lt;UsingTask&amp;gt; declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.	&lt;br /&gt;
&lt;/div&gt;</description><author>pankajsaha</author><pubDate>Fri, 15 Feb 2013 12:06:10 GMT</pubDate><guid isPermaLink="false">New Post: Getting errors when trying to build 20130215120610P</guid></item><item><title>New Post: Problem Instantiating JavaScriptCompressor()</title><link>http://yuicompressor.codeplex.com/discussions/415157</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;removed&lt;/p&gt;
&lt;/div&gt;</description><author>Abizart</author><pubDate>Mon, 31 Dec 2012 13:35:17 GMT</pubDate><guid isPermaLink="false">New Post: Problem Instantiating JavaScriptCompressor() 20121231013517P</guid></item><item><title>New Post: Problem Instantiating JavaScriptCompressor()</title><link>http://yuicompressor.codeplex.com/discussions/415157</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Used it yesterday to grab the latest version of the Ajax Control Toolkit and plan to do the same for YUICompressor.NET.&amp;nbsp; Thanks for the info.&lt;/p&gt;
&lt;/div&gt;</description><author>bperniciaro</author><pubDate>Fri, 28 Dec 2012 13:34:04 GMT</pubDate><guid isPermaLink="false">New Post: Problem Instantiating JavaScriptCompressor() 20121228013404P</guid></item><item><title>New Post: Command line tool to minimize js and css</title><link>http://yuicompressor.codeplex.com/discussions/427839</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;@&lt;a href="http://www.codeplex.com/site/users/view/freeranger"&gt;freeranger&lt;/a&gt;&amp;nbsp;@&lt;a href="http://www.codeplex.com/site/users/view/purekrome"&gt;purekrome&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Youtube is banned in my country, because of that I never noticed about your video tutorials. Finally, I downloaded these videos by some tricks.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you!&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>jalalx</author><pubDate>Fri, 28 Dec 2012 09:46:38 GMT</pubDate><guid isPermaLink="false">New Post: Command line tool to minimize js and css 20121228094638A</guid></item><item><title>New Post: Problem Instantiating JavaScriptCompressor()</title><link>http://yuicompressor.codeplex.com/discussions/415157</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Ah gotcha. You should seriously research what Nuget is and learn to use that in all your Visual Studio solutions/projects. It's one of the best features that has come out, in recent years.&lt;/p&gt;
&lt;p&gt;It can also auto notify you when libraries you are using (like YUICompressor.NET) get upgraded :)&lt;/p&gt;
&lt;/div&gt;</description><author>purekrome</author><pubDate>Fri, 28 Dec 2012 06:02:34 GMT</pubDate><guid isPermaLink="false">New Post: Problem Instantiating JavaScriptCompressor() 20121228060234A</guid></item><item><title>New Post: Command line tool to minimize js and css</title><link>http://yuicompressor.codeplex.com/discussions/427839</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Also Jalax, here's a video that shows you how you can do this stuff with the command line:&amp;nbsp;http://www.youtube.com/watch?v=sFFZ0nQog8U&lt;/p&gt;
&lt;p&gt;Don't forget, you can use powershell or even a simple .bat (batch) file to list multiple commands at once.&lt;/p&gt;
&lt;p&gt;it's all there :)&lt;/p&gt;
&lt;/div&gt;</description><author>purekrome</author><pubDate>Fri, 28 Dec 2012 05:51:39 GMT</pubDate><guid isPermaLink="false">New Post: Command line tool to minimize js and css 20121228055139A</guid></item><item><title>New Post: Command line tool to minimize js and css</title><link>http://yuicompressor.codeplex.com/discussions/427839</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;That's what the msbuild and nant tasks we created are for!&lt;/div&gt;
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
&lt;div&gt;Or of course roll your own little command line tool to use our assemblies...&lt;br&gt;
&lt;br&gt;
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;br&gt;
On 27 Dec 2012, at 20:32, jalalx &amp;lt;&lt;a href="mailto:notifications@codeplex.com"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;blockquote type="cite"&gt;
&lt;div&gt;
&lt;p&gt;From: jalalx&lt;/p&gt;
&lt;div id="ThreadNotificationPostBody"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you for this awesome tool. It works great but sometimes we need a small command line tool to just push js or css files and get minimized version of them without opening any IDE. If you add this feature, it will be more lovely.&lt;/p&gt;
&lt;p&gt;Thank you again. &lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
&lt;/div&gt;</description><author>freeranger</author><pubDate>Thu, 27 Dec 2012 20:55:19 GMT</pubDate><guid isPermaLink="false">New Post: Command line tool to minimize js and css 20121227085519P</guid></item><item><title>New Post: Command line tool to minimize js and css</title><link>http://yuicompressor.codeplex.com/discussions/427839</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you for this awesome tool. It works great but sometimes we need a small command line tool to just push js or css files and get minimized version of them without opening any IDE. If you add this feature, it will be more lovely.&lt;/p&gt;
&lt;p&gt;Thank you again.&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>jalalx</author><pubDate>Thu, 27 Dec 2012 20:32:45 GMT</pubDate><guid isPermaLink="false">New Post: Command line tool to minimize js and css 20121227083245P</guid></item></channel></rss>