diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-03-01 10:14:38 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-01 12:23:34 -0800 |
| commit | 3eb3c26c796984b64365fda077f173af8bf31559 (patch) | |
| tree | 0912d69363973bc8db704a18b1b4bcede6a84360 /src/WixToolset.Core/Compiler_Package.cs | |
| parent | 697f2cdbdcd8198d06ebf14fc2b65f0ce3fa5a94 (diff) | |
| download | wix-3eb3c26c796984b64365fda077f173af8bf31559.tar.gz wix-3eb3c26c796984b64365fda077f173af8bf31559.tar.bz2 wix-3eb3c26c796984b64365fda077f173af8bf31559.zip | |
Fix handling of suppress modularization
Partially fixes wixtoolset/issues#5944
Diffstat (limited to 'src/WixToolset.Core/Compiler_Package.cs')
| -rw-r--r-- | src/WixToolset.Core/Compiler_Package.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler_Package.cs b/src/WixToolset.Core/Compiler_Package.cs index d2728e9c..7a842ef0 100644 --- a/src/WixToolset.Core/Compiler_Package.cs +++ b/src/WixToolset.Core/Compiler_Package.cs | |||
| @@ -1515,7 +1515,10 @@ namespace WixToolset.Core | |||
| 1515 | { | 1515 | { |
| 1516 | this.Core.Write(WarningMessages.PropertyModularizationSuppressed(sourceLineNumbers)); | 1516 | this.Core.Write(WarningMessages.PropertyModularizationSuppressed(sourceLineNumbers)); |
| 1517 | 1517 | ||
| 1518 | this.Core.AddSymbol(new WixSuppressModularizationSymbol(sourceLineNumbers, id)); | 1518 | this.Core.AddSymbol(new WixSuppressModularizationSymbol(sourceLineNumbers) |
| 1519 | { | ||
| 1520 | SuppressIdentifier = id.Id | ||
| 1521 | }); | ||
| 1519 | } | 1522 | } |
| 1520 | } | 1523 | } |
| 1521 | 1524 | ||
