├── .gitattributes ├── .gitignore ├── LICENSE ├── Publish.bat ├── README.md ├── RePKG.Application ├── Constants.cs ├── Exceptions │ ├── EnumNotValidException.cs │ ├── UnknownMagicException.cs │ └── UnsafeTexException.cs ├── Extensions.cs ├── Package │ ├── PackageReader.cs │ └── PackageWriter.cs ├── RePKG.Application.csproj ├── RePKG.Application.csproj.DotSettings └── Texture │ ├── Helpers │ ├── DXT.cs │ └── RG88.cs │ ├── TexFrameInfoContainerReader.cs │ ├── TexHeaderReader.cs │ ├── TexImageContainerReader.cs │ ├── TexImageReader.cs │ ├── TexJsonInfoGenerator.cs │ ├── TexMipmapDecompressor.cs │ ├── TexReader.cs │ ├── TexToImageConverter.cs │ └── Writer │ ├── TexFrameInfoContainerWriter.cs │ ├── TexHeaderWriter.cs │ ├── TexImageContainerWriter.cs │ ├── TexImageWriter.cs │ ├── TexMipmapCompressor.cs │ └── TexWriter.cs ├── RePKG.Core ├── Package │ ├── Enums │ │ └── EntryType.cs │ ├── Interfaces │ │ ├── IPackageReader.cs │ │ └── IPackageWriter.cs │ ├── Package.cs │ ├── PackageEntry.cs │ └── PackageEntryTypeGetter.cs ├── RePKG.Core.csproj ├── RePKG.Core.csproj.DotSettings └── Texture │ ├── Enums │ ├── DXTFlags.cs │ ├── FreeImageFormat.cs │ ├── MipmapFormat.cs │ ├── TexFlags.cs │ ├── TexFormat.cs │ └── TexImageContainerVersion.cs │ ├── Helpers │ ├── EnumExtensions.cs │ ├── MipmapFormatExtensions.cs │ └── TexMipmapFormatGetter.cs │ ├── Interfaces │ ├── Data │ │ ├── ITex.cs │ │ ├── ITexFrameInfo.cs │ │ ├── ITexFrameInfoContainer.cs │ │ ├── ITexHeader.cs │ │ ├── ITexImage.cs │ │ ├── ITexImageContainer.cs │ │ └── ITexMipmap.cs │ ├── ITexFrameInfoContainerReader.cs │ ├── ITexHeaderReader.cs │ ├── ITexImageContainerReader.cs │ ├── ITexImageReader.cs │ ├── ITexJsonInfoGenerator.cs │ ├── ITexMipmapDecompressor.cs │ ├── ITexReader.cs │ └── Writer │ │ ├── ITexFrameInfoContainerWriter.cs │ │ ├── ITexHeaderWriter.cs │ │ ├── ITexImageContainerWriter.cs │ │ ├── ITexImageWriter.cs │ │ ├── ITexMipmapCompressor.cs │ │ └── ITexWriter.cs │ ├── Tex.cs │ ├── TexFrameInfo.cs │ ├── TexFrameInfoContainer.cs │ ├── TexHeader.cs │ ├── TexImage.cs │ ├── TexImageContainer.cs │ └── TexMipmap.cs ├── RePKG.Tests ├── PkgWriterTests.cs ├── RePKG.Tests.csproj ├── TestHelper.cs ├── TexDecompressingTests.cs └── TexWriterTests.cs ├── RePKG.sln ├── RePKG.sln.DotSettings.user ├── RePKG ├── Command │ ├── Extract.cs │ └── Info.cs ├── Extensions.cs ├── Helper.cs ├── Program.cs ├── RePKG.csproj ├── RePKG.csproj.DotSettings.user └── RePKG.csproj.user └── THIRD-PARTY-NOTICES.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/LICENSE -------------------------------------------------------------------------------- /Publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/Publish.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/README.md -------------------------------------------------------------------------------- /RePKG.Application/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Constants.cs -------------------------------------------------------------------------------- /RePKG.Application/Exceptions/EnumNotValidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Exceptions/EnumNotValidException.cs -------------------------------------------------------------------------------- /RePKG.Application/Exceptions/UnknownMagicException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Exceptions/UnknownMagicException.cs -------------------------------------------------------------------------------- /RePKG.Application/Exceptions/UnsafeTexException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Exceptions/UnsafeTexException.cs -------------------------------------------------------------------------------- /RePKG.Application/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Extensions.cs -------------------------------------------------------------------------------- /RePKG.Application/Package/PackageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Package/PackageReader.cs -------------------------------------------------------------------------------- /RePKG.Application/Package/PackageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Package/PackageWriter.cs -------------------------------------------------------------------------------- /RePKG.Application/RePKG.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/RePKG.Application.csproj -------------------------------------------------------------------------------- /RePKG.Application/RePKG.Application.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/RePKG.Application.csproj.DotSettings -------------------------------------------------------------------------------- /RePKG.Application/Texture/Helpers/DXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/Helpers/DXT.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/Helpers/RG88.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/Helpers/RG88.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/TexFrameInfoContainerReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/TexFrameInfoContainerReader.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/TexHeaderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/TexHeaderReader.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/TexImageContainerReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/TexImageContainerReader.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/TexImageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/TexImageReader.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/TexJsonInfoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/TexJsonInfoGenerator.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/TexMipmapDecompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/TexMipmapDecompressor.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/TexReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/TexReader.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/TexToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/TexToImageConverter.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/Writer/TexFrameInfoContainerWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/Writer/TexFrameInfoContainerWriter.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/Writer/TexHeaderWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/Writer/TexHeaderWriter.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/Writer/TexImageContainerWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/Writer/TexImageContainerWriter.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/Writer/TexImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/Writer/TexImageWriter.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/Writer/TexMipmapCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/Writer/TexMipmapCompressor.cs -------------------------------------------------------------------------------- /RePKG.Application/Texture/Writer/TexWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Application/Texture/Writer/TexWriter.cs -------------------------------------------------------------------------------- /RePKG.Core/Package/Enums/EntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Package/Enums/EntryType.cs -------------------------------------------------------------------------------- /RePKG.Core/Package/Interfaces/IPackageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Package/Interfaces/IPackageReader.cs -------------------------------------------------------------------------------- /RePKG.Core/Package/Interfaces/IPackageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Package/Interfaces/IPackageWriter.cs -------------------------------------------------------------------------------- /RePKG.Core/Package/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Package/Package.cs -------------------------------------------------------------------------------- /RePKG.Core/Package/PackageEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Package/PackageEntry.cs -------------------------------------------------------------------------------- /RePKG.Core/Package/PackageEntryTypeGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Package/PackageEntryTypeGetter.cs -------------------------------------------------------------------------------- /RePKG.Core/RePKG.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/RePKG.Core.csproj -------------------------------------------------------------------------------- /RePKG.Core/RePKG.Core.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/RePKG.Core.csproj.DotSettings -------------------------------------------------------------------------------- /RePKG.Core/Texture/Enums/DXTFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Enums/DXTFlags.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Enums/FreeImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Enums/FreeImageFormat.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Enums/MipmapFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Enums/MipmapFormat.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Enums/TexFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Enums/TexFlags.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Enums/TexFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Enums/TexFormat.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Enums/TexImageContainerVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Enums/TexImageContainerVersion.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Helpers/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Helpers/EnumExtensions.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Helpers/MipmapFormatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Helpers/MipmapFormatExtensions.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Helpers/TexMipmapFormatGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Helpers/TexMipmapFormatGetter.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Data/ITex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Data/ITex.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Data/ITexFrameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Data/ITexFrameInfo.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Data/ITexFrameInfoContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Data/ITexFrameInfoContainer.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Data/ITexHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Data/ITexHeader.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Data/ITexImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Data/ITexImage.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Data/ITexImageContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Data/ITexImageContainer.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Data/ITexMipmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Data/ITexMipmap.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/ITexFrameInfoContainerReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/ITexFrameInfoContainerReader.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/ITexHeaderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/ITexHeaderReader.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/ITexImageContainerReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/ITexImageContainerReader.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/ITexImageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/ITexImageReader.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/ITexJsonInfoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/ITexJsonInfoGenerator.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/ITexMipmapDecompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/ITexMipmapDecompressor.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/ITexReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/ITexReader.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Writer/ITexFrameInfoContainerWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Writer/ITexFrameInfoContainerWriter.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Writer/ITexHeaderWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Writer/ITexHeaderWriter.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Writer/ITexImageContainerWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Writer/ITexImageContainerWriter.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Writer/ITexImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Writer/ITexImageWriter.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Writer/ITexMipmapCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Writer/ITexMipmapCompressor.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Interfaces/Writer/ITexWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Interfaces/Writer/ITexWriter.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/Tex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/Tex.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/TexFrameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/TexFrameInfo.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/TexFrameInfoContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/TexFrameInfoContainer.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/TexHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/TexHeader.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/TexImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/TexImage.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/TexImageContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/TexImageContainer.cs -------------------------------------------------------------------------------- /RePKG.Core/Texture/TexMipmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Core/Texture/TexMipmap.cs -------------------------------------------------------------------------------- /RePKG.Tests/PkgWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Tests/PkgWriterTests.cs -------------------------------------------------------------------------------- /RePKG.Tests/RePKG.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Tests/RePKG.Tests.csproj -------------------------------------------------------------------------------- /RePKG.Tests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Tests/TestHelper.cs -------------------------------------------------------------------------------- /RePKG.Tests/TexDecompressingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Tests/TexDecompressingTests.cs -------------------------------------------------------------------------------- /RePKG.Tests/TexWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.Tests/TexWriterTests.cs -------------------------------------------------------------------------------- /RePKG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.sln -------------------------------------------------------------------------------- /RePKG.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG.sln.DotSettings.user -------------------------------------------------------------------------------- /RePKG/Command/Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG/Command/Extract.cs -------------------------------------------------------------------------------- /RePKG/Command/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG/Command/Info.cs -------------------------------------------------------------------------------- /RePKG/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG/Extensions.cs -------------------------------------------------------------------------------- /RePKG/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG/Helper.cs -------------------------------------------------------------------------------- /RePKG/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG/Program.cs -------------------------------------------------------------------------------- /RePKG/RePKG.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG/RePKG.csproj -------------------------------------------------------------------------------- /RePKG/RePKG.csproj.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG/RePKG.csproj.DotSettings.user -------------------------------------------------------------------------------- /RePKG/RePKG.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/RePKG/RePKG.csproj.user -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notscuffed/repkg/HEAD/THIRD-PARTY-NOTICES.txt --------------------------------------------------------------------------------