Tagged Questions
1
vote
2answers
198 views
How to minify and combine commented out css files
I have these conditional css files
<!--[if IE 7]><link rel="stylesheet" type="text/css" media="all" href="/Content/css/ie7.css" /><![endif]-->
<!--[if IE 6]><link ...
4
votes
3answers
518 views
Minify indented JSON string in .NET
I have an indented JSON string e.g.
{
"a": 1
}
However, I don't have the type of the instance to be serialized or deserialized.
In my situation, what's the most efficient way to minify a JSON ...
6
votes
7answers
1k views
Is there a .NET library for minifying Javascript?
I'm programatically creating javascript files from a .NET web app, and would like to minify it before passing it on to the user? Is there a library or technique for doing this on the fly?
Thank
1
vote
2answers
130 views
Css ignoring everything after the first class
I'm using this guide to create a HTTPHandler that combines script and css files to deliver them as one request each.
Basically it reads a bunch of .css files into a byte array and then ...
1
vote
2answers
167 views
VS.NET: Doing a post-build step in a web project
I've got a Visual Studio 2010 solution with only a website in it. It contains lots of Javascript files which I would like to minimize automatically when doing a build. There's one good solution but it ...
1
vote
1answer
163 views
Organizing CSS and Javascript in a single template multiproject site
Let's start with a bit of context. What do I have in my hands?
Multiple web applications (All .NET: WebForms and MVC)
Common UI template
Each application has also it's own UI elements.
Multiple ...
3
votes
2answers
272 views
Is there a good .Net CSS aggregator that combines style sheets and minifies them?
I am looking to see if there is an open source/free project that provides a CSS manager. I am looking for this mainly for performance tweaking and hoping there is a readymade project rather than ...
2
votes
5answers
625 views
XML Minify in .NET
I'd like to read in the following XML:
<node></node>
And then write it out, minified, like this:
<node/>
Obviously this has the same meaning, but the second file is smaller for ...