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
196
if (!TryGetCompression(out
TarCompression
compression))
221
TarCompression
.GZip => new GZipStream(destinationStream, CompressionLevel.Optimal),
222
TarCompression
.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"/>.
449
private bool TryGetCompression(out
TarCompression
compression)
451
compression =
TarCompression
.None;
458
if (!Enum.TryParse(Compression, ignoreCase: true, out
TarCompression
parsed) || !Enum.IsDefined(typeof(
TarCompression
), parsed))