From ea3d18595a610ee07b03f07af4f03cf75b5ab420 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 29 Nov 2017 14:08:08 -0800 Subject: Improved cabinet handling --- .../CabinetCompressionLevel.cs | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/WixToolset.Core.Native/CabinetCompressionLevel.cs (limited to 'src/WixToolset.Core.Native/CabinetCompressionLevel.cs') 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 @@ +// 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. + +namespace WixToolset.Core.Native +{ + /// + /// Compression level to use when creating cabinet. + /// + public enum CabinetCompressionLevel + { + /// Use no compression. + None, + + /// Use low compression. + Low, + + /// Use medium compression. + Medium, + + /// Use high compression. + High, + + /// Use ms-zip compression. + Mszip + } +} \ No newline at end of file -- cgit v1.2.3-55-g6feb