aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/BindStage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Data/BindStage.cs')
-rw-r--r--src/WixToolset.Extensibility/Data/BindStage.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/BindStage.cs b/src/WixToolset.Extensibility/Data/BindStage.cs
new file mode 100644
index 00000000..559a5a5a
--- /dev/null
+++ b/src/WixToolset.Extensibility/Data/BindStage.cs
@@ -0,0 +1,22 @@
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.Data
4{
5 public enum BindStage
6 {
7 /// <summary>
8 /// Normal binding
9 /// </summary>
10 Normal,
11
12 /// <summary>
13 /// Bind the file path of the target build file
14 /// </summary>
15 Target,
16
17 /// <summary>
18 /// Bind the file path of the updated build file
19 /// </summary>
20 Updated,
21 }
22}