Andrew Davey created a very nice library to allow on the fly minification and concatenation of js/css files to ASP.NET MVC projects. However, I'm using WebForms with .NET 3.5 and I'm thinking about modifying it to fit my project. Before I do that, I would like to know if any of you guys know any alternatives that might fit WebForms with .NET 3.5 projects.
Thanks!
Andrew Davey created a very nice library to allow on the fly minification and concatenation of js/css files to ASP.NET MVC projects. However, I'm using WebForms with .NET 3.5 and I'm thinking about modifying it to fit my project. Before I do that, I would like to know if any of you guys know any alternatives that might fit WebForms with .NET 3.5 projects.
Thanks!
Share Improve this question asked Aug 11, 2011 at 12:41 tucaztucaz 6,6846 gold badges40 silver badges62 bronze badges5 Answers
Reset to default 8Here are some similar projects:
- http://shinkansen.codeplex./
- http://mbpression.codeplex./
- http://clientdependency.codeplex./
At least the first two should work with .NET 3.5
Edit - Even more similar projects:
- http://mscd.codeplex./
- http://chirpy.codeplex./
- https://github./jetheredge/SquishIt
Scott Guthrie's post about the new bundling and minification support which was published with the MVC4 beta release may also be of interest.
I've used SquishIt in a Webforms project and it worked well.
Cassette works fine with WebForms, it has no dependency on MVC.
As for .NET 3.5 it may be possible to back port it. It would be great if you want to give that a go! :)
We are using http://chirpy.codeplex./ and are very happy about it.
Look into MVC4 / ASP.NET 4.5 beta Bundles implementation - you might want to wait until it is released and use that functionality when released instead of switching to third parties right now.