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/CompressionLevel.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/CompressionLevel.cs')
| -rw-r--r-- | src/WixToolset.Data/CompressionLevel.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/WixToolset.Data/CompressionLevel.cs b/src/WixToolset.Data/CompressionLevel.cs new file mode 100644 index 00000000..13242051 --- /dev/null +++ b/src/WixToolset.Data/CompressionLevel.cs | |||
| @@ -0,0 +1,26 @@ | |||
| 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 | |||
| 6 | /// <summary> | ||
| 7 | /// Compression level to use when creating cabinet. | ||
| 8 | /// </summary> | ||
| 9 | public enum CompressionLevel | ||
| 10 | { | ||
| 11 | /// <summary>Use no compression.</summary> | ||
| 12 | None, | ||
| 13 | |||
| 14 | /// <summary>Use low compression.</summary> | ||
| 15 | Low, | ||
| 16 | |||
| 17 | /// <summary>Use medium compression.</summary> | ||
| 18 | Medium, | ||
| 19 | |||
| 20 | /// <summary>Use high compression.</summary> | ||
| 21 | High, | ||
| 22 | |||
| 23 | /// <summary>Use ms-zip compression.</summary> | ||
| 24 | Mszip | ||
| 25 | } | ||
| 26 | } | ||
