We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8647d4 + 7f93b53 commit f24bb10Copy full SHA for f24bb10
src/Microsoft.DotNet.Build.Tasks.Installers/build/wix5/wix.targets
@@ -23,7 +23,8 @@
23
<PropertyGroup>
24
<WixObjDir>$(IntermediateOutputPath)/wix/</WixObjDir>
25
<WixObjDir Condition="'$(RuntimeIdentifier)' == ''">$(IntermediateOutputPath)/$(InstallerRuntimeIdentifier)/wix/</WixObjDir>
26
- <MsiArch>$(InstallerTargetArchitecture)</MsiArch>
+ <MsiArch Condition="'$(GenerateExeBundle)' == 'true'">x86</MsiArch>
27
+ <MsiArch Condition="'$(GenerateExeBundle)' != 'true'">$(InstallerTargetArchitecture)</MsiArch>
28
</PropertyGroup>
29
30
<Error
0 commit comments