main
cs 22 lines 668 Bytes
Raw
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.BootstrapperApplicationApi
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 }