aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IBinderFileManagerCore.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-08-20 14:22:07 -0700
committerRob Mensching <rob@firegiant.com>2017-08-20 14:25:49 -0700
commit3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c (patch)
treebbe907a4c5ebf7aa5e3f02141f6e3abd31cb7b5c /src/WixToolset.Extensibility/IBinderFileManagerCore.cs
parent6dee3b45cb679786bd49a5db8fde9006d283b3e2 (diff)
downloadwix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.tar.gz
wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.tar.bz2
wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.zip
Move to .NET Core 2.0
Diffstat (limited to 'src/WixToolset.Extensibility/IBinderFileManagerCore.cs')
-rw-r--r--src/WixToolset.Extensibility/IBinderFileManagerCore.cs54
1 files changed, 54 insertions, 0 deletions
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 @@
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.Extensibility
4{
5 using System.Collections.Generic;
6 using WixToolset.Data;
7
8 public interface IBinderFileManagerCore : IMessageHandler
9 {
10 /// <summary>
11 /// Gets or sets the path to cabinet cache.
12 /// </summary>
13 /// <value>The path to cabinet cache.</value>
14 string CabCachePath { get; }
15
16 /// <summary>
17 /// Gets or sets the active subStorage used for binding.
18 /// </summary>
19 /// <value>The subStorage object.</value>
20 SubStorage ActiveSubStorage { get; }
21
22 /// <summary>
23 /// Gets or sets the output object used for binding.
24 /// </summary>
25 /// <value>The output object.</value>
26 Output Output { get; }
27
28 /// <summary>
29 /// Gets or sets the path to the temp files location.
30 /// </summary>
31 /// <value>The path to the temp files location.</value>
32 string TempFilesLocation { get; }
33
34 /// <summary>
35 /// Gets the property if re-basing target is true or false
36 /// </summary>
37 /// <value>It returns true if target bind path is to be replaced, otherwise false.</value>
38 bool RebaseTarget { get; }
39
40 /// <summary>
41 /// Gets the property if re-basing updated build is true or false
42 /// </summary>
43 /// <value>It returns true if updated bind path is to be replaced, otherwise false.</value>
44 bool RebaseUpdated { get; }
45
46 /// <summary>
47 /// Gets the collection of paths to locate files during ResolveFile for the provided BindStage and name.
48 /// </summary>
49 /// <param name="stage">Optional stage to get bind paths for. Default is normal.</param>
50 /// <param name="name">Optional name of the bind paths to get. Default is the unnamed paths.</param>
51 /// <value>The bind paths to locate files.</value>
52 IEnumerable<string> GetBindPaths(BindStage stage = BindStage.Normal, string name = null);
53 }
54}