├── .gitignore ├── Authoring.md ├── CentennialFixups.sln ├── Common.Build.props ├── Common.props ├── Detours ├── CREDITS.TXT ├── Detours.chm ├── Detours.vcxproj ├── Detours.vcxproj.filters ├── LICENSE.md ├── README.md ├── VERSION.TXT ├── creatwth.cpp ├── detours.cpp ├── disasm.cpp ├── disolarm.cpp ├── disolarm64.cpp ├── disolia64.cpp ├── disolx64.cpp ├── disolx86.cpp ├── image.cpp ├── modules.cpp └── uimports.cpp ├── Fixups.props ├── LICENSE ├── MetadataSchema.xsd ├── Microsoft.PackageSupportFramework.nuspec ├── Microsoft.PackageSupportFramework.targets ├── PsfLauncher ├── Logger.h ├── PSFLauncherMetadata.xml ├── PsfLauncher.vcxproj ├── PsfLauncher.vcxproj.filters ├── PsfPowershellScriptRunner.h ├── Readme.md ├── StartProcessHelper.h ├── StartingScriptWrapper.ps1 └── main.cpp ├── PsfRunDll ├── PsfRunDll.vcxproj ├── PsfRunDll.vcxproj.filters ├── main.cpp └── readme.md ├── PsfRuntime ├── ArgRedirection.h ├── Config.cpp ├── Config.h ├── CreateProcessHook.cpp ├── JsonConfig.h ├── PsfRuntime.def ├── PsfRuntime.vcxproj ├── PsfRuntime.vcxproj.filters ├── main.cpp └── readme.md ├── PsfShimMonitor ├── App.config ├── App.xaml ├── App.xaml.cs ├── Application_EventLog.cs ├── ColumnSelector.xaml ├── ColumnSelector.xaml.cs ├── Debug.cs ├── EventItem.cs ├── EventModel.cs ├── EventView.cs ├── KernelTrace.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PsfShimMonitor.csproj ├── README.md ├── System_EventLog.cs ├── app.manifest └── packages.config ├── README.md ├── SECURITY.md ├── SignConfig.xml ├── azure-pipelines └── psf-public-nuget-build.yml ├── fixups ├── DynamicLibraryFixup │ ├── DynamicLibraryFixup.cpp │ ├── DynamicLibraryFixup.vcxproj │ ├── DynamicLibraryFixup.vcxproj.filters │ ├── DynamicLibraryFixup.xml │ ├── FunctionImplementations.h │ ├── InitializeFixup.cpp │ ├── dll_location_spec.h │ ├── framework.h │ └── main.cpp ├── ElectronFixup │ ├── ElectronFixup.sln │ ├── ElectronFixup.vcxproj │ ├── ElectronFixup.vcxproj.filters │ ├── ElectronFixupForPartialTrust.cpp │ ├── ElectronFixupForPartialTrustImpls.h │ ├── ElectronFixupMetadata.xml │ ├── main.cpp │ └── readme.md ├── EnvVarFixup │ ├── EnvVarFixup.cpp │ ├── EnvVarFixup.vcxproj │ ├── EnvVarFixup.vcxproj.filters │ ├── EnvVarFixup.xml │ ├── EnvVar_spec.h │ ├── FunctionImplementations.h │ ├── InitializeFixup.cpp │ ├── framework.h │ ├── main.cpp │ ├── pch.cpp │ ├── pch.h │ └── readme.md ├── FileRedirectionFixup │ ├── CopyFileFixup.cpp │ ├── CreateDirectoryFixup.cpp │ ├── CreateFileFixup.cpp │ ├── CreateHardLinkFixup.cpp │ ├── CreateSymbolicLinkFixup.cpp │ ├── DeleteFileFixup.cpp │ ├── FileAttributesFixup.cpp │ ├── FileRedirectionFixup.vcxproj │ ├── FileRedirectionFixup.vcxproj.filters │ ├── FileRedirectionFixupMetadata.xml │ ├── FindFirstFileFixup.cpp │ ├── FunctionImplementations.h │ ├── GetPrivateProfileIntFixup.cpp │ ├── GetPrivateProfileSectionFixup.cpp │ ├── GetPrivateProfileSectionNamesFixup.cpp │ ├── GetPrivateProfileStringFixup.cpp │ ├── GetPrivateProfileStructFixup.cpp │ ├── MoveFileFixup.cpp │ ├── PathRedirection.cpp │ ├── PathRedirection.h │ ├── RemoveDirectoryFixup.cpp │ ├── ReplaceFileFixup.cpp │ ├── SetWorkingDirectory.cpp │ ├── WritePrivateProfileSectionFixup.cpp │ ├── WritePrivateProfileStringFixup.cpp │ ├── WritePrivateProfileStructFixup.cpp │ ├── main.cpp │ └── readme.md └── RegLegacyFixups │ ├── FunctionImplementations.h │ ├── InitializeFixup.cpp │ ├── Logging.h │ ├── RegLegacyFixups.vcxproj │ ├── RegLegacyFixups.vcxproj.filters │ ├── RegLegacyFixupsMetadata.xml │ ├── Reg_Remediation_Spec.h │ ├── RegistryFixups.cpp │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ └── readme.md ├── guardian └── SDL │ └── .gdnbaselines ├── include ├── RemovePII.h ├── Telemetry.h ├── debug.h ├── detour_transaction.h ├── detours.h ├── detver.h ├── dos_paths.h ├── fancy_handle.h ├── known_folders.h ├── proc_helper.h ├── psf_config.h ├── psf_constants.h ├── psf_framework.h ├── psf_runtime.h ├── psf_tracelogging.h ├── psf_utils.h ├── rapidjson │ ├── allocators.h │ ├── cursorstreamwrapper.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── readme.md ├── reentrancy_guard.h ├── utilities.h ├── wil │ ├── com.h │ ├── common.h │ ├── cppwinrt.h │ ├── filesystem.h │ ├── registry.h │ ├── resource.h │ ├── result.h │ ├── result_macros.h │ ├── result_originate.h │ ├── safecast.h │ ├── stl.h │ ├── token_helpers.h │ ├── win32_helpers.h │ ├── winrt.h │ ├── wistd_config.h │ ├── wistd_functional.h │ ├── wistd_memory.h │ ├── wistd_type_traits.h │ └── wrl.h └── win32_error.h ├── layout.md ├── procmon_logfile.png ├── readme.txt ├── samples ├── PSFSample │ ├── PSF │ │ ├── PSF.vcxproj │ │ ├── PSF.vcxproj.filters │ │ └── packages.config │ ├── PSFSample.sln │ ├── PSFSampleApp │ │ ├── App.config │ │ ├── ClassDiagram1.cd │ │ ├── Config.txt │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── PSFSampleApp.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Read.png │ │ └── Write.png │ ├── PSFSampleFixups │ │ ├── Fixups.cpp │ │ ├── PSFSampleFixups.vcxproj │ │ ├── PSFSampleFixups.vcxproj.filters │ │ ├── packages.config │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── PSFSamplePackage │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── PSFSamplePackage.wapproj │ │ ├── Package.appxmanifest │ │ ├── Package_TemporaryKey.pfx │ │ ├── config.json │ │ ├── config.xml │ │ └── readme.txt │ └── readme.md └── PSFScriptingSample │ ├── PSFScriptingSample.sln │ ├── PSFScriptingSample │ ├── App.config │ ├── AppxManifest.xml │ ├── Assets │ │ ├── Square150x150Logo.png │ │ ├── Square44x44Logo.png │ │ ├── StoreLogo.png │ │ └── Wide310X150Logo.png │ ├── CLeaningUp.ps1 │ ├── Config.json │ ├── Config.xml │ ├── MakeAndSignApp.ps1 │ ├── PSFScriptingSample.csproj │ ├── PSFScriptingSample_TemporaryKey.pfx │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReplacePlatform.ps1 │ ├── SpinUpSampleOne.ps1 │ ├── SpinUpSampleTwo.ps1 │ └── packages.config │ └── readme.md ├── tests ├── Common.Tests.Build.props ├── Common.Tests.props ├── README.md ├── RunTests.ps1 ├── TestRunner │ ├── TestRunner.vcxproj │ ├── TestRunner.vcxproj.filters │ ├── main.cpp │ └── message_pipe.h ├── Tests.ps1 ├── common │ ├── console_output.h │ ├── dependency_helper.h │ ├── error_logging.h │ ├── file_paths.h │ ├── offset_ptr.h │ ├── test_config.h │ └── test_runner.h ├── fixups │ ├── CompositionTestFixup │ │ ├── CompositionTestFixup.vcxproj │ │ ├── CompositionTestFixup.vcxproj.filters │ │ ├── MultiByteToWideCharFixup.cpp │ │ └── main.cpp │ ├── MultiByteToWideCharTestFixup │ │ ├── MultiByteToWideCharFixup.cpp │ │ ├── MultiByteToWideCharTestFixup.vcxproj │ │ ├── MultiByteToWideCharTestFixup.vcxproj.filters │ │ └── main.cpp │ ├── TraceFixup │ │ ├── Config.h │ │ ├── CreateProcessFixup.cpp │ │ ├── DynamicLinkLibraryFixup.cpp │ │ ├── FileSystemFixup.cpp │ │ ├── FunctionImplementations.h │ │ ├── Logging.h │ │ ├── PreserveError.h │ │ ├── PrivateProfileFixup.cpp │ │ ├── RegistryFixup.cpp │ │ ├── TraceFixup.vcxproj │ │ ├── TraceFixup.vcxproj.filters │ │ ├── WinternlFixup.cpp │ │ ├── WinternlLogging.h │ │ ├── main.cpp │ │ └── readme.md │ └── WaitForDebuggerFixup │ │ ├── WaitForDebuggerFixup.vcxproj │ │ ├── WaitForDebuggerFixup.vcxproj.filters │ │ ├── main.cpp │ │ └── readme.md ├── scenarios │ ├── ArchitectureTest │ │ ├── AppxManifest.xml │ │ ├── ArchitectureTest.vcxproj │ │ ├── ArchitectureTest.vcxproj.filters │ │ ├── FileMapping.txt │ │ ├── config.json │ │ ├── config.xml │ │ ├── main.cpp │ │ ├── readme.md │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── ArgRedirectionTest │ │ ├── AppxManifest.xml │ │ ├── ArgRedirectionTest.vcxproj │ │ ├── ArgRedirectionTest.vcxproj.filters │ │ ├── FileMapping.txt │ │ ├── config.json │ │ ├── config.xml │ │ ├── main.cpp │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── Assets │ │ ├── Logo150x150.png │ │ └── Logo44x44.png │ ├── CompositionTest │ │ ├── AppxManifest.xml │ │ ├── CompositionTest.vcxproj │ │ ├── CompositionTest.vcxproj.filters │ │ ├── FileMapping.txt │ │ ├── config.json │ │ ├── config.xml │ │ ├── main.cpp │ │ ├── readme.md │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── DynamicLibraryTest │ │ ├── AppxManifest.xml │ │ ├── DynamicLibraryTest - Copy.vcxproj │ │ ├── DynamicLibraryTest.vcxproj │ │ ├── DynamicLibraryTest.vcxproj.filters │ │ ├── FileMapping.txt │ │ ├── config.json │ │ ├── main.cpp │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── EnvVarsATest │ │ ├── AppxManifest.xml │ │ ├── EnvVarsATest.cpp │ │ ├── EnvVarsATest.vcxproj │ │ ├── EnvVarsATest.vcxproj.filters │ │ ├── FileMapping.txt │ │ ├── Registry.dat │ │ ├── User.dat │ │ ├── UserClasses.dat │ │ ├── config.json │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── EnvVarsWTest │ │ ├── AppxManifest.xml │ │ ├── EnvVarsWTest.cpp │ │ ├── EnvVarsWTest.vcxproj │ │ ├── EnvVarsWTest.vcxproj.filters │ │ ├── FileMapping.txt │ │ ├── Registry.dat │ │ ├── User.dat │ │ ├── UserClasses.dat │ │ ├── config.json │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── FileSystemTest │ │ ├── AppxManifest.xml │ │ ├── CopyFileTest.cpp │ │ ├── CreateDirectoryTest.cpp │ │ ├── CreateHardLinkTest.cpp │ │ ├── CreateNewFileTest.cpp │ │ ├── CreateSymbolicLinkTest.cpp │ │ ├── DeleteFileTest.cpp │ │ ├── EnumerateDirectoriesTest.cpp │ │ ├── EnumerateFilesTest.cpp │ │ ├── FileAttributesTest.cpp │ │ ├── FileMapping.txt │ │ ├── FileSystemTest.vcxproj │ │ ├── FileSystemTest.vcxproj.filters │ │ ├── ModifyFileTest.cpp │ │ ├── MoveFileTest.cpp │ │ ├── PrivateProfileTest.cpp │ │ ├── RemoveDirectoryTest.cpp │ │ ├── ReplaceFileTest.cpp │ │ ├── attributes.h │ │ ├── common_paths.h │ │ ├── config.json │ │ ├── config.xml │ │ ├── file.ini │ │ ├── file.txt │ │ ├── main.cpp │ │ ├── readme.md │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── LongPathsTest │ │ ├── AppxManifest32.xml │ │ ├── AppxManifest64.xml │ │ ├── Config32.xml │ │ ├── CopyFileTest.cpp │ │ ├── CreateDeleteFileTests.cpp │ │ ├── CreateRemoveDirectoryTest.cpp │ │ ├── FileEnumerationTests.cpp │ │ ├── FileMapping.txt │ │ ├── LongPathsTest.vcxproj │ │ ├── LongPathsTest.vcxproj.filters │ │ ├── config32.json │ │ ├── config64.json │ │ ├── config64.xml │ │ ├── file.txt │ │ ├── main.cpp │ │ ├── paths.h │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── MakeAppx.ps1 │ ├── MiddlewareTestA │ │ ├── AppxManifest.xml │ │ ├── FileMapping.txt │ │ ├── MiddlewareA.cpp │ │ ├── MiddlewareTestA.vcxproj │ │ ├── MiddlewareTestA.vcxproj.filters │ │ ├── config.json │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── MiddlewareTestW │ │ ├── AppxManifest.xml │ │ ├── FileMapping.txt │ │ ├── MiddlewareTestW.vcxproj │ │ ├── MiddlewareTestW.vcxproj.filters │ │ ├── MiddlewareW.cpp │ │ ├── config.json │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── PowershellScriptTest │ │ ├── AppxManifest.xml │ │ ├── FileMapping.txt │ │ ├── PowershellScriptTest.vcxproj │ │ ├── PowershellScriptTest.vcxproj.filters │ │ ├── SayHello.ps1 │ │ ├── SayHi.ps1 │ │ ├── SayWithArgument.ps1 │ │ ├── StartingScriptWrapper.ps1 │ │ ├── WaitAndSayHello.ps1 │ │ ├── config.json │ │ ├── config.xml │ │ ├── main.cpp │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── PreventBreakAwayTest │ │ ├── AppxManifest.xml │ │ ├── Config.xml │ │ ├── FileMapping.txt │ │ ├── PreventBreakAwayTest.vcxproj │ │ ├── PreventBreakAwayTest.vcxproj.filters │ │ ├── config.json │ │ ├── main.cpp │ │ ├── readme.md │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── RegLegacyTest │ │ ├── AppXManifest.xml │ │ ├── DeletionMarkerTest.cpp │ │ ├── FileMapping.txt │ │ ├── Helper.cpp │ │ ├── RegLegacyTest.cpp │ │ ├── RegLegacyTest.vcxproj │ │ ├── RegLegacyTest.vcxproj.filters │ │ ├── Registry.dat │ │ ├── User.dat │ │ ├── UserClasses.dat │ │ ├── config.json │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── UpdateFileMappings.ps1 │ ├── WorkingDirectoryTest │ │ ├── AppxManifest.xml │ │ ├── FileMapping.txt │ │ ├── WorkingDirectoryTest.vcxproj │ │ ├── WorkingDirectoryTest.vcxproj.filters │ │ ├── config.json │ │ ├── config.xml │ │ ├── foo.txt │ │ ├── main.cpp │ │ ├── readme.md │ │ ├── x64Debug │ │ │ └── FileMapping.txt │ │ ├── x64Release │ │ │ └── FileMapping.txt │ │ ├── x86Debug │ │ │ └── FileMapping.txt │ │ └── x86Release │ │ │ └── FileMapping.txt │ ├── readme.md │ └── signing │ │ ├── CreateCert.ps1 │ │ └── ExportCertificate.ps1 ├── scripts │ ├── ReplacePackageFiles.ps1 │ ├── ReplacePackageShimBinaries.ps1 │ └── TakePackageOwnership.ps1 └── tests.sln ├── thirdparty.txt └── xmlToJsonConverter ├── Format.xsl └── msxsl.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /Authoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Authoring.md -------------------------------------------------------------------------------- /CentennialFixups.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/CentennialFixups.sln -------------------------------------------------------------------------------- /Common.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Common.Build.props -------------------------------------------------------------------------------- /Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Common.props -------------------------------------------------------------------------------- /Detours/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/CREDITS.TXT -------------------------------------------------------------------------------- /Detours/Detours.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/Detours.chm -------------------------------------------------------------------------------- /Detours/Detours.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/Detours.vcxproj -------------------------------------------------------------------------------- /Detours/Detours.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/Detours.vcxproj.filters -------------------------------------------------------------------------------- /Detours/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/LICENSE.md -------------------------------------------------------------------------------- /Detours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/README.md -------------------------------------------------------------------------------- /Detours/VERSION.TXT: -------------------------------------------------------------------------------- 1 | Version 4.0.1 -------------------------------------------------------------------------------- /Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/creatwth.cpp -------------------------------------------------------------------------------- /Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/detours.cpp -------------------------------------------------------------------------------- /Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/disasm.cpp -------------------------------------------------------------------------------- /Detours/disolarm.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /Detours/disolarm64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /Detours/disolia64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_IA64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /Detours/disolx64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /Detours/disolx86.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X86_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/image.cpp -------------------------------------------------------------------------------- /Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/modules.cpp -------------------------------------------------------------------------------- /Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Detours/uimports.cpp -------------------------------------------------------------------------------- /Fixups.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Fixups.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /MetadataSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/MetadataSchema.xsd -------------------------------------------------------------------------------- /Microsoft.PackageSupportFramework.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Microsoft.PackageSupportFramework.nuspec -------------------------------------------------------------------------------- /Microsoft.PackageSupportFramework.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/Microsoft.PackageSupportFramework.targets -------------------------------------------------------------------------------- /PsfLauncher/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/Logger.h -------------------------------------------------------------------------------- /PsfLauncher/PSFLauncherMetadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/PSFLauncherMetadata.xml -------------------------------------------------------------------------------- /PsfLauncher/PsfLauncher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/PsfLauncher.vcxproj -------------------------------------------------------------------------------- /PsfLauncher/PsfLauncher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/PsfLauncher.vcxproj.filters -------------------------------------------------------------------------------- /PsfLauncher/PsfPowershellScriptRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/PsfPowershellScriptRunner.h -------------------------------------------------------------------------------- /PsfLauncher/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/Readme.md -------------------------------------------------------------------------------- /PsfLauncher/StartProcessHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/StartProcessHelper.h -------------------------------------------------------------------------------- /PsfLauncher/StartingScriptWrapper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/StartingScriptWrapper.ps1 -------------------------------------------------------------------------------- /PsfLauncher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfLauncher/main.cpp -------------------------------------------------------------------------------- /PsfRunDll/PsfRunDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRunDll/PsfRunDll.vcxproj -------------------------------------------------------------------------------- /PsfRunDll/PsfRunDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRunDll/PsfRunDll.vcxproj.filters -------------------------------------------------------------------------------- /PsfRunDll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRunDll/main.cpp -------------------------------------------------------------------------------- /PsfRunDll/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRunDll/readme.md -------------------------------------------------------------------------------- /PsfRuntime/ArgRedirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/ArgRedirection.h -------------------------------------------------------------------------------- /PsfRuntime/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/Config.cpp -------------------------------------------------------------------------------- /PsfRuntime/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/Config.h -------------------------------------------------------------------------------- /PsfRuntime/CreateProcessHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/CreateProcessHook.cpp -------------------------------------------------------------------------------- /PsfRuntime/JsonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/JsonConfig.h -------------------------------------------------------------------------------- /PsfRuntime/PsfRuntime.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/PsfRuntime.def -------------------------------------------------------------------------------- /PsfRuntime/PsfRuntime.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/PsfRuntime.vcxproj -------------------------------------------------------------------------------- /PsfRuntime/PsfRuntime.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/PsfRuntime.vcxproj.filters -------------------------------------------------------------------------------- /PsfRuntime/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/main.cpp -------------------------------------------------------------------------------- /PsfRuntime/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfRuntime/readme.md -------------------------------------------------------------------------------- /PsfShimMonitor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/App.config -------------------------------------------------------------------------------- /PsfShimMonitor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/App.xaml -------------------------------------------------------------------------------- /PsfShimMonitor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/App.xaml.cs -------------------------------------------------------------------------------- /PsfShimMonitor/Application_EventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/Application_EventLog.cs -------------------------------------------------------------------------------- /PsfShimMonitor/ColumnSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/ColumnSelector.xaml -------------------------------------------------------------------------------- /PsfShimMonitor/ColumnSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/ColumnSelector.xaml.cs -------------------------------------------------------------------------------- /PsfShimMonitor/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/Debug.cs -------------------------------------------------------------------------------- /PsfShimMonitor/EventItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/EventItem.cs -------------------------------------------------------------------------------- /PsfShimMonitor/EventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/EventModel.cs -------------------------------------------------------------------------------- /PsfShimMonitor/EventView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/EventView.cs -------------------------------------------------------------------------------- /PsfShimMonitor/KernelTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/KernelTrace.cs -------------------------------------------------------------------------------- /PsfShimMonitor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/MainWindow.xaml -------------------------------------------------------------------------------- /PsfShimMonitor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /PsfShimMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PsfShimMonitor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PsfShimMonitor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/Properties/Resources.resx -------------------------------------------------------------------------------- /PsfShimMonitor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PsfShimMonitor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/Properties/Settings.settings -------------------------------------------------------------------------------- /PsfShimMonitor/PsfShimMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/PsfShimMonitor.csproj -------------------------------------------------------------------------------- /PsfShimMonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/README.md -------------------------------------------------------------------------------- /PsfShimMonitor/System_EventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/System_EventLog.cs -------------------------------------------------------------------------------- /PsfShimMonitor/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/app.manifest -------------------------------------------------------------------------------- /PsfShimMonitor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/PsfShimMonitor/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SignConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/SignConfig.xml -------------------------------------------------------------------------------- /azure-pipelines/psf-public-nuget-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/azure-pipelines/psf-public-nuget-build.yml -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/DynamicLibraryFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/DynamicLibraryFixup.cpp -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/DynamicLibraryFixup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/DynamicLibraryFixup.vcxproj -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/DynamicLibraryFixup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/DynamicLibraryFixup.vcxproj.filters -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/DynamicLibraryFixup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/DynamicLibraryFixup.xml -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/FunctionImplementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/FunctionImplementations.h -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/InitializeFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/InitializeFixup.cpp -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/dll_location_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/dll_location_spec.h -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/framework.h -------------------------------------------------------------------------------- /fixups/DynamicLibraryFixup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/DynamicLibraryFixup/main.cpp -------------------------------------------------------------------------------- /fixups/ElectronFixup/ElectronFixup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/ElectronFixup/ElectronFixup.sln -------------------------------------------------------------------------------- /fixups/ElectronFixup/ElectronFixup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/ElectronFixup/ElectronFixup.vcxproj -------------------------------------------------------------------------------- /fixups/ElectronFixup/ElectronFixup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/ElectronFixup/ElectronFixup.vcxproj.filters -------------------------------------------------------------------------------- /fixups/ElectronFixup/ElectronFixupForPartialTrust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/ElectronFixup/ElectronFixupForPartialTrust.cpp -------------------------------------------------------------------------------- /fixups/ElectronFixup/ElectronFixupForPartialTrustImpls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/ElectronFixup/ElectronFixupForPartialTrustImpls.h -------------------------------------------------------------------------------- /fixups/ElectronFixup/ElectronFixupMetadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/ElectronFixup/ElectronFixupMetadata.xml -------------------------------------------------------------------------------- /fixups/ElectronFixup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/ElectronFixup/main.cpp -------------------------------------------------------------------------------- /fixups/ElectronFixup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/ElectronFixup/readme.md -------------------------------------------------------------------------------- /fixups/EnvVarFixup/EnvVarFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/EnvVarFixup.cpp -------------------------------------------------------------------------------- /fixups/EnvVarFixup/EnvVarFixup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/EnvVarFixup.vcxproj -------------------------------------------------------------------------------- /fixups/EnvVarFixup/EnvVarFixup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/EnvVarFixup.vcxproj.filters -------------------------------------------------------------------------------- /fixups/EnvVarFixup/EnvVarFixup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/EnvVarFixup.xml -------------------------------------------------------------------------------- /fixups/EnvVarFixup/EnvVar_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/EnvVar_spec.h -------------------------------------------------------------------------------- /fixups/EnvVarFixup/FunctionImplementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/FunctionImplementations.h -------------------------------------------------------------------------------- /fixups/EnvVarFixup/InitializeFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/InitializeFixup.cpp -------------------------------------------------------------------------------- /fixups/EnvVarFixup/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/framework.h -------------------------------------------------------------------------------- /fixups/EnvVarFixup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/main.cpp -------------------------------------------------------------------------------- /fixups/EnvVarFixup/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/pch.cpp -------------------------------------------------------------------------------- /fixups/EnvVarFixup/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/pch.h -------------------------------------------------------------------------------- /fixups/EnvVarFixup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/EnvVarFixup/readme.md -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/CopyFileFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/CopyFileFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/CreateDirectoryFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/CreateDirectoryFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/CreateFileFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/CreateFileFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/CreateHardLinkFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/CreateHardLinkFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/CreateSymbolicLinkFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/CreateSymbolicLinkFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/DeleteFileFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/DeleteFileFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/FileAttributesFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/FileAttributesFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/FileRedirectionFixup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/FileRedirectionFixup.vcxproj -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/FileRedirectionFixup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/FileRedirectionFixup.vcxproj.filters -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/FileRedirectionFixupMetadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/FileRedirectionFixupMetadata.xml -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/FindFirstFileFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/FindFirstFileFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/FunctionImplementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/FunctionImplementations.h -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/GetPrivateProfileIntFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/GetPrivateProfileIntFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/GetPrivateProfileSectionFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/GetPrivateProfileSectionFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/GetPrivateProfileSectionNamesFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/GetPrivateProfileSectionNamesFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/GetPrivateProfileStringFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/GetPrivateProfileStringFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/GetPrivateProfileStructFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/GetPrivateProfileStructFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/MoveFileFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/MoveFileFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/PathRedirection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/PathRedirection.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/PathRedirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/PathRedirection.h -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/RemoveDirectoryFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/RemoveDirectoryFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/ReplaceFileFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/ReplaceFileFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/SetWorkingDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/SetWorkingDirectory.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/WritePrivateProfileSectionFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/WritePrivateProfileSectionFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/WritePrivateProfileStringFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/WritePrivateProfileStringFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/WritePrivateProfileStructFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/WritePrivateProfileStructFixup.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/main.cpp -------------------------------------------------------------------------------- /fixups/FileRedirectionFixup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/FileRedirectionFixup/readme.md -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/FunctionImplementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/FunctionImplementations.h -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/InitializeFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/InitializeFixup.cpp -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/Logging.h -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/RegLegacyFixups.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/RegLegacyFixups.vcxproj -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/RegLegacyFixups.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/RegLegacyFixups.vcxproj.filters -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/RegLegacyFixupsMetadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/RegLegacyFixupsMetadata.xml -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/Reg_Remediation_Spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/Reg_Remediation_Spec.h -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/RegistryFixups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/RegistryFixups.cpp -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/dllmain.cpp -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/framework.h -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/pch.cpp -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/pch.h -------------------------------------------------------------------------------- /fixups/RegLegacyFixups/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/fixups/RegLegacyFixups/readme.md -------------------------------------------------------------------------------- /guardian/SDL/.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/guardian/SDL/.gdnbaselines -------------------------------------------------------------------------------- /include/RemovePII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/RemovePII.h -------------------------------------------------------------------------------- /include/Telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/Telemetry.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/detour_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/detour_transaction.h -------------------------------------------------------------------------------- /include/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/detours.h -------------------------------------------------------------------------------- /include/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/detver.h -------------------------------------------------------------------------------- /include/dos_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/dos_paths.h -------------------------------------------------------------------------------- /include/fancy_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/fancy_handle.h -------------------------------------------------------------------------------- /include/known_folders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/known_folders.h -------------------------------------------------------------------------------- /include/proc_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/proc_helper.h -------------------------------------------------------------------------------- /include/psf_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/psf_config.h -------------------------------------------------------------------------------- /include/psf_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/psf_constants.h -------------------------------------------------------------------------------- /include/psf_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/psf_framework.h -------------------------------------------------------------------------------- /include/psf_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/psf_runtime.h -------------------------------------------------------------------------------- /include/psf_tracelogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/psf_tracelogging.h -------------------------------------------------------------------------------- /include/psf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/psf_utils.h -------------------------------------------------------------------------------- /include/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/allocators.h -------------------------------------------------------------------------------- /include/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/document.h -------------------------------------------------------------------------------- /include/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /include/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/encodings.h -------------------------------------------------------------------------------- /include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /include/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/error/error.h -------------------------------------------------------------------------------- /include/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /include/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /include/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/fwd.h -------------------------------------------------------------------------------- /include/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /include/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /include/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /include/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /include/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /include/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /include/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /include/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /include/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /include/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /include/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /include/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /include/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /include/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /include/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/memorystream.h -------------------------------------------------------------------------------- /include/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /include/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/pointer.h -------------------------------------------------------------------------------- /include/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /include/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/reader.h -------------------------------------------------------------------------------- /include/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/schema.h -------------------------------------------------------------------------------- /include/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/stream.h -------------------------------------------------------------------------------- /include/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/rapidjson/writer.h -------------------------------------------------------------------------------- /include/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/readme.md -------------------------------------------------------------------------------- /include/reentrancy_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/reentrancy_guard.h -------------------------------------------------------------------------------- /include/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/utilities.h -------------------------------------------------------------------------------- /include/wil/com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/com.h -------------------------------------------------------------------------------- /include/wil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/common.h -------------------------------------------------------------------------------- /include/wil/cppwinrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/cppwinrt.h -------------------------------------------------------------------------------- /include/wil/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/filesystem.h -------------------------------------------------------------------------------- /include/wil/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/registry.h -------------------------------------------------------------------------------- /include/wil/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/resource.h -------------------------------------------------------------------------------- /include/wil/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/result.h -------------------------------------------------------------------------------- /include/wil/result_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/result_macros.h -------------------------------------------------------------------------------- /include/wil/result_originate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/result_originate.h -------------------------------------------------------------------------------- /include/wil/safecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/safecast.h -------------------------------------------------------------------------------- /include/wil/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/stl.h -------------------------------------------------------------------------------- /include/wil/token_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/token_helpers.h -------------------------------------------------------------------------------- /include/wil/win32_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/win32_helpers.h -------------------------------------------------------------------------------- /include/wil/winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/winrt.h -------------------------------------------------------------------------------- /include/wil/wistd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/wistd_config.h -------------------------------------------------------------------------------- /include/wil/wistd_functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/wistd_functional.h -------------------------------------------------------------------------------- /include/wil/wistd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/wistd_memory.h -------------------------------------------------------------------------------- /include/wil/wistd_type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/wistd_type_traits.h -------------------------------------------------------------------------------- /include/wil/wrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/wil/wrl.h -------------------------------------------------------------------------------- /include/win32_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/include/win32_error.h -------------------------------------------------------------------------------- /layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/layout.md -------------------------------------------------------------------------------- /procmon_logfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/procmon_logfile.png -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/readme.txt -------------------------------------------------------------------------------- /samples/PSFSample/PSF/PSF.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSF/PSF.vcxproj -------------------------------------------------------------------------------- /samples/PSFSample/PSF/PSF.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSF/PSF.vcxproj.filters -------------------------------------------------------------------------------- /samples/PSFSample/PSF/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSF/packages.config -------------------------------------------------------------------------------- /samples/PSFSample/PSFSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSample.sln -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/App.config -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Config.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Form1.Designer.cs -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Form1.cs -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Form1.resx -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/PSFSampleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/PSFSampleApp.csproj -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Program.cs -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Properties/Resources.resx -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Properties/Settings.settings -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Read.png -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleApp/Write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleApp/Write.png -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleFixups/Fixups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleFixups/Fixups.cpp -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleFixups/PSFSampleFixups.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleFixups/PSFSampleFixups.vcxproj -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleFixups/PSFSampleFixups.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleFixups/PSFSampleFixups.vcxproj.filters -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleFixups/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleFixups/packages.config -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleFixups/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleFixups/stdafx.cpp -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleFixups/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleFixups/stdafx.h -------------------------------------------------------------------------------- /samples/PSFSample/PSFSampleFixups/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSampleFixups/targetver.h -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/PSFSamplePackage.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/PSFSamplePackage.wapproj -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/Package.appxmanifest -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/Package_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/Package_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/config.json -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/config.xml -------------------------------------------------------------------------------- /samples/PSFSample/PSFSamplePackage/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/PSFSamplePackage/readme.txt -------------------------------------------------------------------------------- /samples/PSFSample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFSample/readme.md -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample.sln -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/App.config -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/AppxManifest.xml -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/Assets/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/Assets/Square150x150Logo.png -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/Assets/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/Assets/Square44x44Logo.png -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/Assets/Wide310X150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/Assets/Wide310X150Logo.png -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/CLeaningUp.ps1: -------------------------------------------------------------------------------- 1 | write-host ("Cleaning up...") 2 | start-sleep -s 5 -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/Config.json -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/Config.xml -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/MakeAndSignApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/MakeAndSignApp.ps1 -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/PSFScriptingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/PSFScriptingSample.csproj -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/PSFScriptingSample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/PSFScriptingSample_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/Program.cs -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/ReplacePlatform.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/ReplacePlatform.ps1 -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/SpinUpSampleOne.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/SpinUpSampleOne.ps1 -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/SpinUpSampleTwo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/SpinUpSampleTwo.ps1 -------------------------------------------------------------------------------- /samples/PSFScriptingSample/PSFScriptingSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/PSFScriptingSample/packages.config -------------------------------------------------------------------------------- /samples/PSFScriptingSample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/samples/PSFScriptingSample/readme.md -------------------------------------------------------------------------------- /tests/Common.Tests.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/Common.Tests.Build.props -------------------------------------------------------------------------------- /tests/Common.Tests.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/Common.Tests.props -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/RunTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/RunTests.ps1 -------------------------------------------------------------------------------- /tests/TestRunner/TestRunner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/TestRunner/TestRunner.vcxproj -------------------------------------------------------------------------------- /tests/TestRunner/TestRunner.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/TestRunner/TestRunner.vcxproj.filters -------------------------------------------------------------------------------- /tests/TestRunner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/TestRunner/main.cpp -------------------------------------------------------------------------------- /tests/TestRunner/message_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/TestRunner/message_pipe.h -------------------------------------------------------------------------------- /tests/Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/Tests.ps1 -------------------------------------------------------------------------------- /tests/common/console_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/common/console_output.h -------------------------------------------------------------------------------- /tests/common/dependency_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/common/dependency_helper.h -------------------------------------------------------------------------------- /tests/common/error_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/common/error_logging.h -------------------------------------------------------------------------------- /tests/common/file_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/common/file_paths.h -------------------------------------------------------------------------------- /tests/common/offset_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/common/offset_ptr.h -------------------------------------------------------------------------------- /tests/common/test_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/common/test_config.h -------------------------------------------------------------------------------- /tests/common/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/common/test_runner.h -------------------------------------------------------------------------------- /tests/fixups/CompositionTestFixup/CompositionTestFixup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/CompositionTestFixup/CompositionTestFixup.vcxproj -------------------------------------------------------------------------------- /tests/fixups/CompositionTestFixup/CompositionTestFixup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/CompositionTestFixup/CompositionTestFixup.vcxproj.filters -------------------------------------------------------------------------------- /tests/fixups/CompositionTestFixup/MultiByteToWideCharFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/CompositionTestFixup/MultiByteToWideCharFixup.cpp -------------------------------------------------------------------------------- /tests/fixups/CompositionTestFixup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/CompositionTestFixup/main.cpp -------------------------------------------------------------------------------- /tests/fixups/MultiByteToWideCharTestFixup/MultiByteToWideCharFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/MultiByteToWideCharTestFixup/MultiByteToWideCharFixup.cpp -------------------------------------------------------------------------------- /tests/fixups/MultiByteToWideCharTestFixup/MultiByteToWideCharTestFixup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/MultiByteToWideCharTestFixup/MultiByteToWideCharTestFixup.vcxproj -------------------------------------------------------------------------------- /tests/fixups/MultiByteToWideCharTestFixup/MultiByteToWideCharTestFixup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/MultiByteToWideCharTestFixup/MultiByteToWideCharTestFixup.vcxproj.filters -------------------------------------------------------------------------------- /tests/fixups/MultiByteToWideCharTestFixup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/MultiByteToWideCharTestFixup/main.cpp -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/Config.h -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/CreateProcessFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/CreateProcessFixup.cpp -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/DynamicLinkLibraryFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/DynamicLinkLibraryFixup.cpp -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/FileSystemFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/FileSystemFixup.cpp -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/FunctionImplementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/FunctionImplementations.h -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/Logging.h -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/PreserveError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/PreserveError.h -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/PrivateProfileFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/PrivateProfileFixup.cpp -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/RegistryFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/RegistryFixup.cpp -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/TraceFixup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/TraceFixup.vcxproj -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/TraceFixup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/TraceFixup.vcxproj.filters -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/WinternlFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/WinternlFixup.cpp -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/WinternlLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/WinternlLogging.h -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/main.cpp -------------------------------------------------------------------------------- /tests/fixups/TraceFixup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/TraceFixup/readme.md -------------------------------------------------------------------------------- /tests/fixups/WaitForDebuggerFixup/WaitForDebuggerFixup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/WaitForDebuggerFixup/WaitForDebuggerFixup.vcxproj -------------------------------------------------------------------------------- /tests/fixups/WaitForDebuggerFixup/WaitForDebuggerFixup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/WaitForDebuggerFixup/WaitForDebuggerFixup.vcxproj.filters -------------------------------------------------------------------------------- /tests/fixups/WaitForDebuggerFixup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/WaitForDebuggerFixup/main.cpp -------------------------------------------------------------------------------- /tests/fixups/WaitForDebuggerFixup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/fixups/WaitForDebuggerFixup/readme.md -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/ArchitectureTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/ArchitectureTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/ArchitectureTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/ArchitectureTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/config.xml -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/readme.md -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArchitectureTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArchitectureTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/ArgRedirectionTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/ArgRedirectionTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/ArgRedirectionTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/ArgRedirectionTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/config.xml -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/ArgRedirectionTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/ArgRedirectionTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/Assets/Logo150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/Assets/Logo150x150.png -------------------------------------------------------------------------------- /tests/scenarios/Assets/Logo44x44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/Assets/Logo44x44.png -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/CompositionTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/CompositionTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/CompositionTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/CompositionTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/config.xml -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/readme.md -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/CompositionTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/CompositionTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/DynamicLibraryTest - Copy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/DynamicLibraryTest - Copy.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/DynamicLibraryTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/DynamicLibraryTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/DynamicLibraryTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/DynamicLibraryTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/DynamicLibraryTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/DynamicLibraryTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/EnvVarsATest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/EnvVarsATest.cpp -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/EnvVarsATest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/EnvVarsATest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/EnvVarsATest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/EnvVarsATest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/Registry.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/Registry.dat -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/User.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/User.dat -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/UserClasses.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/UserClasses.dat -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/config.json -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsATest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsATest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/EnvVarsWTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/EnvVarsWTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/EnvVarsWTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/EnvVarsWTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/EnvVarsWTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/EnvVarsWTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/Registry.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/Registry.dat -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/User.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/User.dat -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/UserClasses.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/UserClasses.dat -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/EnvVarsWTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/EnvVarsWTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/CopyFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/CopyFileTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/CreateDirectoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/CreateDirectoryTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/CreateHardLinkTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/CreateHardLinkTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/CreateNewFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/CreateNewFileTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/CreateSymbolicLinkTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/CreateSymbolicLinkTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/DeleteFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/DeleteFileTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/EnumerateDirectoriesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/EnumerateDirectoriesTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/EnumerateFilesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/EnumerateFilesTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/FileAttributesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/FileAttributesTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/FileSystemTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/FileSystemTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/FileSystemTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/FileSystemTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/ModifyFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/ModifyFileTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/MoveFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/MoveFileTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/PrivateProfileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/PrivateProfileTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/RemoveDirectoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/RemoveDirectoryTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/ReplaceFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/ReplaceFileTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/attributes.h -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/common_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/common_paths.h -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/config.xml -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/file.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/file.ini -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/file.txt -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/readme.md -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/FileSystemTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/FileSystemTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/AppxManifest32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/AppxManifest32.xml -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/AppxManifest64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/AppxManifest64.xml -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/Config32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/Config32.xml -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/CopyFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/CopyFileTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/CreateDeleteFileTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/CreateDeleteFileTests.cpp -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/CreateRemoveDirectoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/CreateRemoveDirectoryTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/FileEnumerationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/FileEnumerationTests.cpp -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/LongPathsTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/LongPathsTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/LongPathsTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/LongPathsTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/config32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/config32.json -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/config64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/config64.json -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/config64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/config64.xml -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/file.txt -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/paths.h -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/LongPathsTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/LongPathsTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MakeAppx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MakeAppx.ps1 -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/MiddlewareA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/MiddlewareA.cpp -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/MiddlewareTestA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/MiddlewareTestA.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/MiddlewareTestA.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/MiddlewareTestA.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/config.json -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestA/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestA/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/MiddlewareTestW.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/MiddlewareTestW.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/MiddlewareTestW.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/MiddlewareTestW.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/MiddlewareW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/MiddlewareW.cpp -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/config.json -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/MiddlewareTestW/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/MiddlewareTestW/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/PowershellScriptTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/PowershellScriptTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/PowershellScriptTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/PowershellScriptTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/SayHello.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/SayHello.ps1 -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/SayHi.ps1: -------------------------------------------------------------------------------- 1 | write-host "I am doing nothing" -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/SayWithArgument.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/SayWithArgument.ps1 -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/StartingScriptWrapper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/StartingScriptWrapper.ps1 -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/WaitAndSayHello.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/WaitAndSayHello.ps1 -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/config.xml -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PowershellScriptTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PowershellScriptTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/Config.xml -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/PreventBreakAwayTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/PreventBreakAwayTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/PreventBreakAwayTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/PreventBreakAwayTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/readme.md -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/PreventBreakAwayTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/PreventBreakAwayTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/AppXManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/AppXManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/DeletionMarkerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/DeletionMarkerTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/Helper.cpp -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/RegLegacyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/RegLegacyTest.cpp -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/RegLegacyTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/RegLegacyTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/RegLegacyTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/RegLegacyTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/Registry.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/Registry.dat -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/User.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/User.dat -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/UserClasses.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/UserClasses.dat -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/RegLegacyTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/RegLegacyTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/UpdateFileMappings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/UpdateFileMappings.ps1 -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/AppxManifest.xml -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/WorkingDirectoryTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/WorkingDirectoryTest.vcxproj -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/WorkingDirectoryTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/WorkingDirectoryTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/config.json -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/config.xml -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/main.cpp -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/readme.md -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/x64Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/x64Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/x64Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/x64Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/x86Debug/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/x86Debug/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/WorkingDirectoryTest/x86Release/FileMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/WorkingDirectoryTest/x86Release/FileMapping.txt -------------------------------------------------------------------------------- /tests/scenarios/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/readme.md -------------------------------------------------------------------------------- /tests/scenarios/signing/CreateCert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/signing/CreateCert.ps1 -------------------------------------------------------------------------------- /tests/scenarios/signing/ExportCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scenarios/signing/ExportCertificate.ps1 -------------------------------------------------------------------------------- /tests/scripts/ReplacePackageFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scripts/ReplacePackageFiles.ps1 -------------------------------------------------------------------------------- /tests/scripts/ReplacePackageShimBinaries.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scripts/ReplacePackageShimBinaries.ps1 -------------------------------------------------------------------------------- /tests/scripts/TakePackageOwnership.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/scripts/TakePackageOwnership.ps1 -------------------------------------------------------------------------------- /tests/tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/tests/tests.sln -------------------------------------------------------------------------------- /thirdparty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/thirdparty.txt -------------------------------------------------------------------------------- /xmlToJsonConverter/Format.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/xmlToJsonConverter/Format.xsl -------------------------------------------------------------------------------- /xmlToJsonConverter/msxsl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MSIX-PackageSupportFramework/HEAD/xmlToJsonConverter/msxsl.exe --------------------------------------------------------------------------------