aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-03-17 21:07:55 -0400
committerBob Arnson <bob@firegiant.com>2020-03-17 21:15:26 -0400
commitf7873587d0e45ca802a9775e263c41edb0bdc299 (patch)
treef75c4e166d4eee75ee7b9104998c2273190c0fb6
parent39e96ada32508196eb070297662e96342e675237 (diff)
downloadwix-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.cs4
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