diff options
author | Rob Mensching <rob@firegiant.com> | 2023-09-04 23:40:46 -0700 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2023-09-05 09:18:40 -0400 |
commit | f18d7e628361cd3f2ff14dd3326cbeea68df004f (patch) | |
tree | af5e4f2495257659308c85f5905ad69c30a3e6f0 /src/api | |
parent | e29b4aacf89ce060509b20a5f81df200f7d2fbc1 (diff) | |
download | wix-f18d7e628361cd3f2ff14dd3326cbeea68df004f.tar.gz wix-f18d7e628361cd3f2ff14dd3326cbeea68df004f.tar.bz2 wix-f18d7e628361cd3f2ff14dd3326cbeea68df004f.zip |
Correctly process build -outputType switch
Also add a few additional output types to built-in backends.
Fixes 7708
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs b/src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs index 9d663c65..25a255c3 100644 --- a/src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs +++ b/src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs | |||
@@ -73,6 +73,11 @@ namespace WixToolset.Extensibility.Data | |||
73 | string OutputPath { get; set; } | 73 | string OutputPath { get; set; } |
74 | 74 | ||
75 | /// <summary> | 75 | /// <summary> |
76 | /// Output type to bind to. | ||
77 | /// </summary> | ||
78 | string OutputType { get; set; } | ||
79 | |||
80 | /// <summary> | ||
76 | /// Type of PDB to create. | 81 | /// Type of PDB to create. |
77 | /// </summary> | 82 | /// </summary> |
78 | PdbType PdbType { get; set; } | 83 | PdbType PdbType { get; set; } |