我跟随this tutorial为VS2017 Winform app
创建WiX安装程序。它只是一个默认的Winform应用程序(没什么特别的)。但是当我构建WiX项目(SetupProject1
如下面的图1所示)时,我在<File id=.../>
的{{1}}标记处出现以下错误(如下所示)。
问题:我在这里可能缺少什么?
注意:我正在使用此Wix Toolset Visual Studio 2017 Extension
错误:
未定义的预处理器变量&#39; $(var.SetupProject1.TargetDir)&#39;
VS2017 Solution Explorer:
Product.wxs
ProductComponent.wxs
ProductComponent.wxs
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="89ae9543-fdf1-444b-9678-811483fd58bd" Name="SetupProject1" Language="1033" Version="1.0.0.0" Manufacturer="WiX_test_4_Winfrm" UpgradeCode="e69fe67b-5c28-4764-8196-a6613b840eff">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<UIRef Id="WixUI_Mondo" />
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER"></Property>
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate EmbedCab="yes" />
<Feature Id="ProductFeature" Title="SetupProject1" Level="1">
<ComponentGroupRef Id="ProductComponents" />
</Feature>
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="SetupProject1" />
</Directory>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
<Component Id="CMP_SetupProject1">
<File Source="$(var.WIX_WinfrmTest.TargetPath)" />
</Component>
</ComponentGroup>
</Fragment>
</Wix>
答案 0 :(得分:1)
只需删除你的第二个文件ProductComponent.wxs即可。
该博客上提到的外部工具是一个好主意,但这只能通过激活您的winform项目而不是当前项目(wix项目)来运行。