diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-02-05 14:33:15 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-02-05 14:43:36 -0800 |
| commit | 2b001acb812edb523a072ac0bb4f49761616c080 (patch) | |
| tree | ba2900efc6ead2e86d4dff585e8aa3782ed05bc7 /src/WixToolset.Data/WindowsInstaller/TableDefinition.cs | |
| parent | 7d8b84ebde2940b693462ca8ef22117fe6b9420c (diff) | |
| download | wix-2b001acb812edb523a072ac0bb4f49761616c080.tar.gz wix-2b001acb812edb523a072ac0bb4f49761616c080.tar.bz2 wix-2b001acb812edb523a072ac0bb4f49761616c080.zip | |
Add support for unreal columns
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/TableDefinition.cs')
| -rw-r--r-- | src/WixToolset.Data/WindowsInstaller/TableDefinition.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs index ee8ab0c1..4738ac82 100644 --- a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs +++ b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs | |||
| @@ -88,6 +88,12 @@ namespace WixToolset.Data.WindowsInstaller | |||
| 88 | var thisColumnDef = this.Columns[i]; | 88 | var thisColumnDef = this.Columns[i]; |
| 89 | var updatedColumnDef = updated.Columns[i]; | 89 | var updatedColumnDef = updated.Columns[i]; |
| 90 | 90 | ||
| 91 | // Igmore unreal columns when comparing table definitions. | ||
| 92 | if (thisColumnDef.Unreal || updatedColumnDef.Unreal) | ||
| 93 | { | ||
| 94 | continue; | ||
| 95 | } | ||
| 96 | |||
| 91 | ret = thisColumnDef.CompareTo(updatedColumnDef); | 97 | ret = thisColumnDef.CompareTo(updatedColumnDef); |
| 92 | } | 98 | } |
| 93 | } | 99 | } |
