aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Native/CabinetCompressionLevel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.Native/CabinetCompressionLevel.cs')
-rw-r--r--src/WixToolset.Core.Native/CabinetCompressionLevel.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/WixToolset.Core.Native/CabinetCompressionLevel.cs b/src/WixToolset.Core.Native/CabinetCompressionLevel.cs
new file mode 100644
index 00000000..fce1ff41
--- /dev/null
+++ b/src/WixToolset.Core.Native/CabinetCompressionLevel.cs
@@ -0,0 +1,25 @@
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.Core.Native
4{
5 /// <summary>
6 /// Compression level to use when creating cabinet.
7 /// </summary>
8 public enum CabinetCompressionLevel
9 {
10 /// <summary>Use no compression.</summary>
11 None,
12
13 /// <summary>Use low compression.</summary>
14 Low,
15
16 /// <summary>Use medium compression.</summary>
17 Medium,
18
19 /// <summary>Use high compression.</summary>
20 High,
21
22 /// <summary>Use ms-zip compression.</summary>
23 Mszip
24 }
25} \ No newline at end of file