Add TarEntry conversion constructors (#70325)
authorCarlos Sanchez <1175054+carlossanlop@users.noreply.github.com>
Tue, 21 Jun 2022 00:59:52 +0000 (17:59 -0700)
committerGitHub <noreply@github.com>
Tue, 21 Jun 2022 00:59:52 +0000 (17:59 -0700)
commit943da70fb0701f1749d0fb058f8af2fdff65cc2c
tree630f3c3a4bb1358de2ed073d928f2eb2e9e983a8
parent715c71ae6af5775402e54d3b8ab6c4a888da3cb5
Add TarEntry conversion constructors (#70325)

* ref: Conversion constructors

* src: Conversion constructors

* tests: Conversion constructors
35 files changed:
src/libraries/System.Formats.Tar/ref/System.Formats.Tar.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/GnuTarEntry.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/PaxTarEntry.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/PosixTarEntry.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/TarEntry.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/TarHeader.Read.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/TarHeader.Write.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/TarHeader.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/TarHelpers.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/TarReader.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/TarWriter.Unix.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/TarWriter.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/UstarTarEntry.cs
src/libraries/System.Formats.Tar/src/System/Formats/Tar/V7TarEntry.cs
src/libraries/System.Formats.Tar/tests/CompressedTar.Tests.cs
src/libraries/System.Formats.Tar/tests/System.Formats.Tar.Tests.csproj
src/libraries/System.Formats.Tar/tests/TarEntry/GnuTarEntry.Conversion.Tests.cs [new file with mode: 0644]
src/libraries/System.Formats.Tar/tests/TarEntry/PaxTarEntry.Conversion.Tests.cs [new file with mode: 0644]
src/libraries/System.Formats.Tar/tests/TarEntry/TarEntry.Conversion.Tests.Base.cs [new file with mode: 0644]
src/libraries/System.Formats.Tar/tests/TarEntry/TarEntryV7.Tests.cs
src/libraries/System.Formats.Tar/tests/TarEntry/UstarTarEntry.Conversion.Tests.cs [new file with mode: 0644]
src/libraries/System.Formats.Tar/tests/TarEntry/V7TarEntry.Conversion.Tests.cs [new file with mode: 0644]
src/libraries/System.Formats.Tar/tests/TarReader/TarReader.File.Tests.cs
src/libraries/System.Formats.Tar/tests/TarTestsBase.Gnu.cs
src/libraries/System.Formats.Tar/tests/TarTestsBase.Pax.cs
src/libraries/System.Formats.Tar/tests/TarTestsBase.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.Tests.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.WriteEntry.Entry.Gnu.Tests.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.WriteEntry.Entry.Pax.Tests.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.WriteEntry.Entry.Ustar.Tests.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.WriteEntry.Entry.V7.Tests.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.WriteEntry.File.Tests.Unix.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.WriteEntry.File.Tests.Windows.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.WriteEntry.File.Tests.cs
src/libraries/System.Formats.Tar/tests/TarWriter/TarWriter.WriteEntry.Tests.cs