Fix copy paste error.
Sean Hall committed
Dec 8, 2020 at 22:53 UTC
0e1f5a4fcf29f979a1b6e6b67bfd2a2b0e6f4a3c
1 file changed
+1
-1
src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs
+1
-1
@@ -127,7 +127,7 @@ namespace WixToolset.Core.ExtensibilityServices
127
switch (currentPlatform)
128
{
129
case Platform.X86:
130
- if ((supportedPlatforms & BurnPlatforms.X64) == BurnPlatforms.X64)
130
+ if ((supportedPlatforms & BurnPlatforms.X86) == BurnPlatforms.X86)
131
{
132
suffix = "_X86";
133
}