aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-05-08 14:26:00 -0400
committerBob Arnson <bob@firegiant.com>2020-05-08 14:26:00 -0400
commitace6dbee89cfe6dfb0654640f72964255f5156b8 (patch)
tree310871d7251a0cb20d68a445b9e43231eda19473 /src
parent30ffb09e0e537bdcb01eb552bbab9766cd1e9996 (diff)
downloadwix-ace6dbee89cfe6dfb0654640f72964255f5156b8.tar.gz
wix-ace6dbee89cfe6dfb0654640f72964255f5156b8.tar.bz2
wix-ace6dbee89cfe6dfb0654640f72964255f5156b8.zip
Add `IBindContext.SuppressLayout` to suppress cab generation.
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Extensibility/Data/IBindContext.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/IBindContext.cs b/src/WixToolset.Extensibility/Data/IBindContext.cs
index 87e61d53..8a158832 100644
--- a/src/WixToolset.Extensibility/Data/IBindContext.cs
+++ b/src/WixToolset.Extensibility/Data/IBindContext.cs
@@ -44,5 +44,7 @@ namespace WixToolset.Extensibility.Data
44 IEnumerable<string> SuppressIces { get; set; } 44 IEnumerable<string> SuppressIces { get; set; }
45 45
46 bool SuppressValidation { get; set; } 46 bool SuppressValidation { get; set; }
47
48 bool SuppressLayout { get; set; }
47 } 49 }
48} 50}