diff options
author | Bob Arnson <bob@firegiant.com> | 2020-03-17 21:07:55 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-03-17 21:15:26 -0400 |
commit | f7873587d0e45ca802a9775e263c41edb0bdc299 (patch) | |
tree | f75c4e166d4eee75ee7b9104998c2273190c0fb6 | |
parent | 39e96ada32508196eb070297662e96342e675237 (diff) | |
download | wix-f7873587d0e45ca802a9775e263c41edb0bdc299.tar.gz wix-f7873587d0e45ca802a9775e263c41edb0bdc299.tar.bz2 wix-f7873587d0e45ca802a9775e263c41edb0bdc299.zip |
Partial WixPdbs stop the backend before binding.
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Extensibility/Data/IBindContext.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WixToolset.Extensibility/Data/IBindContext.cs b/src/WixToolset.Extensibility/Data/IBindContext.cs index 97c7a8f2..b6e51d6d 100644 --- a/src/WixToolset.Extensibility/Data/IBindContext.cs +++ b/src/WixToolset.Extensibility/Data/IBindContext.cs | |||
@@ -36,7 +36,9 @@ namespace WixToolset.Extensibility.Data | |||
36 | 36 | ||
37 | string OutputPath { get; set; } | 37 | string OutputPath { get; set; } |
38 | 38 | ||
39 | string OutputPdbPath { get; set; } | 39 | PdbType PdbType { get; set; } |
40 | |||
41 | string PdbPath { get; set; } | ||
40 | 42 | ||
41 | IEnumerable<string> SuppressIces { get; set; } | 43 | IEnumerable<string> SuppressIces { get; set; } |
42 | 44 | ||