diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-02-06 18:09:45 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-02-06 18:14:25 -0500 |
| commit | 9feb0090d2cdd0979bea90ba9aa13dc541f47054 (patch) | |
| tree | 09cd625c1453835bc2d281db2069ca6a3886cacf /src/WixToolset.Core | |
| parent | 6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d (diff) | |
| download | wix-9feb0090d2cdd0979bea90ba9aa13dc541f47054.tar.gz wix-9feb0090d2cdd0979bea90ba9aa13dc541f47054.tar.bz2 wix-9feb0090d2cdd0979bea90ba9aa13dc541f47054.zip | |
Add the bound package's WixOutput to BindResult.
Diffstat (limited to 'src/WixToolset.Core')
| -rw-r--r-- | src/WixToolset.Core/BindResult.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixToolset.Core/BindResult.cs b/src/WixToolset.Core/BindResult.cs index 7883fabd..c711b540 100644 --- a/src/WixToolset.Core/BindResult.cs +++ b/src/WixToolset.Core/BindResult.cs | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | namespace WixToolset.Core | 3 | namespace WixToolset.Core |
| 4 | { | 4 | { |
| 5 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
| 6 | using WixToolset.Data; | ||
| 6 | using WixToolset.Extensibility.Data; | 7 | using WixToolset.Extensibility.Data; |
| 7 | 8 | ||
| 8 | internal class BindResult : IBindResult | 9 | internal class BindResult : IBindResult |
| @@ -10,5 +11,7 @@ namespace WixToolset.Core | |||
| 10 | public IEnumerable<IFileTransfer> FileTransfers { get; set; } | 11 | public IEnumerable<IFileTransfer> FileTransfers { get; set; } |
| 11 | 12 | ||
| 12 | public IEnumerable<ITrackedFile> TrackedFiles { get; set; } | 13 | public IEnumerable<ITrackedFile> TrackedFiles { get; set; } |
| 14 | |||
| 15 | public WixOutput Wixout { get; set; } | ||
| 13 | } | 16 | } |
| 14 | } | 17 | } |
