I have list of items like this:

<ItemGroup>
    <ToCompile Include="clojure\core.clj;clojure\set.clj;clojure\zip.clj;clojure\test\junit.clj;"/>
</ItemGroup>

And I want to transform that to a list of items like this:

clojure.core clojure.set clojure.zip clojure.test.junit

Is there a way to do this with MSBuild transforms? I tried but I can only get at the file name; the extension and the root path, and I can change the separator. But not the path separators.

If not, any other solution that avoids using custom tasks is appreciated.

link|improve this question

You could write a custom task in a powershell task factory, which wish is much simpler than a full C# task in its own assembly. I recommend them for very small tasks only, however. See: blogs.msdn.com/b/visualstudio/archive/2010/02/20/… – Jay Bazuzi Oct 25 '10 at 6:29
Yeah, thanks. That would have been my backup solution, but the one below (although cheesy :) is much less of a hassle. – Kurt Schelfthout Oct 25 '10 at 20:33
feedback

2 Answers

up vote 1 down vote accepted

This is a bit cheesy, but it works in MSBuild 4.0+.

<Target Name="Namespaces">
  <PropertyGroup>
    <Cheesy>@(ToCompile -> '%(relativedir)%(filename)', ' ')</Cheesy>
  </PropertyGroup>
  <Message Text="$(Cheesy.Replace(`\`, `.`))" />
</Target>
link|improve this answer
feedback

We can do it easily with fewer cheese:

<Message Text="$([System.String]::Copy('%(ToCompile.Identity)').Replace('.clj','').Replace('\','.'))"/>

link|improve this answer
Thanks, that looks easier indeed. But why the copy? – Kurt Schelfthout Mar 8 '11 at 8:23
I believe that you can't use the %(ToCompile.Identity) string reference to call .Replace so you need to use the static method Copy to create a reference where .Replace can be used. – Mike Oct 4 '11 at 13:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.