From 62352fabd541aaa9d0a2c957c4bdd4b9c682df9c Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 11 Dec 2019 19:34:47 +1100 Subject: Import files from BootstrapperCore repo. --- src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs (limited to 'src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs') diff --git a/src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs b/src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs new file mode 100644 index 00000000..c8c6e6e3 --- /dev/null +++ b/src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs @@ -0,0 +1,12 @@ +// 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. + +namespace WixToolset.BootstrapperCore +{ + using System.IO; + + public interface IBootstrapperApplicationData + { + FileInfo BADataFile { get; } + IBundleInfo Bundle { get; } + } +} \ No newline at end of file -- cgit v1.2.3-55-g6feb