I would like to remove all blank lines (lines that just have some number of spaces and a newline character) from a list of files using MSBuild.
What is the best way to accomplish this?
I recognize that I could write a MSBuild plug in C# or VB.NET that will do this using simple Regex replacement, but would prefer a solution that doesn't need me to do this.
If there's a open source MSBuild plugin that does this - I'd welcome that solution as well.