C# Library to Combine and Minify CSS and Javascript files

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

Does anyone knows any C# Library to Combine and Minify CSS and
Javascript files?

I was able to find a few Rails and Java tools but no .NET tool.
This would be really useful for ASP.NET web applications.

Thanks,
Miguel
 
shapper said:
Hello,

Does anyone knows any C# Library to Combine and Minify CSS and
Javascript files?

I was able to find a few Rails and Java tools but no .NET tool.
This would be really useful for ASP.NET web applications.

Thanks,
Miguel


the one i am using for javascript is http://dean.edwards.name/packer/
it's an online tool
PS: down there you will see it's available as .NET ....


George
 
To combine JS you can use asp's ScriptManager <compositescripts> section.

To combine & minify CSS i've used StyleManager in the past - gstylemanager.com. it's really easy to integrate, worked well for me.

Best of luck.
 
Back
Top