12 references to TarWriter
Microsoft.Build.Tasks.Core (1)
TarDirectory.cs (1)
230
using TarWriter writer = new
TarWriter
(compressionStream ?? destinationStream, format, leaveOpen: true);
Microsoft.NET.Build.Containers (7)
Layer.cs (1)
106
using (TarWriter writer =
new
(layerStream, TarEntryFormat.Pax, leaveOpen: true))
LocalDaemons\ContainerArchive.cs (3)
61
using TarWriter writer =
new
(imageStream, TarEntryFormat.Pax, leaveOpen: true);
81
using TarWriter writer =
new
(imageStream, TarEntryFormat.Pax, leaveOpen: true);
96
using TarWriter writer =
new
(imageStream, TarEntryFormat.Pax, leaveOpen: true);
LocalDaemons\DockerCli.cs (3)
312
using TarWriter writer =
new
(imageStream, TarEntryFormat.Pax, leaveOpen: true);
419
using TarWriter writer =
new
(imageStream, TarEntryFormat.Pax, leaveOpen: true);
515
using TarWriter writer =
new
(imageStream, TarEntryFormat.Pax, leaveOpen: true);
System.Formats.Tar (4)
System\Formats\Tar\TarWriter.cs (4)
33
:
this
(archiveStream, TarEntryFormat.Pax, leaveOpen: false)
46
:
this
(archiveStream, TarEntryFormat.Pax, leaveOpen)
155
/// <para>The entry will be created using the format specified in the <see cref="
TarWriter
(Stream, TarEntryFormat, bool)"/> constructor, or will use <see cref="TarEntryFormat.Pax"/> if other constructors are used.</para>
177
/// <para>The entry will be created using the format specified in the <see cref="
TarWriter
(Stream, TarEntryFormat, bool)"/> constructor, or will use <see cref="TarEntryFormat.Pax"/> if other constructors are used.</para>