microsoft / MSIX-PackageSupportFramework

The Package Support Framework (PSF) is a kit for applying compatibility fixes to packaged desktop applications.
MIT License
115 stars 57 forks source link

Psflauncher looks for CamelCase instead of pascalCase for "waitForDebugger" #171

Closed TimMangan closed 3 years ago

TimMangan commented 3 years ago

Json element names are traditionally pascalCase. The main.cpp file line 58 checks for "WaitForDebugger" instead of "waitForDebugger" and therefore never waits.

This only affects the debug build, but is needed when you want to debug the launcher itself.

TimMangan commented 3 years ago

I am working on a PR for this.

TimMangan commented 3 years ago

Resolved in PR #170 to Develop branch.