diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-02-25 09:58:20 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-02-27 07:47:08 -0800 |
| commit | 760fb810ba5ecc3c6ce752a9bfa3755f7b7c0f6a (patch) | |
| tree | 3ad06ffe520f31142e23ce9e752473110d232ec5 /src/WixToolset.Core/Bind | |
| parent | 4536440f8d76346bcd120fe9e1410e428f855ee9 (diff) | |
| download | wix-760fb810ba5ecc3c6ce752a9bfa3755f7b7c0f6a.tar.gz wix-760fb810ba5ecc3c6ce752a9bfa3755f7b7c0f6a.tar.bz2 wix-760fb810ba5ecc3c6ce752a9bfa3755f7b7c0f6a.zip | |
Absorb Tag.wixext into Core as SoftwareTag element
Resolves wixtoolset/issues#5949
Diffstat (limited to 'src/WixToolset.Core/Bind')
| -rw-r--r-- | src/WixToolset.Core/Bind/FileFacade.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Bind/FileFacade.cs b/src/WixToolset.Core/Bind/FileFacade.cs index ec4e9725..9705cd01 100644 --- a/src/WixToolset.Core/Bind/FileFacade.cs +++ b/src/WixToolset.Core/Bind/FileFacade.cs | |||
| @@ -125,7 +125,7 @@ namespace WixToolset.Core.Bind | |||
| 125 | 125 | ||
| 126 | public SourceLineNumber SourceLineNumber => this.FileRow == null ? this.FileSymbol.SourceLineNumbers : this.FileRow.SourceLineNumbers; | 126 | public SourceLineNumber SourceLineNumber => this.FileRow == null ? this.FileSymbol.SourceLineNumbers : this.FileRow.SourceLineNumbers; |
| 127 | 127 | ||
| 128 | public string SourcePath => this.FileRow == null ? this.FileSymbol.Source.Path : this.FileRow.Source; | 128 | public string SourcePath => this.FileRow == null ? this.FileSymbol.Source?.Path : this.FileRow.Source; |
| 129 | 129 | ||
| 130 | public bool Compressed => this.FileRow == null ? (this.FileSymbol.Attributes & FileSymbolAttributes.Compressed) == FileSymbolAttributes.Compressed : (this.FileRow.Attributes & WindowsInstallerConstants.MsidbFileAttributesCompressed) == WindowsInstallerConstants.MsidbFileAttributesCompressed; | 130 | public bool Compressed => this.FileRow == null ? (this.FileSymbol.Attributes & FileSymbolAttributes.Compressed) == FileSymbolAttributes.Compressed : (this.FileRow.Attributes & WindowsInstallerConstants.MsidbFileAttributesCompressed) == WindowsInstallerConstants.MsidbFileAttributesCompressed; |
| 131 | 131 | ||
