diff options
Diffstat (limited to 'src/WixToolset.Mba.Core/IBundleInfo.cs')
-rw-r--r-- | src/WixToolset.Mba.Core/IBundleInfo.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/WixToolset.Mba.Core/IBundleInfo.cs b/src/WixToolset.Mba.Core/IBundleInfo.cs index d471c677..f4a82f36 100644 --- a/src/WixToolset.Mba.Core/IBundleInfo.cs +++ b/src/WixToolset.Mba.Core/IBundleInfo.cs | |||
@@ -4,13 +4,36 @@ namespace WixToolset.Mba.Core | |||
4 | { | 4 | { |
5 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
6 | 6 | ||
7 | /// <summary> | ||
8 | /// BA manifest data. | ||
9 | /// </summary> | ||
7 | public interface IBundleInfo | 10 | public interface IBundleInfo |
8 | { | 11 | { |
12 | /// <summary> | ||
13 | /// | ||
14 | /// </summary> | ||
9 | string LogVariable { get; } | 15 | string LogVariable { get; } |
16 | |||
17 | /// <summary> | ||
18 | /// | ||
19 | /// </summary> | ||
10 | string Name { get; } | 20 | string Name { get; } |
21 | |||
22 | /// <summary> | ||
23 | /// | ||
24 | /// </summary> | ||
11 | IDictionary<string, IPackageInfo> Packages { get; } | 25 | IDictionary<string, IPackageInfo> Packages { get; } |
26 | |||
27 | /// <summary> | ||
28 | /// | ||
29 | /// </summary> | ||
12 | bool PerMachine { get; } | 30 | bool PerMachine { get; } |
13 | 31 | ||
32 | /// <summary> | ||
33 | /// Adds a related bundle as a package. | ||
34 | /// </summary> | ||
35 | /// <param name="e"></param> | ||
36 | /// <returns>The created <see cref="IPackageInfo"/>.</returns> | ||
14 | IPackageInfo AddRelatedBundleAsPackage(DetectRelatedBundleEventArgs e); | 37 | IPackageInfo AddRelatedBundleAsPackage(DetectRelatedBundleEventArgs e); |
15 | } | 38 | } |
16 | } \ No newline at end of file | 39 | } \ No newline at end of file |