diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:59:45 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:59:45 -0700 |
| commit | 2bb37beda887d120a0ddabf874ad25357101faa1 (patch) | |
| tree | c35e97b03274b86cfc9ff7fd2caeee211165a140 /src/WixToolset.Core/LibraryContext.cs | |
| parent | df7413aeed3aea3425dff20ae0c8b1be3a3ab525 (diff) | |
| download | wix-2bb37beda887d120a0ddabf874ad25357101faa1.tar.gz wix-2bb37beda887d120a0ddabf874ad25357101faa1.tar.bz2 wix-2bb37beda887d120a0ddabf874ad25357101faa1.zip | |
Update to WiX Intermediate Representation
Diffstat (limited to 'src/WixToolset.Core/LibraryContext.cs')
| -rw-r--r-- | src/WixToolset.Core/LibraryContext.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/WixToolset.Core/LibraryContext.cs b/src/WixToolset.Core/LibraryContext.cs index 36e38739..b3efbffa 100644 --- a/src/WixToolset.Core/LibraryContext.cs +++ b/src/WixToolset.Core/LibraryContext.cs | |||
| @@ -2,21 +2,28 @@ | |||
| 2 | 2 | ||
| 3 | namespace WixToolset.Core | 3 | namespace WixToolset.Core |
| 4 | { | 4 | { |
| 5 | using System; | ||
| 5 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
| 6 | using WixToolset.Data; | 7 | using WixToolset.Data; |
| 7 | using WixToolset.Extensibility; | 8 | using WixToolset.Extensibility; |
| 8 | 9 | ||
| 9 | public class LibraryContext : ILibraryContext | 10 | public class LibraryContext : ILibraryContext |
| 10 | { | 11 | { |
| 12 | public IServiceProvider ServiceProvider { get; } | ||
| 13 | |||
| 14 | public Messaging Messaging { get; set; } | ||
| 15 | |||
| 11 | public bool BindFiles { get; set; } | 16 | public bool BindFiles { get; set; } |
| 12 | 17 | ||
| 13 | public IEnumerable<BindPath> BindPaths { get; set; } | 18 | public IEnumerable<BindPath> BindPaths { get; set; } |
| 14 | 19 | ||
| 15 | public IEnumerable<ILibrarianExtension> Extensions { get; set; } | 20 | public IEnumerable<ILibrarianExtension> Extensions { get; set; } |
| 16 | 21 | ||
| 22 | public string LibraryId { get; set; } | ||
| 23 | |||
| 17 | public IEnumerable<Localization> Localizations { get; set; } | 24 | public IEnumerable<Localization> Localizations { get; set; } |
| 18 | 25 | ||
| 19 | public IEnumerable<Section> Sections { get; set; } | 26 | public IEnumerable<Intermediate> Intermediates { get; set; } |
| 20 | 27 | ||
| 21 | public IBindVariableResolver WixVariableResolver { get; set; } | 28 | public IBindVariableResolver WixVariableResolver { get; set; } |
| 22 | } | 29 | } |
