msbuild-transforms

MSBuild: transform paths to namespaces

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 b...