WiX 5: Harvesting fromabsolute path
I’m trying to build a windows installer using msbuild and .wixproj file. I added <HarvestDirectory Include="E:/publish/myproject"> in the wixproj, and when in run the msbuild it creates a new .wsx file in the "obj" directory.
But wix does not use the absolute file in that file, and instead it uses Source=SourceDir\file.dll. And then at the CoreCompile step I’m getting error that the file cannot be found.
How do I do this right?
0 Replies