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, 0 insertions, 27 deletions
diff --git a/src/WixToolset.Extensibility/BindStage.cs b/src/WixToolset.Extensibility/BindStage.cs
deleted file mode 100644
index 71ac5616..00000000
--- a/src/WixToolset.Extensibility/BindStage.cs
+++ /dev/null
@@ -1,27 +0,0 @@
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}