aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Rows/PatchAttributeType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Rows/PatchAttributeType.cs')
-rw-r--r--src/WixToolset.Data/Rows/PatchAttributeType.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Rows/PatchAttributeType.cs b/src/WixToolset.Data/Rows/PatchAttributeType.cs
new file mode 100644
index 00000000..b585e845
--- /dev/null
+++ b/src/WixToolset.Data/Rows/PatchAttributeType.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.Data.Rows
4{
5 using System;
6
7 /// <summary>
8 /// PatchAttribute values
9 /// </summary>
10 [Flags]
11 public enum PatchAttributeType
12 {
13 None = 0,
14
15 /// <summary>Prevents the updating of the file that is in fact changed in the upgraded image relative to the target images.</summary>
16 Ignore = 1,
17
18 /// <summary>Set if the entire file should be installed rather than creating a binary patch.</summary>
19 IncludeWholeFile = 2,
20
21 /// <summary>Set to indicate that the patch is non-vital.</summary>
22 AllowIgnoreOnError = 4,
23
24 /// <summary>Allowed bits.</summary>
25 Defined = Ignore | IncludeWholeFile | AllowIgnoreOnError
26 }
27}