aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/BindStage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/BindStage.cs')
-rw-r--r--src/WixToolset.Extensibility/BindStage.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/BindStage.cs b/src/WixToolset.Extensibility/BindStage.cs
new file mode 100644
index 00000000..71ac5616
--- /dev/null
+++ b/src/WixToolset.Extensibility/BindStage.cs
@@ -0,0 +1,27 @@
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 /// <summary>
6 /// Bind stage of a file.. The reason we need this is to change the ResolveFile behavior based on if
7 /// dynamic bindpath plugin is desirable. We cannot change the signature of ResolveFile since it might
8 /// break existing implementers which derived from BinderFileManager
9 /// </summary>
10 public enum BindStage
11 {
12 /// <summary>
13 /// Normal binding
14 /// </summary>
15 Normal,
16
17 /// <summary>
18 /// Bind the file path of the target build file
19 /// </summary>
20 Target,
21
22 /// <summary>
23 /// Bind the file path of the updated build file
24 /// </summary>
25 Updated,
26 }
27}