开发者

How can specify multiple paths on LinkerBaseInputPaths Wix Property?

开发者 https://www.devze.com 2023-04-08 16:27 出处:网络
The PropertyGroup MSBUILD Task on WIX lets you set the LinkerBaseInputPaths property, its essentially the -b parameter for light.exe.

The PropertyGroup MSBUILD Task on WIX lets you set the LinkerBaseInputPaths property, its essentially the -b parameter for light.exe.

The property is named plural for multiple paths (which light.exe supports by multiple -b arguments), however how do we specify multiple paths on the property?

I have tried separating the paths with ";" and ",", both do not work开发者_如何转开发.

Any suggestions?


How does it not work? MSBuild turns a semi-colon-separated string into an array for the task. For example, the WiX setup project uses this:

<BaseInputPaths>$(OutputPath_x86);$(OutputPath_x64);$(OutputPath_ia64);$(MSBuildProjectDirectory);$(WIX_ROOT)src;$(WIX_ROOT)bin;$(WIX_ROOT)src\dutil\inc;$(BaseInputPaths)</BaseInputPaths>

0

精彩评论

暂无评论...
验证码 换一张
取 消