diff options
Diffstat (limited to 'src/WixToolset.Data/PackagingType.cs')
-rw-r--r-- | src/WixToolset.Data/PackagingType.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/WixToolset.Data/PackagingType.cs b/src/WixToolset.Data/PackagingType.cs new file mode 100644 index 00000000..a50f1236 --- /dev/null +++ b/src/WixToolset.Data/PackagingType.cs | |||
@@ -0,0 +1,11 @@ | |||
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 | |||
3 | namespace WixToolset.Data | ||
4 | { | ||
5 | public enum PackagingType | ||
6 | { | ||
7 | Unknown, | ||
8 | Embedded, | ||
9 | External, | ||
10 | } | ||
11 | } | ||