Update WixSuppressModularizationSymbol
Partially fixes wixtoolset/issues#5944
Rob Mensching committed
Mar 1, 2021 at 10:17 UTC
8d5f37e98167a1e5287778880df167e64df29e11
1 file changed
+6
-1
src/WixToolset.Converters.Symbolizer/ConvertSymbols.cs
+6
-1
@@ -619,7 +619,12 @@ namespace WixToolset.Converters.Symbolizer
619
};
620
}
621
case "WixSuppressModularization":
622
- return DefaultSymbolFromRow(typeof(WixSuppressModularizationSymbol), row, columnZeroIsId: true);
622
+ {
623
+ return new WixSuppressModularizationSymbol(SourceLineNumber4(row.SourceLineNumbers))
624
+ {
625
+ SuppressIdentifier = FieldAsString(row, 0)
626
+ };
627
+ }
628
case "WixUI":
629
return DefaultSymbolFromRow(typeof(WixUISymbol), row, columnZeroIsId: true);
630
case "WixVariable":