aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/InifFileActionType.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-08 13:35:21 -0700
committerRob Mensching <rob@firegiant.com>2019-05-08 13:44:59 -0700
commitef6485ac4a03333701d343c1e3a52d25805c58f1 (patch)
tree3093b1410e651a90c3776b42090bb4e62e98c514 /src/WixToolset.Data/Tuples/InifFileActionType.cs
parent6e7a3274a1710a734e5369d0a1703b9c9ac9345b (diff)
downloadwix-ef6485ac4a03333701d343c1e3a52d25805c58f1.tar.gz
wix-ef6485ac4a03333701d343c1e3a52d25805c58f1.tar.bz2
wix-ef6485ac4a03333701d343c1e3a52d25805c58f1.zip
Add additional strongly typed tuples
Diffstat (limited to 'src/WixToolset.Data/Tuples/InifFileActionType.cs')
-rw-r--r--src/WixToolset.Data/Tuples/InifFileActionType.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Tuples/InifFileActionType.cs b/src/WixToolset.Data/Tuples/InifFileActionType.cs
new file mode 100644
index 00000000..94172f47
--- /dev/null
+++ b/src/WixToolset.Data/Tuples/InifFileActionType.cs
@@ -0,0 +1,13 @@
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.Tuples
4{
5 public enum InifFileActionType
6 {
7 AddLine,
8 AddTag,
9 CreateLine,
10 RemoveLine,
11 RemoveTag,
12 }
13} \ No newline at end of file