diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Mba.Core/IBundleInfo.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/WixToolset.Mba.Core/IBundleInfo.cs b/src/WixToolset.Mba.Core/IBundleInfo.cs new file mode 100644 index 00000000..a5f4b9c7 --- /dev/null +++ b/src/WixToolset.Mba.Core/IBundleInfo.cs | |||
@@ -0,0 +1,16 @@ | |||
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 | |||
3 | namespace WixToolset.BootstrapperCore | ||
4 | { | ||
5 | using System.Collections.Generic; | ||
6 | |||
7 | public interface IBundleInfo | ||
8 | { | ||
9 | string LogVariable { get; } | ||
10 | string Name { get; } | ||
11 | IDictionary<string, IPackageInfo> Packages { get; } | ||
12 | bool PerMachine { get; } | ||
13 | |||
14 | void AddRelatedBundleAsPackage(DetectRelatedBundleEventArgs e); | ||
15 | } | ||
16 | } \ No newline at end of file | ||