diff options
Diffstat (limited to 'src/WixToolset.Data/Rows/WixBundlePackageType.cs')
-rw-r--r-- | src/WixToolset.Data/Rows/WixBundlePackageType.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Rows/WixBundlePackageType.cs b/src/WixToolset.Data/Rows/WixBundlePackageType.cs new file mode 100644 index 00000000..a4277a8a --- /dev/null +++ b/src/WixToolset.Data/Rows/WixBundlePackageType.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 | |||
3 | namespace WixToolset.Data.Rows | ||
4 | { | ||
5 | /// <summary> | ||
6 | /// Types of bundle packages. | ||
7 | /// </summary> | ||
8 | public enum WixBundlePackageType | ||
9 | { | ||
10 | Exe, | ||
11 | Msi, | ||
12 | Msp, | ||
13 | Msu, | ||
14 | } | ||
15 | } | ||