I am building a string with the PowershellTaskFactory that returns a list of files separated with a semicolon.
When I try to pass this to my in Wix it is interpreted as a string. I've been fighting it for quite a while now and decided to reach out. What I really want is a list of wxs to be passed to wix's candle application and I thought MsBuild would recognize that the string contained the delimiter and split it up...but it gets passed to candle as a string argument.
Update- Solved
I ended up using the new MSBUILD 4.0 feature of Property Functions, similar to this
<Compile Include="$(builtString.Split(';'))"/>