11 references to TarCompression
Microsoft.Build.Tasks.Core (11)
TarDirectory.cs (11)
78/// Like <see cref="Format"/>, this is typed as <see cref="string"/> rather than <see cref="TarCompression"/>. 80/// the parent process by assembly-qualified name; <see cref="TarCompression"/> is nested in this task, which 196if (!TryGetCompression(out TarCompression compression)) 221TarCompression.GZip => new GZipStream(destinationStream, CompressionLevel.Optimal), 222TarCompression.ZStandard => new ZstandardStream(destinationStream, CompressionLevel.Optimal), 445/// Resolves <see cref="Compression"/> to a <see cref="TarCompression"/>. An empty value selects 446/// <see cref="TarCompression.None"/>. 449private bool TryGetCompression(out TarCompression compression) 451compression = TarCompression.None; 458if (!Enum.TryParse(Compression, ignoreCase: true, out TarCompression parsed) || !Enum.IsDefined(typeof(TarCompression), parsed))