// 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.Dtf.Compression { using System; using System.Collections.Generic; using System.Text; /// /// Specifies the compression level ranging from minimum compresion to /// maximum compression, or no compression at all. /// /// /// Although only four values are enumerated, any integral value between /// and can also be used. /// public enum CompressionLevel { /// Do not compress files, only store. None = 0, /// Minimum compression; fastest. Min = 1, /// A compromize between speed and compression efficiency. Normal = 6, /// Maximum compression; slowest. Max = 10 } }