aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/FileFormat.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/FileFormat.cs')
-rw-r--r--src/WixToolset.Data/FileFormat.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/WixToolset.Data/FileFormat.cs b/src/WixToolset.Data/FileFormat.cs
new file mode 100644
index 00000000..9bb54fca
--- /dev/null
+++ b/src/WixToolset.Data/FileFormat.cs
@@ -0,0 +1,17 @@
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
4{
5 public enum FileFormat
6 {
7 Unknown,
8
9 Wixobj,
10
11 Wixlib,
12
13 Wixout,
14
15 Wixpdb,
16 }
17}