Hi,
I have an ASP.NET web deployment project (MSBuild) in which I have the lines;
What I have:
<Merge Mode="TextLine" SourceFiles="$(OutputPath)App_Themes\xx\**\*.css" DestinationFile="$(OutputPath)App_Themes\xx\static.css" />
What I would like to accomplish:
<Merge Mode="TextLine" SourceFiles="$(OutputPath)App_Themes\(.*)\**\*.css" DestinationFile="$(OutputPath)App_Themes\$1\static.css" />
So I want to merge all CSS files in for every theme directory to static.css. I'm using MSBuild community tasks for merge.
Thank you