├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── Assets └── logo.png ├── LICENSE ├── PRIVACY_POLICY.md ├── README.md ├── UUPMediaCreator.sln ├── docs └── workitems.txt ├── publish_linux_x64.cmd ├── publish_win_arm64.cmd ├── publish_win_x64.cmd ├── src ├── Applications │ ├── Playground │ │ ├── Playground.csproj │ │ └── Program.cs │ ├── UUPDownload │ │ ├── BuildTargets.cs │ │ ├── CLIOptions.cs │ │ ├── DownloadRequest │ │ │ ├── Process.cs │ │ │ ├── UpdateScan.cs │ │ │ └── Version.cs │ │ ├── Downloading │ │ │ └── ReportProgress.cs │ │ ├── FeatureManifestService.cs │ │ ├── Fixup.cs │ │ ├── Logging.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── launchSettings.json │ │ ├── RingCheck.cs │ │ ├── UUPDownload.csproj │ │ └── UpdateUtils.cs │ ├── UUPMediaConverter │ │ ├── CLIOptions.cs │ │ ├── DesktopConvert.cs │ │ ├── Logging.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── app.manifest │ │ │ └── launchSettings.json │ │ └── UUPMediaConverter.csproj │ └── UUPSort │ │ ├── ImageUpdate │ │ ├── AppX.cs │ │ ├── AppXPackages.cs │ │ ├── BaseDriverPackages.cs │ │ ├── BasePackages.cs │ │ ├── DeviceLayoutPackages.cs │ │ ├── DriverPackageFile.cs │ │ ├── Drivers.cs │ │ ├── FeatureIDs.cs │ │ ├── FeatureManifest.cs │ │ └── PackageFile.cs │ │ ├── Program.cs │ │ ├── UUPSort.csproj │ │ └── XmlMum │ │ ├── Assembly.cs │ │ ├── AssemblyIdentity.cs │ │ ├── Component.cs │ │ ├── CustomInformation.cs │ │ ├── File.cs │ │ ├── Package.cs │ │ ├── PhoneInformation.cs │ │ ├── RegistryKey.cs │ │ ├── RegistryValue.cs │ │ ├── SecurityDescriptor.cs │ │ └── Update.cs ├── Cabinet │ ├── Cabinet.cs │ ├── Cabinet.csproj │ ├── CabinetExtractor.cs │ ├── LICENSE │ ├── StreamExtensions.cs │ ├── Structures.cs │ └── Xna │ │ └── LzxDecoder.cs ├── CompDB │ ├── Applications │ │ ├── AppxApplicabilityEngine.cs │ │ ├── AppxInstallWorkload.cs │ │ ├── AppxSelectionEngine.cs │ │ ├── DeploymentProperties.cs │ │ ├── EnumerableExtensions.cs │ │ ├── PackageProperties.cs │ │ └── ResourceType.cs │ ├── ApplyTo.cs │ ├── ApplyToInfo.cs │ ├── Appx.cs │ ├── AppxPackage.cs │ ├── AppxPackages.cs │ ├── CompDB.cs │ ├── CompDBExtensions.cs │ ├── CompDBXmlClass.cs │ ├── Condition.cs │ ├── ConditionSet.cs │ ├── ConditionSets.cs │ ├── ConditionalFeature.cs │ ├── Conditions.cs │ ├── CustomInfo.cs │ ├── CustomInformation.cs │ ├── Declare.cs │ ├── DeclareInfo.cs │ ├── Dependencies.cs │ ├── DeviceManifest.cs │ ├── Feature.cs │ ├── Features.cs │ ├── InitialIntent.cs │ ├── InitialIntents.cs │ ├── MSConditionalFeatures.cs │ ├── Package.cs │ ├── Packages.cs │ ├── Payload.cs │ ├── PayloadItem.cs │ ├── Require.cs │ ├── RequireInfo.cs │ ├── SatelliteInfo.cs │ ├── Tag.cs │ ├── Tags.cs │ └── UnifiedUpdatePlatform.Services.Composition.Database.csproj ├── DeleteAllBinObj.cmd ├── Microsoft.StoreServices.DisplayCatalog │ ├── CorrelationVector.cs │ ├── Microsoft.StoreServices.DisplayCatalog.csproj │ ├── Product │ │ ├── AllowedPlatform.cs │ │ ├── AlternateId.cs │ │ ├── AlternateId2.cs │ │ ├── ApplicableLegacyPlatform.cs │ │ ├── Application.cs │ │ ├── Attribute.cs │ │ ├── Availability.cs │ │ ├── BundleConfig.cs │ │ ├── BundleSlot.cs │ │ ├── BundledSku.cs │ │ ├── ChildIdentifier.cs │ │ ├── ClientConditions.cs │ │ ├── Conditions.cs │ │ ├── ConfigurationReference.cs │ │ ├── ContentRating.cs │ │ ├── Dimensions.cs │ │ ├── DisplaySkuAvailability.cs │ │ ├── Distributions.cs │ │ ├── EISListingIdentifier.cs │ │ ├── EligibilityProperties.cs │ │ ├── ExternalSource.cs │ │ ├── FrameworkDependency.cs │ │ ├── FulfillmentData.cs │ │ ├── FulfillmentData2.cs │ │ ├── HardwareProperties.cs │ │ ├── Image.cs │ │ ├── Image2.cs │ │ ├── LegalText.cs │ │ ├── LicensingData.cs │ │ ├── LocalizedProperty.cs │ │ ├── LocalizedProperty2.cs │ │ ├── LocalizedProperty3.cs │ │ ├── LocalizedProperty4.cs │ │ ├── MarketProperty.cs │ │ ├── MarketProperty2.cs │ │ ├── OrderManagementData.cs │ │ ├── PIFilter.cs │ │ ├── PIFilter2.cs │ │ ├── Package.cs │ │ ├── PackageDownloadUri.cs │ │ ├── PlatformDependency.cs │ │ ├── PreviewImage.cs │ │ ├── Price.cs │ │ ├── Product.cs │ │ ├── ProductApi.cs │ │ ├── ProductConfiguration.cs │ │ ├── ProductConfiguration2.cs │ │ ├── ProductConfigurationProperty.cs │ │ ├── ProductConfigurationProperty2.cs │ │ ├── Properties.cs │ │ ├── Properties2.cs │ │ ├── Properties3.cs │ │ ├── RelatedProduct.cs │ │ ├── Remediation.cs │ │ ├── Remediation2.cs │ │ ├── RequestHandler.cs │ │ ├── SatisfyingEntitlementKey.cs │ │ ├── SaveUpTo.cs │ │ ├── SearchTitle.cs │ │ ├── Sku.cs │ │ ├── SkuDisplayGroup.cs │ │ ├── SkuDisplayRank.cs │ │ ├── StartingFromAmount.cs │ │ ├── UsageData.cs │ │ ├── ValidationData.cs │ │ ├── Value.cs │ │ ├── Value2.cs │ │ ├── Video.cs │ │ └── WebBlendsData.cs │ └── Products.cs ├── TempManager │ ├── TempManager.cs │ └── UnifiedUpdatePlatform.Services.Temp.csproj ├── UnifiedUpdatePlatform.Common.Messaging │ ├── Common.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── UnifiedUpdatePlatform.Common.Messaging.csproj ├── UnifiedUpdatePlatform.Imaging │ ├── IImaging.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UnifiedUpdatePlatform.Services.Imaging.csproj │ ├── WIMImaging.cs │ ├── WIMInformationXML.cs │ ├── WimLibImaging.cs │ ├── WimgApiImaging.cs │ ├── app.config │ └── packages.config ├── UnifiedUpdatePlatform.Media.Creator.Planning │ ├── Constants.cs │ ├── ConversionPlanBuilder.cs │ ├── EditionMappingXML.cs │ ├── EditionMatrixXML.cs │ ├── FileLocator.cs │ └── UnifiedUpdatePlatform.Media.Creator.Planning.csproj ├── UnifiedUpdatePlatform.Media.Creator │ ├── BaseEditions │ │ └── BaseEditionBuilder.cs │ ├── BootlegEditions │ │ ├── AssemblyManifestHandler.cs │ │ ├── AssemblyXmlData.cs │ │ └── BootlegEditionCreator.cs │ ├── CDImage │ │ ├── CDImageWrapper.cs │ │ ├── DiscImageFactory.cs │ │ └── cdimage.exe │ ├── Constants.cs │ ├── DismOperations.cs │ ├── FileLocator.cs │ ├── Installer │ │ ├── InstallerLogger.cs │ │ ├── PreinstallationEnvironmentRegistryService.cs │ │ ├── SetupMediaCreator.cs │ │ └── WindowsInstallerBuilder.cs │ ├── MediaCreator.cs │ ├── PathUtils.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings │ │ ├── IniReader.cs │ │ └── Settings.ini │ ├── UUPMediaCreator.cs │ ├── UnifiedUpdatePlatform.Media.Creator.csproj │ ├── Utils │ │ ├── FolderUtilities.cs │ │ ├── PlatformUtilities.cs │ │ └── TakeOwn.cs │ └── app.config ├── UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads │ ├── DownloadHelpers.cs │ ├── HttpDownloader.cs │ └── UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads.csproj ├── UnifiedUpdatePlatform.Services.WindowsUpdate │ ├── BuildFetcher.cs │ ├── CTAC.cs │ ├── ComputerHardwareIDProvider.cs │ ├── Constants.cs │ ├── CorrelationVector.cs │ ├── EsrpDecryptor.cs │ ├── FE3Handler.cs │ ├── FE3Objects.cs │ ├── MBIHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UnifiedUpdatePlatform.Services.WindowsUpdate.csproj │ ├── UpdateDataExtensions.cs │ └── app.config ├── VirtualHardDiskLib │ ├── NativeMethods.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VHDUtilities.cs │ ├── VirtualDiskSession.cs │ └── VirtualHardDiskLib.csproj └── Windows.Internal.Flighting │ ├── NativeMethods.cs │ ├── PlatformCTAC.cs │ └── Windows.Internal.Flighting.csproj ├── thirdparty ├── DeleteAllBinObj.cmd ├── Microsoft.Dism │ ├── CallerMemberNameAttribute.cs │ ├── DismApi.AddCapability.cs │ ├── DismApi.AddDriver.cs │ ├── DismApi.AddPackage.cs │ ├── DismApi.AddProvisionedAppxPackage.cs │ ├── DismApi.ApplyFfuImage.cs │ ├── DismApi.ApplyUnattend.cs │ ├── DismApi.CheckImageHealth.cs │ ├── DismApi.CleanupMountpoints.cs │ ├── DismApi.CloseSession.cs │ ├── DismApi.CommitImage.cs │ ├── DismApi.Delete.cs │ ├── DismApi.DisableFeature.cs │ ├── DismApi.EnableFeature.cs │ ├── DismApi.GetCapabilities.cs │ ├── DismApi.GetCapabilityInfo.cs │ ├── DismApi.GetCurrentEdition.cs │ ├── DismApi.GetDriverInfo.cs │ ├── DismApi.GetDrivers.cs │ ├── DismApi.GetFeatureInfo.cs │ ├── DismApi.GetFeatureParent.cs │ ├── DismApi.GetFeatures.cs │ ├── DismApi.GetImageInfo.cs │ ├── DismApi.GetLastErrorMessage.cs │ ├── DismApi.GetMountedImages.cs │ ├── DismApi.GetPackageInfo.cs │ ├── DismApi.GetPackageInfoEx.cs │ ├── DismApi.GetPackages.cs │ ├── DismApi.GetProvisionedAppxPackages.cs │ ├── DismApi.Initialize.cs │ ├── DismApi.MountImage.cs │ ├── DismApi.NativeMethods.cs │ ├── DismApi.OpenSession.cs │ ├── DismApi.OpenSessionEx.cs │ ├── DismApi.RemountImage.cs │ ├── DismApi.RemoveCapability.cs │ ├── DismApi.RemoveDriver.cs │ ├── DismApi.RemovePackage.cs │ ├── DismApi.RemoveProvisionedAppxPackage.cs │ ├── DismApi.RestoreImageHealth.cs │ ├── DismApi.SetEdition.cs │ ├── DismApi.SetProductKey.cs │ ├── DismApi.Shutdown.cs │ ├── DismApi.SplitFfuImage.cs │ ├── DismApi.UnmountImage.cs │ ├── DismApiEx.cs │ ├── DismAppxPackage.cs │ ├── DismAppxPackageCollection.cs │ ├── DismCapability.cs │ ├── DismCapabilityCollection.cs │ ├── DismCapabilityInfo.cs │ ├── DismCustomProperty.cs │ ├── DismCustomPropertyCollection.cs │ ├── DismDriver.cs │ ├── DismDriverCollection.cs │ ├── DismDriverPackage.cs │ ├── DismDriverPackageCollection.cs │ ├── DismException.cs │ ├── DismFeature.cs │ ├── DismFeatureCollection.cs │ ├── DismFeatureInfo.cs │ ├── DismImageInfo.cs │ ├── DismImageInfoCollection.cs │ ├── DismLanguage.cs │ ├── DismMountedImageInfo.cs │ ├── DismMountedImageInfoCollection.cs │ ├── DismPackage.cs │ ├── DismPackageCollection.cs │ ├── DismPackageInfo.cs │ ├── DismPackageInfoEx.cs │ ├── DismProgress.cs │ ├── DismProgressCallback.cs │ ├── DismSession.cs │ ├── DismSessionOptions.cs │ ├── DismString.cs │ ├── DismUtilities.cs │ ├── DismWimCustomizedInfo.cs │ ├── ExtensionMethods.cs │ ├── Microsoft.Dism.csproj │ ├── NativeConstants.cs │ ├── NativeEnums.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── SystemTime.cs │ └── TestHooks.cs ├── Microsoft.Wim │ ├── CopyFileProgress.cs │ ├── Microsoft.Wim.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── WimCompressionType.cs │ ├── WimFileInfo.cs │ ├── WimHandle.cs │ ├── WimInfo.cs │ ├── WimMessage.cs │ ├── WimMessageCallback.cs │ ├── WimMountInfo.cs │ ├── WimRegisteredCallbacks.cs │ ├── WimgApi.ApplyImage.cs │ ├── WimgApi.CaptureImage.cs │ ├── WimgApi.CommitImageHandle.cs │ ├── WimgApi.CopyFile.cs │ ├── WimgApi.CreateFile.cs │ ├── WimgApi.DeleteImage.cs │ ├── WimgApi.DeleteImageMounts.cs │ ├── WimgApi.ExportImage.cs │ ├── WimgApi.ExtractImagePath.cs │ ├── WimgApi.GetAttributes.cs │ ├── WimgApi.GetImageCount.cs │ ├── WimgApi.GetImageInformation.cs │ ├── WimgApi.GetMessageCallbackCount.cs │ ├── WimgApi.GetMountedImageHandle.cs │ ├── WimgApi.GetMountedImageInfo.cs │ ├── WimgApi.GetMountedImageInfoFromHandle.cs │ ├── WimgApi.LoadImage.cs │ ├── WimgApi.MountImage.cs │ ├── WimgApi.NativeConstants.cs │ ├── WimgApi.NativeStructs.cs │ ├── WimgApi.RegisterLogFile.cs │ ├── WimgApi.RegisterMessageCallback.cs │ ├── WimgApi.RemountImage.cs │ ├── WimgApi.SetBootImage.cs │ ├── WimgApi.SetImageInformation.cs │ ├── WimgApi.SetReferenceFile.cs │ ├── WimgApi.SetTemporaryPath.cs │ ├── WimgApi.SplitFile.cs │ ├── WimgApi.UnmountImage.cs │ ├── WimgApi.UnregisterLogFile.cs │ ├── WimgApi.UnregisterMessageCallback.cs │ └── WimgApi.cs ├── Privileges │ ├── Checksum │ │ ├── Adler32.cs │ │ ├── BZip2Crc.cs │ │ ├── Crc32.cs │ │ ├── CrcUtilities.cs │ │ └── IChecksum.cs │ ├── NativeMethods.cs │ ├── Privilege.cs │ ├── PrivilegeNotHeldException.cs │ ├── Privileges.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── README.md └── winmds ├── Windows.Internal.Flighting.idl ├── Windows.Internal.Flighting.winmd └── rebuild.cmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/Assets/logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/README.md -------------------------------------------------------------------------------- /UUPMediaCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/UUPMediaCreator.sln -------------------------------------------------------------------------------- /docs/workitems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/docs/workitems.txt -------------------------------------------------------------------------------- /publish_linux_x64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/publish_linux_x64.cmd -------------------------------------------------------------------------------- /publish_win_arm64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/publish_win_arm64.cmd -------------------------------------------------------------------------------- /publish_win_x64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/publish_win_x64.cmd -------------------------------------------------------------------------------- /src/Applications/Playground/Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/Playground/Playground.csproj -------------------------------------------------------------------------------- /src/Applications/Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/Playground/Program.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/BuildTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/BuildTargets.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/CLIOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/CLIOptions.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/DownloadRequest/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/DownloadRequest/Process.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/DownloadRequest/UpdateScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/DownloadRequest/UpdateScan.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/DownloadRequest/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/DownloadRequest/Version.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/Downloading/ReportProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/Downloading/ReportProgress.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/FeatureManifestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/FeatureManifestService.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/Fixup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/Fixup.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/Logging.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/Program.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Applications/UUPDownload/RingCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/RingCheck.cs -------------------------------------------------------------------------------- /src/Applications/UUPDownload/UUPDownload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/UUPDownload.csproj -------------------------------------------------------------------------------- /src/Applications/UUPDownload/UpdateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPDownload/UpdateUtils.cs -------------------------------------------------------------------------------- /src/Applications/UUPMediaConverter/CLIOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPMediaConverter/CLIOptions.cs -------------------------------------------------------------------------------- /src/Applications/UUPMediaConverter/DesktopConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPMediaConverter/DesktopConvert.cs -------------------------------------------------------------------------------- /src/Applications/UUPMediaConverter/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPMediaConverter/Logging.cs -------------------------------------------------------------------------------- /src/Applications/UUPMediaConverter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPMediaConverter/Program.cs -------------------------------------------------------------------------------- /src/Applications/UUPMediaConverter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPMediaConverter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Applications/UUPMediaConverter/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPMediaConverter/Properties/app.manifest -------------------------------------------------------------------------------- /src/Applications/UUPMediaConverter/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPMediaConverter/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Applications/UUPMediaConverter/UUPMediaConverter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPMediaConverter/UUPMediaConverter.csproj -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/AppX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/AppX.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/AppXPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/AppXPackages.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/BaseDriverPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/BaseDriverPackages.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/BasePackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/BasePackages.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/DeviceLayoutPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/DeviceLayoutPackages.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/DriverPackageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/DriverPackageFile.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/Drivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/Drivers.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/FeatureIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/FeatureIDs.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/FeatureManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/FeatureManifest.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/ImageUpdate/PackageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/ImageUpdate/PackageFile.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/Program.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/UUPSort.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/UUPSort.csproj -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/Assembly.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/AssemblyIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/AssemblyIdentity.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/Component.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/CustomInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/CustomInformation.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/File.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/Package.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/PhoneInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/PhoneInformation.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/RegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/RegistryKey.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/RegistryValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/RegistryValue.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/SecurityDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/SecurityDescriptor.cs -------------------------------------------------------------------------------- /src/Applications/UUPSort/XmlMum/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Applications/UUPSort/XmlMum/Update.cs -------------------------------------------------------------------------------- /src/Cabinet/Cabinet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Cabinet/Cabinet.cs -------------------------------------------------------------------------------- /src/Cabinet/Cabinet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Cabinet/Cabinet.csproj -------------------------------------------------------------------------------- /src/Cabinet/CabinetExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Cabinet/CabinetExtractor.cs -------------------------------------------------------------------------------- /src/Cabinet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Cabinet/LICENSE -------------------------------------------------------------------------------- /src/Cabinet/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Cabinet/StreamExtensions.cs -------------------------------------------------------------------------------- /src/Cabinet/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Cabinet/Structures.cs -------------------------------------------------------------------------------- /src/Cabinet/Xna/LzxDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Cabinet/Xna/LzxDecoder.cs -------------------------------------------------------------------------------- /src/CompDB/Applications/AppxApplicabilityEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Applications/AppxApplicabilityEngine.cs -------------------------------------------------------------------------------- /src/CompDB/Applications/AppxInstallWorkload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Applications/AppxInstallWorkload.cs -------------------------------------------------------------------------------- /src/CompDB/Applications/AppxSelectionEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Applications/AppxSelectionEngine.cs -------------------------------------------------------------------------------- /src/CompDB/Applications/DeploymentProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Applications/DeploymentProperties.cs -------------------------------------------------------------------------------- /src/CompDB/Applications/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Applications/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/CompDB/Applications/PackageProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Applications/PackageProperties.cs -------------------------------------------------------------------------------- /src/CompDB/Applications/ResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Applications/ResourceType.cs -------------------------------------------------------------------------------- /src/CompDB/ApplyTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/ApplyTo.cs -------------------------------------------------------------------------------- /src/CompDB/ApplyToInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/ApplyToInfo.cs -------------------------------------------------------------------------------- /src/CompDB/Appx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Appx.cs -------------------------------------------------------------------------------- /src/CompDB/AppxPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/AppxPackage.cs -------------------------------------------------------------------------------- /src/CompDB/AppxPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/AppxPackages.cs -------------------------------------------------------------------------------- /src/CompDB/CompDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/CompDB.cs -------------------------------------------------------------------------------- /src/CompDB/CompDBExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/CompDBExtensions.cs -------------------------------------------------------------------------------- /src/CompDB/CompDBXmlClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/CompDBXmlClass.cs -------------------------------------------------------------------------------- /src/CompDB/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Condition.cs -------------------------------------------------------------------------------- /src/CompDB/ConditionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/ConditionSet.cs -------------------------------------------------------------------------------- /src/CompDB/ConditionSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/ConditionSets.cs -------------------------------------------------------------------------------- /src/CompDB/ConditionalFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/ConditionalFeature.cs -------------------------------------------------------------------------------- /src/CompDB/Conditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Conditions.cs -------------------------------------------------------------------------------- /src/CompDB/CustomInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/CustomInfo.cs -------------------------------------------------------------------------------- /src/CompDB/CustomInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/CustomInformation.cs -------------------------------------------------------------------------------- /src/CompDB/Declare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Declare.cs -------------------------------------------------------------------------------- /src/CompDB/DeclareInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/DeclareInfo.cs -------------------------------------------------------------------------------- /src/CompDB/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Dependencies.cs -------------------------------------------------------------------------------- /src/CompDB/DeviceManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/DeviceManifest.cs -------------------------------------------------------------------------------- /src/CompDB/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Feature.cs -------------------------------------------------------------------------------- /src/CompDB/Features.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Features.cs -------------------------------------------------------------------------------- /src/CompDB/InitialIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/InitialIntent.cs -------------------------------------------------------------------------------- /src/CompDB/InitialIntents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/InitialIntents.cs -------------------------------------------------------------------------------- /src/CompDB/MSConditionalFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/MSConditionalFeatures.cs -------------------------------------------------------------------------------- /src/CompDB/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Package.cs -------------------------------------------------------------------------------- /src/CompDB/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Packages.cs -------------------------------------------------------------------------------- /src/CompDB/Payload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Payload.cs -------------------------------------------------------------------------------- /src/CompDB/PayloadItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/PayloadItem.cs -------------------------------------------------------------------------------- /src/CompDB/Require.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Require.cs -------------------------------------------------------------------------------- /src/CompDB/RequireInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/RequireInfo.cs -------------------------------------------------------------------------------- /src/CompDB/SatelliteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/SatelliteInfo.cs -------------------------------------------------------------------------------- /src/CompDB/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Tag.cs -------------------------------------------------------------------------------- /src/CompDB/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/Tags.cs -------------------------------------------------------------------------------- /src/CompDB/UnifiedUpdatePlatform.Services.Composition.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/CompDB/UnifiedUpdatePlatform.Services.Composition.Database.csproj -------------------------------------------------------------------------------- /src/DeleteAllBinObj.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/DeleteAllBinObj.cmd -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/CorrelationVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/CorrelationVector.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Microsoft.StoreServices.DisplayCatalog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Microsoft.StoreServices.DisplayCatalog.csproj -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/AllowedPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/AllowedPlatform.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/AlternateId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/AlternateId.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/AlternateId2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/AlternateId2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ApplicableLegacyPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ApplicableLegacyPlatform.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Application.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Attribute.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Availability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Availability.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/BundleConfig.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/BundleSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/BundleSlot.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/BundledSku.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/BundledSku.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ChildIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ChildIdentifier.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ClientConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ClientConditions.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Conditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Conditions.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ConfigurationReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ConfigurationReference.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ContentRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ContentRating.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Dimensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Dimensions.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/DisplaySkuAvailability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/DisplaySkuAvailability.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Distributions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Distributions.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/EISListingIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/EISListingIdentifier.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/EligibilityProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/EligibilityProperties.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ExternalSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ExternalSource.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/FrameworkDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/FrameworkDependency.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/FulfillmentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/FulfillmentData.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/FulfillmentData2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/FulfillmentData2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/HardwareProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/HardwareProperties.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Image.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Image2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Image2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/LegalText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/LegalText.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/LicensingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/LicensingData.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/LocalizedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/LocalizedProperty.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/LocalizedProperty2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/LocalizedProperty2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/LocalizedProperty3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/LocalizedProperty3.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/LocalizedProperty4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/LocalizedProperty4.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/MarketProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/MarketProperty.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/MarketProperty2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/MarketProperty2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/OrderManagementData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/OrderManagementData.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/PIFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/PIFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/PIFilter2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/PIFilter2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Package.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/PackageDownloadUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/PackageDownloadUri.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/PlatformDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/PlatformDependency.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/PreviewImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/PreviewImage.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Price.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Product.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ProductApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ProductApi.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ProductConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ProductConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ProductConfiguration2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ProductConfiguration2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ProductConfigurationProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ProductConfigurationProperty.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ProductConfigurationProperty2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ProductConfigurationProperty2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Properties.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Properties2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Properties2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Properties3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Properties3.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/RelatedProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/RelatedProduct.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Remediation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Remediation.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Remediation2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Remediation2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/RequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/RequestHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/SatisfyingEntitlementKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/SatisfyingEntitlementKey.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/SaveUpTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/SaveUpTo.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/SearchTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/SearchTitle.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Sku.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Sku.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/SkuDisplayGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/SkuDisplayGroup.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/SkuDisplayRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/SkuDisplayRank.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/StartingFromAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/StartingFromAmount.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/UsageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/UsageData.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/ValidationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/ValidationData.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Value.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Value2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Value2.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/Video.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/Video.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Product/WebBlendsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Product/WebBlendsData.cs -------------------------------------------------------------------------------- /src/Microsoft.StoreServices.DisplayCatalog/Products.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Microsoft.StoreServices.DisplayCatalog/Products.cs -------------------------------------------------------------------------------- /src/TempManager/TempManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/TempManager/TempManager.cs -------------------------------------------------------------------------------- /src/TempManager/UnifiedUpdatePlatform.Services.Temp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/TempManager/UnifiedUpdatePlatform.Services.Temp.csproj -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Common.Messaging/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Common.Messaging/Common.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Common.Messaging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Common.Messaging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Common.Messaging/UnifiedUpdatePlatform.Common.Messaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Common.Messaging/UnifiedUpdatePlatform.Common.Messaging.csproj -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/IImaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/IImaging.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/UnifiedUpdatePlatform.Services.Imaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/UnifiedUpdatePlatform.Services.Imaging.csproj -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/WIMImaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/WIMImaging.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/WIMInformationXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/WIMInformationXML.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/WimLibImaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/WimLibImaging.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/WimgApiImaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/WimgApiImaging.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/app.config -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Imaging/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Imaging/packages.config -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator.Planning/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator.Planning/Constants.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator.Planning/ConversionPlanBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator.Planning/ConversionPlanBuilder.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator.Planning/EditionMappingXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator.Planning/EditionMappingXML.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator.Planning/EditionMatrixXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator.Planning/EditionMatrixXML.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator.Planning/FileLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator.Planning/FileLocator.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator.Planning/UnifiedUpdatePlatform.Media.Creator.Planning.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator.Planning/UnifiedUpdatePlatform.Media.Creator.Planning.csproj -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/BaseEditions/BaseEditionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/BaseEditions/BaseEditionBuilder.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/BootlegEditions/AssemblyManifestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/BootlegEditions/AssemblyManifestHandler.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/BootlegEditions/AssemblyXmlData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/BootlegEditions/AssemblyXmlData.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/BootlegEditions/BootlegEditionCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/BootlegEditions/BootlegEditionCreator.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/CDImage/CDImageWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/CDImage/CDImageWrapper.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/CDImage/DiscImageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/CDImage/DiscImageFactory.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/CDImage/cdimage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/CDImage/cdimage.exe -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Constants.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/DismOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/DismOperations.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/FileLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/FileLocator.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Installer/InstallerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Installer/InstallerLogger.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Installer/PreinstallationEnvironmentRegistryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Installer/PreinstallationEnvironmentRegistryService.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Installer/SetupMediaCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Installer/SetupMediaCreator.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Installer/WindowsInstallerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Installer/WindowsInstallerBuilder.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/MediaCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/MediaCreator.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/PathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/PathUtils.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Settings/IniReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Settings/IniReader.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Settings/Settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Settings/Settings.ini -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/UUPMediaCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/UUPMediaCreator.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/UnifiedUpdatePlatform.Media.Creator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/UnifiedUpdatePlatform.Media.Creator.csproj -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Utils/FolderUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Utils/FolderUtilities.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Utils/PlatformUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Utils/PlatformUtilities.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/Utils/TakeOwn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/Utils/TakeOwn.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Media.Creator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Media.Creator/app.config -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads/DownloadHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads/DownloadHelpers.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads/HttpDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads/HttpDownloader.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads/UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads/UnifiedUpdatePlatform.Services.WindowsUpdate.Downloads.csproj -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/BuildFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/BuildFetcher.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/CTAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/CTAC.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/ComputerHardwareIDProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/ComputerHardwareIDProvider.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/Constants.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/CorrelationVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/CorrelationVector.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/EsrpDecryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/EsrpDecryptor.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/FE3Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/FE3Handler.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/FE3Objects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/FE3Objects.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/MBIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/MBIHelper.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/UnifiedUpdatePlatform.Services.WindowsUpdate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/UnifiedUpdatePlatform.Services.WindowsUpdate.csproj -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/UpdateDataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/UpdateDataExtensions.cs -------------------------------------------------------------------------------- /src/UnifiedUpdatePlatform.Services.WindowsUpdate/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/UnifiedUpdatePlatform.Services.WindowsUpdate/app.config -------------------------------------------------------------------------------- /src/VirtualHardDiskLib/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/VirtualHardDiskLib/NativeMethods.cs -------------------------------------------------------------------------------- /src/VirtualHardDiskLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/VirtualHardDiskLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VirtualHardDiskLib/VHDUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/VirtualHardDiskLib/VHDUtilities.cs -------------------------------------------------------------------------------- /src/VirtualHardDiskLib/VirtualDiskSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/VirtualHardDiskLib/VirtualDiskSession.cs -------------------------------------------------------------------------------- /src/VirtualHardDiskLib/VirtualHardDiskLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/VirtualHardDiskLib/VirtualHardDiskLib.csproj -------------------------------------------------------------------------------- /src/Windows.Internal.Flighting/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Windows.Internal.Flighting/NativeMethods.cs -------------------------------------------------------------------------------- /src/Windows.Internal.Flighting/PlatformCTAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Windows.Internal.Flighting/PlatformCTAC.cs -------------------------------------------------------------------------------- /src/Windows.Internal.Flighting/Windows.Internal.Flighting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/src/Windows.Internal.Flighting/Windows.Internal.Flighting.csproj -------------------------------------------------------------------------------- /thirdparty/DeleteAllBinObj.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/DeleteAllBinObj.cmd -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/CallerMemberNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/CallerMemberNameAttribute.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.AddCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.AddCapability.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.AddDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.AddDriver.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.AddPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.AddPackage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.AddProvisionedAppxPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.AddProvisionedAppxPackage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.ApplyFfuImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.ApplyFfuImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.ApplyUnattend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.ApplyUnattend.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.CheckImageHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.CheckImageHealth.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.CleanupMountpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.CleanupMountpoints.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.CloseSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.CloseSession.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.CommitImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.CommitImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.Delete.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.DisableFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.DisableFeature.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.EnableFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.EnableFeature.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetCapabilities.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetCapabilityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetCapabilityInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetCurrentEdition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetCurrentEdition.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetDriverInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetDriverInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetDrivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetDrivers.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetFeatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetFeatureInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetFeatureParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetFeatureParent.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetFeatures.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetImageInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetLastErrorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetLastErrorMessage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetMountedImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetMountedImages.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetPackageInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetPackageInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetPackageInfoEx.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetPackages.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.GetProvisionedAppxPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.GetProvisionedAppxPackages.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.Initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.Initialize.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.MountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.MountImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.NativeMethods.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.OpenSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.OpenSession.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.OpenSessionEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.OpenSessionEx.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.RemountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.RemountImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.RemoveCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.RemoveCapability.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.RemoveDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.RemoveDriver.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.RemovePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.RemovePackage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.RemoveProvisionedAppxPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.RemoveProvisionedAppxPackage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.RestoreImageHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.RestoreImageHealth.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.SetEdition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.SetEdition.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.SetProductKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.SetProductKey.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.Shutdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.Shutdown.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.SplitFfuImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.SplitFfuImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApi.UnmountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApi.UnmountImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismApiEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismApiEx.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismAppxPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismAppxPackage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismAppxPackageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismAppxPackageCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismCapability.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismCapabilityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismCapabilityCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismCapabilityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismCapabilityInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismCustomProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismCustomProperty.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismCustomPropertyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismCustomPropertyCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismDriver.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismDriverCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismDriverCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismDriverPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismDriverPackage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismDriverPackageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismDriverPackageCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismException.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismFeature.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismFeatureCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismFeatureCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismFeatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismFeatureInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismImageInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismImageInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismImageInfoCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismLanguage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismMountedImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismMountedImageInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismMountedImageInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismMountedImageInfoCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismPackage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismPackageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismPackageCollection.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismPackageInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismPackageInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismPackageInfoEx.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismProgress.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismProgressCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismProgressCallback.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismSession.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismSessionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismSessionOptions.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismString.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismUtilities.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/DismWimCustomizedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/DismWimCustomizedInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/ExtensionMethods.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/Microsoft.Dism.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/Microsoft.Dism.csproj -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/NativeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/NativeConstants.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/NativeEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/NativeEnums.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/Properties/Resources.resx -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable 2 | -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/SystemTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/SystemTime.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Dism/TestHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Dism/TestHooks.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/CopyFileProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/CopyFileProgress.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/Microsoft.Wim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/Microsoft.Wim.csproj -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimCompressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimCompressionType.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimFileInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimHandle.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimMessage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimMessageCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimMessageCallback.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimMountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimMountInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimRegisteredCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimRegisteredCallbacks.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.ApplyImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.ApplyImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.CaptureImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.CaptureImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.CommitImageHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.CommitImageHandle.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.CopyFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.CopyFile.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.CreateFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.CreateFile.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.DeleteImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.DeleteImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.DeleteImageMounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.DeleteImageMounts.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.ExportImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.ExportImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.ExtractImagePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.ExtractImagePath.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.GetAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.GetAttributes.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.GetImageCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.GetImageCount.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.GetImageInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.GetImageInformation.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.GetMessageCallbackCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.GetMessageCallbackCount.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.GetMountedImageHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.GetMountedImageHandle.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.GetMountedImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.GetMountedImageInfo.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.GetMountedImageInfoFromHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.GetMountedImageInfoFromHandle.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.LoadImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.LoadImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.MountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.MountImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.NativeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.NativeConstants.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.NativeStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.NativeStructs.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.RegisterLogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.RegisterLogFile.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.RegisterMessageCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.RegisterMessageCallback.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.RemountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.RemountImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.SetBootImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.SetBootImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.SetImageInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.SetImageInformation.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.SetReferenceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.SetReferenceFile.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.SetTemporaryPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.SetTemporaryPath.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.SplitFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.SplitFile.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.UnmountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.UnmountImage.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.UnregisterLogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.UnregisterLogFile.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.UnregisterMessageCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.UnregisterMessageCallback.cs -------------------------------------------------------------------------------- /thirdparty/Microsoft.Wim/WimgApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Microsoft.Wim/WimgApi.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/Checksum/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/Checksum/Adler32.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/Checksum/BZip2Crc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/Checksum/BZip2Crc.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/Checksum/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/Checksum/Crc32.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/Checksum/CrcUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/Checksum/CrcUtilities.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/Checksum/IChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/Checksum/IChecksum.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/NativeMethods.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/Privilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/Privilege.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/PrivilegeNotHeldException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/PrivilegeNotHeldException.cs -------------------------------------------------------------------------------- /thirdparty/Privileges/Privileges.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/Privileges.csproj -------------------------------------------------------------------------------- /thirdparty/Privileges/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/Privileges/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/thirdparty/README.md -------------------------------------------------------------------------------- /winmds/Windows.Internal.Flighting.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/winmds/Windows.Internal.Flighting.idl -------------------------------------------------------------------------------- /winmds/Windows.Internal.Flighting.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/winmds/Windows.Internal.Flighting.winmd -------------------------------------------------------------------------------- /winmds/rebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/UUPMediaCreator/HEAD/winmds/rebuild.cmd --------------------------------------------------------------------------------