Skip to content
/ wix Public

Commit af69ebe

Browse files
committed
Update supported WiX extension version to "7"
1 parent 405b907 commit af69ebe

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

src/ext/WixExt.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<IncludeBuildOutput>false</IncludeBuildOutput>
77
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
88
<NoWarn>NU5100</NoWarn>
9-
<WixExtensionPackageFolder>wixext6</WixExtensionPackageFolder>
9+
<WixExtensionPackageFolder>wixext7</WixExtensionPackageFolder>
1010
<PackageTags>$(PackageTags) wixext CustomActions</PackageTags>
1111
<IsWixExtension>true</IsWixExtension>
1212
</PropertyGroup>

src/wix/WixToolset.Core/ExtensibilityServices/ExtensionManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace WixToolset.Core.ExtensibilityServices
1717
internal class ExtensionManager : IExtensionManager
1818
{
1919
// This value needs to stay in sync with the Property in "wix.props" with the same name.
20-
private const string WixToolsetExtensionPackageFolder = "wixext6";
20+
private const string WixToolsetExtensionPackageFolder = "wixext7";
2121

2222
private const string UserWixFolderName = ".wix";
2323
private const string MachineWixFolderName = "WixToolset";

src/wix/WixToolset.Sdk/tools/wix.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<WixToolsetPatchVersion>$$WixToolsetPatchVersion$$</WixToolsetPatchVersion>
1010
<WixToolsetMajorMinorVersion>$$WixToolsetMajorMinorVersion$$</WixToolsetMajorMinorVersion>
1111
<WixToolsetVersion>$$WixToolsetVersion$$</WixToolsetVersion>
12-
<WixToolsetExtensionPackageFolder>wixext6</WixToolsetExtensionPackageFolder>
12+
<WixToolsetExtensionPackageFolder>wixext7</WixToolsetExtensionPackageFolder>
1313
</PropertyGroup>
1414

1515
<ImportGroup>

src/wix/WixToolset.Sdk/tools/wix.targets

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,10 @@
697697
<_WixBuildCabinetCachePath Condition=" '$(CabinetCachePath)'!='' ">$([MSBuild]::NormalizeDirectory($(CabinetCachePath), %(CultureGroup.OutputFolder)))</_WixBuildCabinetCachePath>
698698
</PropertyGroup>
699699

700-
<Warning Text="@(UnsupportedWixExtension->'%(Identity)') does not have support for WiX Toolset v$(WixToolsetVersion)."
700+
<Warning
701+
Text="The WiX Extension '%(UnsupportedWixExtension.Identity)' does not support WiX Toolset v$(WixToolsetVersion). Check the Version of the PackageReference for '%(UnsupportedWixExtension.Identity)' in your project and ensure it supports WiX v$(WixToolsetVersion)."
702+
Code="WIX1031"
703+
File="$(MSBuildProjectFile)"
701704
Condition=" '@(UnsupportedWixExtension)' != '' "/>
702705

703706
<WixBuild

0 commit comments

Comments
 (0)