ILibraryContext Interface
Context provided during library creation operations.
Properties
Section titled “Properties”| Property | Description |
|---|---|
| BindFiles | Indicates whether files should be bound into the library. |
| BindPaths | Collection of bindpaths used to bind files. |
| BindVariables | Bind variables used when binding files. |
| CancellationToken | Cancellation token. |
| Extensions | Collection of extensions used during creation of library. |
| IntermediateFolder | Intermediate folder. |
| Intermediates | Collection of intermediates to include in the library. |
| LibraryId | Identifier of the library. |
| Localizations | Collection of localization files to use in the library. |
| OutputPath | Output path. |
| ServiceProvider | Service provider. |
WixToolset.Extensibility.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
BindFiles Property
Section titled “BindFiles Property”Indicates whether files should be bound into the library.
Declaration
Section titled “Declaration”public bool BindFiles { get; set; }BindPaths Property
Section titled “BindPaths Property”Collection of bindpaths used to bind files.
Declaration
Section titled “Declaration”public System.Collections.Generic.IReadOnlyCollection<WixToolset.Extensibility.Data.IBindPath> BindPaths { get; set; }BindVariables Property
Section titled “BindVariables Property”Bind variables used when binding files.
Declaration
Section titled “Declaration”public System.Collections.Generic.IDictionary<System.String,System.String> BindVariables { get; set; }CancellationToken Property
Section titled “CancellationToken Property”Cancellation token.
Declaration
Section titled “Declaration”public System.Threading.CancellationToken CancellationToken { get; set; }Extensions Property
Section titled “Extensions Property”Collection of extensions used during creation of library.
Declaration
Section titled “Declaration”public System.Collections.Generic.IReadOnlyCollection<WixToolset.Extensibility.ILibrarianExtension> Extensions { get; set; }IntermediateFolder Property
Section titled “IntermediateFolder Property”Intermediate folder.
Declaration
Section titled “Declaration”public string IntermediateFolder { get; set; }Intermediates Property
Section titled “Intermediates Property”Collection of intermediates to include in the library.
Declaration
Section titled “Declaration”public System.Collections.Generic.IReadOnlyCollection<WixToolset.Data.Intermediate> Intermediates { get; set; }LibraryId Property
Section titled “LibraryId Property”Identifier of the library.
Declaration
Section titled “Declaration”public string LibraryId { get; set; }Localizations Property
Section titled “Localizations Property”Collection of localization files to use in the library.
Declaration
Section titled “Declaration”public System.Collections.Generic.IReadOnlyCollection<WixToolset.Data.Localization> Localizations { get; set; }OutputPath Property
Section titled “OutputPath Property”Output path.
Declaration
Section titled “Declaration”public string OutputPath { get; set; }ServiceProvider Property
Section titled “ServiceProvider Property”Service provider.
Declaration
Section titled “Declaration”public System.IServiceProvider ServiceProvider { get; set; }