aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs')
-rw-r--r--src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs b/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs
new file mode 100644
index 00000000..f4a82f36
--- /dev/null
+++ b/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs
@@ -0,0 +1,39 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Mba.Core
4{
5 using System.Collections.Generic;
6
7 /// <summary>
8 /// BA manifest data.
9 /// </summary>
10 public interface IBundleInfo
11 {
12 /// <summary>
13 ///
14 /// </summary>
15 string LogVariable { get; }
16
17 /// <summary>
18 ///
19 /// </summary>
20 string Name { get; }
21
22 /// <summary>
23 ///
24 /// </summary>
25 IDictionary<string, IPackageInfo> Packages { get; }
26
27 /// <summary>
28 ///
29 /// </summary>
30 bool PerMachine { get; }
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>
37 IPackageInfo AddRelatedBundleAsPackage(DetectRelatedBundleEventArgs e);
38 }
39} \ No newline at end of file