diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-08-11 00:39:04 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-08-15 01:51:22 -0700 |
| commit | 4ebc33174c02e1c9f5693b5ef38ecfe3292c687f (patch) | |
| tree | 5800ee5feb0cb30d71c706d36ce2ef857e9b87c3 /src/WixToolset.Data/SectionType.cs | |
| parent | b558e6bb06aa27f57670736bfd3e22cc34ab0669 (diff) | |
| download | wix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.tar.gz wix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.tar.bz2 wix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.zip | |
Move to .NET Core 2.0
Diffstat (limited to 'src/WixToolset.Data/SectionType.cs')
| -rw-r--r-- | src/WixToolset.Data/SectionType.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/WixToolset.Data/SectionType.cs b/src/WixToolset.Data/SectionType.cs new file mode 100644 index 00000000..3322ba1a --- /dev/null +++ b/src/WixToolset.Data/SectionType.cs | |||
| @@ -0,0 +1,31 @@ | |||
| 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 | /// <summary> | ||
| 6 | /// Type of section. | ||
| 7 | /// </summary> | ||
| 8 | public enum SectionType | ||
| 9 | { | ||
| 10 | /// <summary>Unknown section type, default and invalid.</summary> | ||
| 11 | Unknown, | ||
| 12 | |||
| 13 | /// <summary>Bundle section type.</summary> | ||
| 14 | Bundle, | ||
| 15 | |||
| 16 | /// <summary>Fragment section type.</summary> | ||
| 17 | Fragment, | ||
| 18 | |||
| 19 | /// <summary>Module section type.</summary> | ||
| 20 | Module, | ||
| 21 | |||
| 22 | /// <summary>Product section type.</summary> | ||
| 23 | Product, | ||
| 24 | |||
| 25 | /// <summary>Patch creation section type.</summary> | ||
| 26 | PatchCreation, | ||
| 27 | |||
| 28 | /// <summary>Patch section type.</summary> | ||
| 29 | Patch | ||
| 30 | } | ||
| 31 | } | ||
