Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/wix/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wix 如何在不嵌入其他安装程序的情况下构建捆绑包?_Wix_Burn - Fatal编程技术网

Wix 如何在不嵌入其他安装程序的情况下构建捆绑包?

Wix 如何在不嵌入其他安装程序的情况下构建捆绑包?,wix,burn,Wix,Burn,这对我有用 <ExePackage Id="Netfx35" Cache="no" Compressed="yes" PerMachine="yes" Permanent="yes" Vital="yes" InstallCommand="/q /norestart /lang:ENU" RepairCommand="/q /norestart /lang:ENU" UninstallCommand="/q /norestar

这对我有用

<ExePackage Id="Netfx35"
    Cache="no"
    Compressed="yes"
    PerMachine="yes"
    Permanent="yes"
    Vital="yes"
    InstallCommand="/q /norestart /lang:ENU"
    RepairCommand="/q /norestart /lang:ENU"
    UninstallCommand="/q /norestart /lang:ENU"
    DetectCondition="DotNetFramework35SPInstallRegValue"
    SourceFile="embed\DotNetFX35SP1\dotnetfx35.exe" />


但是它将.NET安装程序嵌入到捆绑包中。我想把它作为一个单独的文件保存。我正在尝试使用有效负载标记,但我不知道它是否有效。

您需要使用元素:

类型
属性:

指示容器是否“附加”到捆绑可执行文件 或者作为“分离”放置在捆绑包可执行文件的外部。如果这 属性,默认情况下是创建分离的 容器


您需要使用以下元素:

类型
属性:

指示容器是否“附加”到捆绑可执行文件 或者作为“分离”放置在捆绑包可执行文件的外部。如果这 属性,默认情况下是创建分离的 容器

用Compressed=“no”替换Bundle创作中的Compressed=“yes”。

用Compressed=“no”替换Bundle创作中的Compressed=“yes”