gpt4 book ai didi

c# - WiX 安装程序不适用于 vs 2012

转载 作者:行者123 更新时间:2023-11-30 15:37:25 25 4
gpt4 key购买 nike

我想为我的应用程序创建一个安装程序。我已经下载了 WiX 3.6 并将其安装在 vs 2012 上。

  1. 创建简单的 winform 应用程序
  2. 将 WiX 安装项目添加到我的解决方案
  3. 右键单击引用并将我的 winform 应用程序添加到设置的引用
  4. 我构建解决方案并转到安装项目中的调试目录并运行 SetupProject1.exe.msi 它不起作用并关闭安装程序对话框,没有任何错误。

返回设置项目

  1. 右键单击设置项目并选择属性
  2. 在安装程序选项卡> 输出类型,将其更改为executablefile.exe
  3. 构建它并去调试并运行 SetupProject1.exe - 仍然不起作用

怎么了?这是我的设置项目product.wxs

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="SetupProject1" Language="1033" Version="1.0.0.0" Manufacturer="Natiloos" UpgradeCode="cfc2f4dd-2da5-49e2-9099-96968d75aaa4">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate />

<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="ProductComponent"> -->

<!-- </Component> -->
</ComponentGroup>
</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="ProductComponent"> -->

<!-- </Component> -->
</ComponentGroup>
</Fragment>

您需要添加文件...即取消注释 <Component></Component>标签并手动添加文件。有一个很好<Component>每个文件的标签。

例子:

 <Component Id="MyProgram.exe" Guid="PUT-GUID-HERE">
<File Id="MyProgram.exe" KeyPath="yes" Source="Path_To_Output_Folder\MyProgram.exe" />
</Component>

关于c# - WiX 安装程序不适用于 vs 2012,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12624436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com