Fix CascadiaPackage platform mapping in OpenConsole.slnx#20063
Fix CascadiaPackage platform mapping in OpenConsole.slnx#20063katlun-lgtm wants to merge 1 commit intomicrosoft:mainfrom
Conversation
Map '*|Any CPU' to 'Win32' (not 'x86') to match the project's actual configuration names (Debug|Win32, Release|Win32). Also add an explicit '*|x86 -> Win32' mapping so solution platform x86 resolves correctly. Fixes VS warning: solution specifies a project configuration that does not exist for CascadiaPackage.wapproj.
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
Looks like x86 is failing: |
|
Yeah I was going to say, Windows App Packaging projects are special. I checked ours and it seemed like this should work, but I am not surprised that it does not. |
| <BuildType Solution="Fuzzing|*" Project="Debug" /> | ||
| <Platform Solution="*|Any CPU" Project="x86" /> | ||
| <Platform Solution="*|Any CPU" Project="Win32" /> | ||
| <Platform Solution="*|x86" Project="Win32" /> |
There was a problem hiding this comment.
unfortunately, yes, x86 is actually the platform name used in Windows Desktop Bridge packaging projects.
Map '|Any CPU' to 'Win32' (not 'x86') to match the project's actual configuration names (Debug|Win32, Release|Win32). Also add an explicit '|x86 -> Win32' mapping so solution platform x86 resolves correctly.
Fixes VS warning: solution specifies a project configuration that does not exist for CascadiaPackage.wapproj.
Summary of the Pull Request
References and Relevant Issues
Detailed Description of the Pull Request / Additional comments
Validation Steps Performed
PR Checklist