From 3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 20 Aug 2017 14:22:07 -0700 Subject: Move to .NET Core 2.0 --- .../IBinderFileManagerCore.cs | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 src/WixToolset.Extensibility/IBinderFileManagerCore.cs (limited to 'src/WixToolset.Extensibility/IBinderFileManagerCore.cs') diff --git a/src/WixToolset.Extensibility/IBinderFileManagerCore.cs b/src/WixToolset.Extensibility/IBinderFileManagerCore.cs new file mode 100644 index 00000000..f5adf4e1 --- /dev/null +++ b/src/WixToolset.Extensibility/IBinderFileManagerCore.cs @@ -0,0 +1,54 @@ +// 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.Extensibility +{ + using System.Collections.Generic; + using WixToolset.Data; + + public interface IBinderFileManagerCore : IMessageHandler + { + /// + /// Gets or sets the path to cabinet cache. + /// + /// The path to cabinet cache. + string CabCachePath { get; } + + /// + /// Gets or sets the active subStorage used for binding. + /// + /// The subStorage object. + SubStorage ActiveSubStorage { get; } + + /// + /// Gets or sets the output object used for binding. + /// + /// The output object. + Output Output { get; } + + /// + /// Gets or sets the path to the temp files location. + /// + /// The path to the temp files location. + string TempFilesLocation { get; } + + /// + /// Gets the property if re-basing target is true or false + /// + /// It returns true if target bind path is to be replaced, otherwise false. + bool RebaseTarget { get; } + + /// + /// Gets the property if re-basing updated build is true or false + /// + /// It returns true if updated bind path is to be replaced, otherwise false. + bool RebaseUpdated { get; } + + /// + /// Gets the collection of paths to locate files during ResolveFile for the provided BindStage and name. + /// + /// Optional stage to get bind paths for. Default is normal. + /// Optional name of the bind paths to get. Default is the unnamed paths. + /// The bind paths to locate files. + IEnumerable GetBindPaths(BindStage stage = BindStage.Normal, string name = null); + } +} -- cgit v1.2.3-55-g6feb