views:

64

answers:

1

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

A: 

This answer can be removed.

peter
No need to create an answer to amend to your question, you can edit it directly.
Pekka
Yes I'm very sorry, I found the edit button after answering...
peter