diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-03-01 10:17:41 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-01 12:32:00 -0800 |
| commit | 8d5f37e98167a1e5287778880df167e64df29e11 (patch) | |
| tree | 8faff5982e3e156a11617567d949c490e7f37567 /src | |
| parent | e9ef9924b00fab9dc3988d10d50d1f11d1ddf097 (diff) | |
| download | wix-8d5f37e98167a1e5287778880df167e64df29e11.tar.gz wix-8d5f37e98167a1e5287778880df167e64df29e11.tar.bz2 wix-8d5f37e98167a1e5287778880df167e64df29e11.zip | |
Update WixSuppressModularizationSymbol
Partially fixes wixtoolset/issues#5944
Diffstat (limited to 'src')
| -rw-r--r-- | src/WixToolset.Converters.Symbolizer/ConvertSymbols.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/WixToolset.Converters.Symbolizer/ConvertSymbols.cs b/src/WixToolset.Converters.Symbolizer/ConvertSymbols.cs index 92e247e5..b8badf2c 100644 --- a/src/WixToolset.Converters.Symbolizer/ConvertSymbols.cs +++ b/src/WixToolset.Converters.Symbolizer/ConvertSymbols.cs | |||
| @@ -619,7 +619,12 @@ namespace WixToolset.Converters.Symbolizer | |||
| 619 | }; | 619 | }; |
| 620 | } | 620 | } |
| 621 | case "WixSuppressModularization": | 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 | } | ||
| 623 | case "WixUI": | 628 | case "WixUI": |
| 624 | return DefaultSymbolFromRow(typeof(WixUISymbol), row, columnZeroIsId: true); | 629 | return DefaultSymbolFromRow(typeof(WixUISymbol), row, columnZeroIsId: true); |
| 625 | case "WixVariable": | 630 | case "WixVariable": |
