├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── MobilePackageGen.sln ├── license.md ├── publish_win_arm64.cmd ├── publish_win_x64.cmd ├── readme.md ├── src ├── Applications │ ├── CabSorter │ │ ├── CabSorter.csproj │ │ ├── CabinetSorter.cs │ │ ├── Program.cs │ │ ├── Substream.cs │ │ ├── UpdateHistory │ │ │ ├── Disk.cs │ │ │ ├── Disks.cs │ │ │ ├── Id.cs │ │ │ ├── Identity.cs │ │ │ ├── Package.cs │ │ │ ├── Packages.cs │ │ │ ├── Partition.cs │ │ │ ├── Partitions.cs │ │ │ ├── StoreId.cs │ │ │ ├── Type.cs │ │ │ ├── UpdateEvent.cs │ │ │ ├── UpdateEvents.cs │ │ │ ├── UpdateHistory.cs │ │ │ ├── UpdateOSOutput.cs │ │ │ └── Version.cs │ │ └── XmlUtils.cs │ ├── CbsToReg │ │ ├── CbsToReg.cs │ │ ├── CbsToReg.csproj │ │ ├── Dsm │ │ │ ├── FileEntry.cs │ │ │ ├── Files.cs │ │ │ ├── Identity.cs │ │ │ ├── Package.cs │ │ │ └── Version.cs │ │ ├── Mum │ │ │ ├── Assembly.cs │ │ │ ├── AssemblyIdentity.cs │ │ │ ├── Component.cs │ │ │ ├── CustomInformation.cs │ │ │ ├── File.cs │ │ │ ├── Package.cs │ │ │ ├── PhoneInformation.cs │ │ │ ├── RegistryKey.cs │ │ │ ├── RegistryValue.cs │ │ │ ├── SecurityDescriptor.cs │ │ │ └── Update.cs │ │ ├── Program.cs │ │ ├── RegistryCollection.cs │ │ └── RegistryValue.cs │ ├── MobilePackageGen │ │ ├── MobilePackageGen.csproj │ │ └── Program.cs │ ├── Playground │ │ ├── CatalogManager.cs │ │ ├── NativeMethods.cs │ │ ├── Playground.csproj │ │ ├── Program.cs │ │ └── Test.cs │ ├── SecWim2Wim │ │ ├── Program.cs │ │ └── SecWim2Wim.csproj │ └── WPBuildInfo │ │ ├── BuildInfo.cs │ │ ├── DetectionHandler.cs │ │ ├── GZipDecompressor.cs │ │ ├── Program.cs │ │ ├── UpdateHistory │ │ ├── Disk.cs │ │ ├── Disks.cs │ │ ├── Id.cs │ │ ├── Identity.cs │ │ ├── Package.cs │ │ ├── Packages.cs │ │ ├── Partition.cs │ │ ├── Partitions.cs │ │ ├── StoreId.cs │ │ ├── Type.cs │ │ ├── UpdateEvent.cs │ │ ├── UpdateEvents.cs │ │ ├── UpdateHistory.cs │ │ ├── UpdateOSOutput.cs │ │ └── Version.cs │ │ ├── WPBuildInfo.csproj │ │ ├── XmlDsm │ │ ├── FileEntry.cs │ │ ├── Files.cs │ │ ├── Identity.cs │ │ ├── Package.cs │ │ └── Version.cs │ │ └── XmlMum │ │ ├── Assembly.cs │ │ ├── AssemblyIdentity.cs │ │ ├── Component.cs │ │ ├── CustomInformation.cs │ │ ├── File.cs │ │ ├── Package.cs │ │ ├── PhoneInformation.cs │ │ ├── RegistryKey.cs │ │ ├── RegistryValue.cs │ │ ├── SecurityDescriptor.cs │ │ └── Update.cs ├── Archives.DiscUtils │ ├── ARM64 │ │ └── 7z.dll │ ├── ArchiveBridge.cs │ ├── Archives.DiscUtils.csproj │ ├── SevenZipExtractor │ │ ├── ArchiveFile.cs │ │ ├── ArchiveFileCallback.cs │ │ ├── ArchiveStreamCallback.cs │ │ ├── ArchiveStreamsCallback.cs │ │ ├── Entry.cs │ │ ├── Formats.cs │ │ ├── IArchiveExtractCallback.cs │ │ ├── Kernel32Dll.cs │ │ ├── LICENSE │ │ ├── SafeLibraryHandle.cs │ │ ├── SevenZipException.cs │ │ ├── SevenZipExtractor.csproj │ │ ├── SevenZipExtractor.targets │ │ ├── SevenZipFormat.cs │ │ ├── SevenZipHandle.cs │ │ └── SevenZipInterface.cs │ ├── x64 │ │ └── 7z.dll │ └── x86 │ │ └── 7z.dll ├── Cabinet │ ├── Cabinet.Net.csproj │ ├── Cabinet.cs │ ├── CabinetExtractor.cs │ ├── LICENSE │ ├── StreamExtensions.cs │ ├── Structures.cs │ └── Xna │ │ └── LzxDecoder.cs ├── LibSxS │ ├── Delta │ │ ├── Constants.cs │ │ ├── DeltaAPI.cs │ │ ├── DeltaFileType.cs │ │ ├── DeltaFlags.cs │ │ ├── DeltaHash.cs │ │ ├── DeltaHeaderInfo.cs │ │ ├── DeltaInput.cs │ │ ├── DeltaInputFlags.cs │ │ ├── DeltaOutput.cs │ │ ├── FileTime.cs │ │ └── NativeMethods.cs │ └── LibSxS.csproj ├── Microsoft.Deployment.Compression.Cab │ ├── CabEngine.cs │ ├── CabException.cs │ ├── CabFileInfo.cs │ ├── CabInfo.cs │ ├── CabPacker.cs │ ├── CabUnpacker.cs │ ├── CabWorker.cs │ ├── Errors.resources │ ├── Errors.txt │ ├── HandleManager.cs │ ├── Microsoft.Deployment.Compression.Cab.csproj │ └── NativeMethods.cs ├── Microsoft.Deployment.Compression │ ├── ArchiveException.cs │ ├── ArchiveFileInfo.cs │ ├── ArchiveFileStreamContext.cs │ ├── ArchiveFileStreamContext2.cs │ ├── ArchiveInfo.cs │ ├── ArchiveProgressEventArgs.cs │ ├── ArchiveProgressType.cs │ ├── BasicUnpackStreamContext.cs │ ├── CargoStream.cs │ ├── CompressionEngine.cs │ ├── CompressionLevel.cs │ ├── DuplicateStream.cs │ ├── IPackStreamContext.cs │ ├── IUnpackStreamContext.cs │ ├── Microsoft.Deployment.Compression.csproj │ ├── OffsetStream.cs │ └── SafeNativeMethods.cs ├── MobilePackageGen.Adapters │ ├── Adapters │ │ ├── DiskCommon.cs │ │ ├── FileSystemPartition.cs │ │ ├── FullFlashUpdate │ │ │ └── Disk.cs │ │ ├── RawDisk │ │ │ └── Disk.cs │ │ ├── RealFileSystem │ │ │ ├── DeferredStreamPartition.cs │ │ │ ├── Disk.cs │ │ │ ├── DiskPartitionUtils.cs │ │ │ ├── PartitionInfo.cs │ │ │ └── RealFileSystemBridge.cs │ │ ├── Vhdx │ │ │ └── Disk.cs │ │ └── Wim │ │ │ └── Disk.cs │ ├── DevicePathUtils.cs │ ├── DiskLoader.cs │ ├── GPT │ │ ├── GPT.cs │ │ └── Partition.cs │ ├── Helpers │ │ └── ByteOperations.cs │ ├── IDisk.cs │ ├── IPartition.cs │ ├── Logging.cs │ ├── LoggingLevel.cs │ ├── MobilePackageGen.Adapters.csproj │ └── TempManager.cs └── MobilePackageGen.Common │ ├── AppBuilder.cs │ ├── AppxPackage.cs │ ├── BuildMetadataHandler.cs │ ├── CBSBuilder.cs │ ├── CabinetBuilder.cs │ ├── CabinetFileInfo.cs │ ├── ContainerOSWrapperBuilder.cs │ ├── DriverBuilder.cs │ ├── GZipDecompressor.cs │ ├── IFileSystemExtensions.cs │ ├── MobilePackageGen.Common.csproj │ ├── RemakeAppx │ └── Program.cs │ ├── SPKGBuilder.cs │ ├── Substream.cs │ ├── UpdateHistory │ ├── Disk.cs │ ├── Disks.cs │ ├── Id.cs │ ├── Identity.cs │ ├── Package.cs │ ├── Packages.cs │ ├── Partition.cs │ ├── Partitions.cs │ ├── StoreId.cs │ ├── Type.cs │ ├── UpdateEvent.cs │ ├── UpdateEvents.cs │ ├── UpdateHistory.cs │ ├── UpdateOSOutput.cs │ └── Version.cs │ ├── XmlDsm │ ├── FileEntry.cs │ ├── Files.cs │ ├── Identity.cs │ ├── Package.cs │ └── Version.cs │ ├── XmlMum │ ├── Assembly.cs │ ├── AssemblyIdentity.cs │ ├── Component.cs │ ├── CustomInformation.cs │ ├── File.cs │ ├── Package.cs │ ├── PhoneInformation.cs │ ├── RegistryKey.cs │ ├── RegistryValue.cs │ ├── SecurityDescriptor.cs │ └── Update.cs │ └── XmlUtils.cs └── thirdparty ├── DeflateBlockCompressor ├── Compressed.cs ├── DeflateBlock.cs ├── DeflateBlockCompressor.csproj ├── LICENSE.txt └── ZStreamWrapper.cs └── DotnetPackaging.Msix ├── Core ├── BlockMap │ └── FileBlockInfo.cs ├── Compression │ ├── Block.cs │ ├── Compressor.cs │ ├── Extensions.cs │ ├── ObservableStream.cs │ └── StreamExtensions.cs ├── ContentTypes │ ├── ContentTypesGenerator.cs │ ├── ContentTypesModel.cs │ ├── ContentTypesSerializer.cs │ ├── DefaultContentType.cs │ └── OverrideContentType.cs ├── MakeAppxDeflate.cs ├── Manifest │ └── AppManifestGenerator.cs ├── MsixBuilder.cs ├── MsixEntry.cs ├── MsixEntryFactory.cs └── MsixPackager.cs ├── DotnetPackaging.Msix.csproj ├── GlobalUsings.cs ├── LICENSE ├── Msix.cs ├── README.md └── RemakeAppxTestContent ├── Minimal └── Contents │ ├── AppxManifest.xml │ └── Assets │ ├── Square150x150Logo.png │ ├── Square44x44Logo.png │ └── StoreLogo.png └── i386 ├── Microsoft.Diagnostics.Tracing.EventSource.dll ├── Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest ├── Microsoft.Windows.Build.Appx.OpcServices.dll.manifest ├── appxpackaging.dll ├── makeappx.exe └── opcservices.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/.gitmodules -------------------------------------------------------------------------------- /MobilePackageGen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/MobilePackageGen.sln -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/license.md -------------------------------------------------------------------------------- /publish_win_arm64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/publish_win_arm64.cmd -------------------------------------------------------------------------------- /publish_win_x64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/publish_win_x64.cmd -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/readme.md -------------------------------------------------------------------------------- /src/Applications/CabSorter/CabSorter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/CabSorter.csproj -------------------------------------------------------------------------------- /src/Applications/CabSorter/CabinetSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/CabinetSorter.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/Program.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/Substream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/Substream.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Disk.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Disks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Disks.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Id.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Identity.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Package.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Packages.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Partition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Partition.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Partitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Partitions.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/StoreId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/StoreId.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Type.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/UpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/UpdateEvent.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/UpdateEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/UpdateEvents.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/UpdateHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/UpdateHistory.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/UpdateOSOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/UpdateOSOutput.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/UpdateHistory/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/UpdateHistory/Version.cs -------------------------------------------------------------------------------- /src/Applications/CabSorter/XmlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CabSorter/XmlUtils.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/CbsToReg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/CbsToReg.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/CbsToReg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/CbsToReg.csproj -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Dsm/FileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Dsm/FileEntry.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Dsm/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Dsm/Files.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Dsm/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Dsm/Identity.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Dsm/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Dsm/Package.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Dsm/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Dsm/Version.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/Assembly.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/AssemblyIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/AssemblyIdentity.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/Component.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/CustomInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/CustomInformation.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/File.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/Package.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/PhoneInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/PhoneInformation.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/RegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/RegistryKey.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/RegistryValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/RegistryValue.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/SecurityDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/SecurityDescriptor.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Mum/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Mum/Update.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/Program.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/RegistryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/RegistryCollection.cs -------------------------------------------------------------------------------- /src/Applications/CbsToReg/RegistryValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/CbsToReg/RegistryValue.cs -------------------------------------------------------------------------------- /src/Applications/MobilePackageGen/MobilePackageGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/MobilePackageGen/MobilePackageGen.csproj -------------------------------------------------------------------------------- /src/Applications/MobilePackageGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/MobilePackageGen/Program.cs -------------------------------------------------------------------------------- /src/Applications/Playground/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/Playground/CatalogManager.cs -------------------------------------------------------------------------------- /src/Applications/Playground/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/Playground/NativeMethods.cs -------------------------------------------------------------------------------- /src/Applications/Playground/Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/Playground/Playground.csproj -------------------------------------------------------------------------------- /src/Applications/Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/Playground/Program.cs -------------------------------------------------------------------------------- /src/Applications/Playground/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/Playground/Test.cs -------------------------------------------------------------------------------- /src/Applications/SecWim2Wim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/SecWim2Wim/Program.cs -------------------------------------------------------------------------------- /src/Applications/SecWim2Wim/SecWim2Wim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/SecWim2Wim/SecWim2Wim.csproj -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/BuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/BuildInfo.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/DetectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/DetectionHandler.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/GZipDecompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/GZipDecompressor.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/Program.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Disk.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Disks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Disks.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Id.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Identity.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Package.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Packages.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Partition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Partition.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Partitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Partitions.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/StoreId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/StoreId.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Type.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/UpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/UpdateEvent.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/UpdateEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/UpdateEvents.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/UpdateHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/UpdateHistory.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/UpdateOSOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/UpdateOSOutput.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/UpdateHistory/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/UpdateHistory/Version.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/WPBuildInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/WPBuildInfo.csproj -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlDsm/FileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlDsm/FileEntry.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlDsm/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlDsm/Files.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlDsm/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlDsm/Identity.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlDsm/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlDsm/Package.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlDsm/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlDsm/Version.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/Assembly.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/AssemblyIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/AssemblyIdentity.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/Component.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/CustomInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/CustomInformation.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/File.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/Package.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/PhoneInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/PhoneInformation.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/RegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/RegistryKey.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/RegistryValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/RegistryValue.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/SecurityDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/SecurityDescriptor.cs -------------------------------------------------------------------------------- /src/Applications/WPBuildInfo/XmlMum/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Applications/WPBuildInfo/XmlMum/Update.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/ARM64/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/ARM64/7z.dll -------------------------------------------------------------------------------- /src/Archives.DiscUtils/ArchiveBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/ArchiveBridge.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/Archives.DiscUtils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/Archives.DiscUtils.csproj -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/ArchiveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/ArchiveFile.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/ArchiveFileCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/ArchiveFileCallback.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/ArchiveStreamCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/ArchiveStreamCallback.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/ArchiveStreamsCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/ArchiveStreamsCallback.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/Entry.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/Formats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/Formats.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/IArchiveExtractCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/IArchiveExtractCallback.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/Kernel32Dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/Kernel32Dll.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/LICENSE -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/SafeLibraryHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/SafeLibraryHandle.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/SevenZipException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/SevenZipException.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/SevenZipExtractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/SevenZipExtractor.csproj -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/SevenZipExtractor.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/SevenZipExtractor.targets -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/SevenZipFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/SevenZipFormat.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/SevenZipHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/SevenZipHandle.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/SevenZipExtractor/SevenZipInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/SevenZipExtractor/SevenZipInterface.cs -------------------------------------------------------------------------------- /src/Archives.DiscUtils/x64/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/x64/7z.dll -------------------------------------------------------------------------------- /src/Archives.DiscUtils/x86/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Archives.DiscUtils/x86/7z.dll -------------------------------------------------------------------------------- /src/Cabinet/Cabinet.Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Cabinet/Cabinet.Net.csproj -------------------------------------------------------------------------------- /src/Cabinet/Cabinet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Cabinet/Cabinet.cs -------------------------------------------------------------------------------- /src/Cabinet/CabinetExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Cabinet/CabinetExtractor.cs -------------------------------------------------------------------------------- /src/Cabinet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Cabinet/LICENSE -------------------------------------------------------------------------------- /src/Cabinet/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Cabinet/StreamExtensions.cs -------------------------------------------------------------------------------- /src/Cabinet/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Cabinet/Structures.cs -------------------------------------------------------------------------------- /src/Cabinet/Xna/LzxDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Cabinet/Xna/LzxDecoder.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/Constants.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/DeltaAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/DeltaAPI.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/DeltaFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/DeltaFileType.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/DeltaFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/DeltaFlags.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/DeltaHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/DeltaHash.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/DeltaHeaderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/DeltaHeaderInfo.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/DeltaInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/DeltaInput.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/DeltaInputFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/DeltaInputFlags.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/DeltaOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/DeltaOutput.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/FileTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/FileTime.cs -------------------------------------------------------------------------------- /src/LibSxS/Delta/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/Delta/NativeMethods.cs -------------------------------------------------------------------------------- /src/LibSxS/LibSxS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/LibSxS/LibSxS.csproj -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/CabEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/CabEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/CabException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/CabException.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/CabFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/CabFileInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/CabInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/CabInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/CabPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/CabPacker.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/CabUnpacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/CabUnpacker.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/CabWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/CabWorker.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/Errors.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/Errors.resources -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/Errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/Errors.txt -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/HandleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/HandleManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/Microsoft.Deployment.Compression.Cab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/Microsoft.Deployment.Compression.Cab.csproj -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression.Cab/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression.Cab/NativeMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/ArchiveException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/ArchiveException.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/ArchiveFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/ArchiveFileInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/ArchiveFileStreamContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/ArchiveFileStreamContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/ArchiveFileStreamContext2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/ArchiveFileStreamContext2.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/ArchiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/ArchiveInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/ArchiveProgressEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/ArchiveProgressEventArgs.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/ArchiveProgressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/ArchiveProgressType.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/BasicUnpackStreamContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/BasicUnpackStreamContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/CargoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/CargoStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/CompressionEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/CompressionEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/CompressionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/CompressionLevel.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/DuplicateStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/DuplicateStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/IPackStreamContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/IPackStreamContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/IUnpackStreamContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/IUnpackStreamContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/Microsoft.Deployment.Compression.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/Microsoft.Deployment.Compression.csproj -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/OffsetStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/OffsetStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Deployment.Compression/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/Microsoft.Deployment.Compression/SafeNativeMethods.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/DiskCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/DiskCommon.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/FileSystemPartition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/FileSystemPartition.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/FullFlashUpdate/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/FullFlashUpdate/Disk.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/RawDisk/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/RawDisk/Disk.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/RealFileSystem/DeferredStreamPartition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/RealFileSystem/DeferredStreamPartition.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/RealFileSystem/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/RealFileSystem/Disk.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/RealFileSystem/DiskPartitionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/RealFileSystem/DiskPartitionUtils.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/RealFileSystem/PartitionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/RealFileSystem/PartitionInfo.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/RealFileSystem/RealFileSystemBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/RealFileSystem/RealFileSystemBridge.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/Vhdx/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/Vhdx/Disk.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Adapters/Wim/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Adapters/Wim/Disk.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/DevicePathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/DevicePathUtils.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/DiskLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/DiskLoader.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/GPT/GPT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/GPT/GPT.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/GPT/Partition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/GPT/Partition.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Helpers/ByteOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Helpers/ByteOperations.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/IDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/IDisk.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/IPartition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/IPartition.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/Logging.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/LoggingLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/LoggingLevel.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/MobilePackageGen.Adapters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/MobilePackageGen.Adapters.csproj -------------------------------------------------------------------------------- /src/MobilePackageGen.Adapters/TempManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Adapters/TempManager.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/AppBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/AppBuilder.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/AppxPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/AppxPackage.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/BuildMetadataHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/BuildMetadataHandler.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/CBSBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/CBSBuilder.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/CabinetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/CabinetBuilder.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/CabinetFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/CabinetFileInfo.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/ContainerOSWrapperBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/ContainerOSWrapperBuilder.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/DriverBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/DriverBuilder.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/GZipDecompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/GZipDecompressor.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/IFileSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/IFileSystemExtensions.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/MobilePackageGen.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/MobilePackageGen.Common.csproj -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/RemakeAppx/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/RemakeAppx/Program.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/SPKGBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/SPKGBuilder.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/Substream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/Substream.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Disk.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Disks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Disks.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Id.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Identity.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Package.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Packages.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Partition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Partition.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Partitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Partitions.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/StoreId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/StoreId.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Type.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/UpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/UpdateEvent.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/UpdateEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/UpdateEvents.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/UpdateHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/UpdateHistory.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/UpdateOSOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/UpdateOSOutput.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/UpdateHistory/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/UpdateHistory/Version.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlDsm/FileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlDsm/FileEntry.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlDsm/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlDsm/Files.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlDsm/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlDsm/Identity.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlDsm/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlDsm/Package.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlDsm/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlDsm/Version.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/Assembly.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/AssemblyIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/AssemblyIdentity.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/Component.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/CustomInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/CustomInformation.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/File.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/Package.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/PhoneInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/PhoneInformation.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/RegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/RegistryKey.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/RegistryValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/RegistryValue.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/SecurityDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/SecurityDescriptor.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlMum/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlMum/Update.cs -------------------------------------------------------------------------------- /src/MobilePackageGen.Common/XmlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/src/MobilePackageGen.Common/XmlUtils.cs -------------------------------------------------------------------------------- /thirdparty/DeflateBlockCompressor/Compressed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DeflateBlockCompressor/Compressed.cs -------------------------------------------------------------------------------- /thirdparty/DeflateBlockCompressor/DeflateBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DeflateBlockCompressor/DeflateBlock.cs -------------------------------------------------------------------------------- /thirdparty/DeflateBlockCompressor/DeflateBlockCompressor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DeflateBlockCompressor/DeflateBlockCompressor.csproj -------------------------------------------------------------------------------- /thirdparty/DeflateBlockCompressor/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DeflateBlockCompressor/LICENSE.txt -------------------------------------------------------------------------------- /thirdparty/DeflateBlockCompressor/ZStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DeflateBlockCompressor/ZStreamWrapper.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/BlockMap/FileBlockInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/BlockMap/FileBlockInfo.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/Compression/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/Compression/Block.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/Compression/Compressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/Compression/Compressor.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/Compression/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/Compression/Extensions.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/Compression/ObservableStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/Compression/ObservableStream.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/Compression/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/Compression/StreamExtensions.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/ContentTypes/ContentTypesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/ContentTypes/ContentTypesGenerator.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/ContentTypes/ContentTypesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/ContentTypes/ContentTypesModel.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/ContentTypes/ContentTypesSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/ContentTypes/ContentTypesSerializer.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/ContentTypes/DefaultContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/ContentTypes/DefaultContentType.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/ContentTypes/OverrideContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/ContentTypes/OverrideContentType.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/MakeAppxDeflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/MakeAppxDeflate.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/Manifest/AppManifestGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/Manifest/AppManifestGenerator.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/MsixBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/MsixBuilder.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/MsixEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/MsixEntry.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/MsixEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/MsixEntryFactory.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Core/MsixPackager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Core/MsixPackager.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/DotnetPackaging.Msix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/DotnetPackaging.Msix.csproj -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/GlobalUsings.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/LICENSE -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/Msix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/Msix.cs -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/README.md -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/Minimal/Contents/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/Minimal/Contents/AppxManifest.xml -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/Minimal/Contents/Assets/Square150x150Logo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/Minimal/Contents/Assets/Square44x44Logo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/Minimal/Contents/Assets/StoreLogo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/Microsoft.Diagnostics.Tracing.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/Microsoft.Diagnostics.Tracing.EventSource.dll -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/appxpackaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/appxpackaging.dll -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/makeappx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/makeappx.exe -------------------------------------------------------------------------------- /thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/opcservices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/MobilePackageGen/HEAD/thirdparty/DotnetPackaging.Msix/RemakeAppxTestContent/i386/opcservices.dll --------------------------------------------------------------------------------