diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IBurnBackendExtension.cs')
-rw-r--r-- | src/WixToolset.Extensibility/IBurnBackendExtension.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/IBurnBackendExtension.cs b/src/WixToolset.Extensibility/IBurnBackendExtension.cs index 569d8d10..d5f71107 100644 --- a/src/WixToolset.Extensibility/IBurnBackendExtension.cs +++ b/src/WixToolset.Extensibility/IBurnBackendExtension.cs | |||
@@ -17,6 +17,18 @@ namespace WixToolset.Extensibility | |||
17 | string ResolveUrl(string url, string fallbackUrl, string packageId, string payloadId, string fileName); | 17 | string ResolveUrl(string url, string fallbackUrl, string packageId, string payloadId, string fileName); |
18 | 18 | ||
19 | /// <summary> | 19 | /// <summary> |
20 | /// Called for each extension tuple that hasn't been handled yet. | ||
21 | /// Use IBurnBackendHelper to add data to the appropriate data manifest. | ||
22 | /// </summary> | ||
23 | /// <param name="section">The linked section.</param> | ||
24 | /// <param name="tuple">The current tuple.</param> | ||
25 | /// <returns> | ||
26 | /// True if the extension handled the tuple, false otherwise. | ||
27 | /// The Burn backend will warn on all unhandled tuples. | ||
28 | /// </returns> | ||
29 | bool TryAddTupleToDataManifest(IntermediateSection section, IntermediateTuple tuple); | ||
30 | |||
31 | /// <summary> | ||
20 | /// Called after all output changes occur and right before the output is bound into its final format. | 32 | /// Called after all output changes occur and right before the output is bound into its final format. |
21 | /// </summary> | 33 | /// </summary> |
22 | void BundleFinalize(); | 34 | void BundleFinalize(); |