diff options
author | Rob Mensching <rob@firegiant.com> | 2025-03-18 17:13:46 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2025-03-18 18:01:57 -0700 |
commit | e5f5eb186eed457dd08fead26e569299eef6c9bc (patch) | |
tree | d18e9e558c50ef518221e7dfd9a410fd5119b706 | |
parent | 32bfb97857041bb4385df3754c3f9eb2f8b23d8e (diff) | |
download | wix-e5f5eb186eed457dd08fead26e569299eef6c9bc.tar.gz wix-e5f5eb186eed457dd08fead26e569299eef6c9bc.tar.bz2 wix-e5f5eb186eed457dd08fead26e569299eef6c9bc.zip |
Include the major version in the Package/@Id to install SxS
Addresses issue raised in 8992
-rw-r--r-- | src/setup/wix-cli/Package.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/setup/wix-cli/Package.wxs b/src/setup/wix-cli/Package.wxs index c777f356..48d544e0 100644 --- a/src/setup/wix-cli/Package.wxs +++ b/src/setup/wix-cli/Package.wxs | |||
@@ -1,6 +1,6 @@ | |||
1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | 1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
3 | <Package Id="WixToolset.CommandLineTools.Package" Name="WiX Toolset Command-Line Tools" Manufacturer="WiX Toolset" Version="!(bind.fileVersion.WixExe)"> | 3 | <Package Id="WixToolset.CommandLineTools$(SetupMajorVersion).Package" Name="WiX Toolset Command-Line Tools" Manufacturer="WiX Toolset" Version="!(bind.fileVersion.WixExe)"> |
4 | <MediaTemplate EmbedCab="yes" /> | 4 | <MediaTemplate EmbedCab="yes" /> |
5 | 5 | ||
6 | <ComponentGroupRef Id="BinaryFiles" /> | 6 | <ComponentGroupRef Id="BinaryFiles" /> |