wix 3.11 RC-2 exe未安装。没有给出任何错误只是在没有任何显示的情况下完成。
任何人都知道如何使用wix二进制文件或使exe在我的项目中工作,因为它给出了be错误“wix toolset build tools v3 not installed”
发布于 2017-04-22 02:26:46
在使用bootstrapper项目模板时,我在使用VS2015和WiX工具集3.10时遇到了同样的问题。我的解决方法是更改wixproj:从
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
<Error Text="The WiX Toolset v3 build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
</Target>我发现$(WixTargetsImported)没有定义,所以它失败也就不足为奇了。
发布于 2020-01-21 01:34:14
我有这个问题是因为我不小心安装了nuget的WiX.Toolset。此版本已过时,无法维护。它遗漏了wix.targets中的以下行,因此出现了错误。
<WixTargetsImported>true</WixTargetsImported>有一次我去了WiX.Toolset.UnofficialFork,一切都很顺利。
https://stackoverflow.com/questions/43219517
复制相似问题