aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/IBootstrapperApplicationData.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-22 05:46:03 -0700
committerRob Mensching <rob@firegiant.com>2021-04-29 16:41:44 -0700
commitc00516901e6b67e398396b14fe7682d0376f8643 (patch)
treeb0d62089a1c5700c7f2c3e3790750bf2d8ea33c0 /src/api/burn/WixToolset.Mba.Core/IBootstrapperApplicationData.cs
parent8eb98efd2175d9ece2e4639d43081667af9a4990 (diff)
downloadwix-c00516901e6b67e398396b14fe7682d0376f8643.tar.gz
wix-c00516901e6b67e398396b14fe7682d0376f8643.tar.bz2
wix-c00516901e6b67e398396b14fe7682d0376f8643.zip
Move balutil into API/burn
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/IBootstrapperApplicationData.cs')
-rw-r--r--src/api/burn/WixToolset.Mba.Core/IBootstrapperApplicationData.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/IBootstrapperApplicationData.cs b/src/api/burn/WixToolset.Mba.Core/IBootstrapperApplicationData.cs
new file mode 100644
index 00000000..23a1c8a3
--- /dev/null
+++ b/src/api/burn/WixToolset.Mba.Core/IBootstrapperApplicationData.cs
@@ -0,0 +1,22 @@
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.IO;
6
7 /// <summary>
8 /// Interface for BootstrapperApplicationData.xml.
9 /// </summary>
10 public interface IBootstrapperApplicationData
11 {
12 /// <summary>
13 /// The BootstrapperApplicationData.xml file.
14 /// </summary>
15 FileInfo BADataFile { get; }
16
17 /// <summary>
18 /// The BA manifest.
19 /// </summary>
20 IBundleInfo Bundle { get; }
21 }
22} \ No newline at end of file