aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Rows/WixChainAttributes.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Rows/WixChainAttributes.cs')
-rw-r--r--src/WixToolset.Data/Rows/WixChainAttributes.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Rows/WixChainAttributes.cs b/src/WixToolset.Data/Rows/WixChainAttributes.cs
new file mode 100644
index 00000000..017505bc
--- /dev/null
+++ b/src/WixToolset.Data/Rows/WixChainAttributes.cs
@@ -0,0 +1,15 @@
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 [Flags]
8 public enum WixChainAttributes
9 {
10 None = 0x0,
11 DisableRollback = 0x1,
12 DisableSystemRestore = 0x2,
13 ParallelCache = 0x4,
14 }
15}