├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.txt ├── LibXblContainer ├── ConnectedStorage.cs ├── Extensions.cs ├── LibXblContainer.csproj └── Models │ ├── BlobRecord.cs │ ├── BlobRecords.cs │ ├── Container.cs │ ├── ContainerEntryType.cs │ ├── ContainerIndex.cs │ ├── ContainerIndexEntry.cs │ ├── ContainerIndexEntryState.cs │ ├── ContainerIndexMetaData.cs │ ├── ContainerSyncFlags.cs │ ├── FileNames │ ├── IFileNameFormat.cs │ ├── WindowsFileNameFormat.cs │ └── XboxFileNameFormat.cs │ └── StoragePlatformType.cs ├── README.md ├── XblContainerReader.sln └── XblContainerReader ├── OutputUtils.cs ├── Program.cs ├── Properties └── launchSettings.json └── XblContainerReader.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LibXblContainer/ConnectedStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/ConnectedStorage.cs -------------------------------------------------------------------------------- /LibXblContainer/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Extensions.cs -------------------------------------------------------------------------------- /LibXblContainer/LibXblContainer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/LibXblContainer.csproj -------------------------------------------------------------------------------- /LibXblContainer/Models/BlobRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/BlobRecord.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/BlobRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/BlobRecords.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/Container.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/ContainerEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/ContainerEntryType.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/ContainerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/ContainerIndex.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/ContainerIndexEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/ContainerIndexEntry.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/ContainerIndexEntryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/ContainerIndexEntryState.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/ContainerIndexMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/ContainerIndexMetaData.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/ContainerSyncFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/ContainerSyncFlags.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/FileNames/IFileNameFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/FileNames/IFileNameFormat.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/FileNames/WindowsFileNameFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/FileNames/WindowsFileNameFormat.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/FileNames/XboxFileNameFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/FileNames/XboxFileNameFormat.cs -------------------------------------------------------------------------------- /LibXblContainer/Models/StoragePlatformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/LibXblContainer/Models/StoragePlatformType.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/README.md -------------------------------------------------------------------------------- /XblContainerReader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/XblContainerReader.sln -------------------------------------------------------------------------------- /XblContainerReader/OutputUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/XblContainerReader/OutputUtils.cs -------------------------------------------------------------------------------- /XblContainerReader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/XblContainerReader/Program.cs -------------------------------------------------------------------------------- /XblContainerReader/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/XblContainerReader/Properties/launchSettings.json -------------------------------------------------------------------------------- /XblContainerReader/XblContainerReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeFZ/XblContainerReader/HEAD/XblContainerReader/XblContainerReader.csproj --------------------------------------------------------------------------------