-
Notifications
You must be signed in to change notification settings - Fork 441
Add arm64 as a possible WinForms arch #7457
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Makes it possible to build/publish arm64 winforms app. WPF/Full Winforms+WPF should still fail as a build time scenario.
FYI @richlander |
Do we have a runtime pack for this yet? Ideally I'd like to also add a basic test that this works. |
There are at least three pieces we need:
Will we have all of these after this PR merges? |
Yes, this I have to look how to do. Tom and I confirmed manually it worked but it would be good to actually confirm it works as expected. I'll take a look at the tree tomorrow to see where they are. Ideally I could test these two:
Should I also open an issue to track the cleanup? |
Are you blocked by this change? If not, I think we should checkin until the feature can work. Yes, you should open an issue to track everything that is required for this feature to function. |
There's some loose ends here:
All three are done to some extent:
|
I would like to see a simple test case that we can build a self-contained Windows Forms app for ARM64 before merging this. I don't think we need to address #7467 before merging this though. |
Makes it possible to build/publish ARM64 WinForms apps.
UseWPF
it will fail as a build time scenario as there's no available runtime pack.UsingWindowsForms
will correctly compile and run natively as long as all the references are in the assemblies produced by winforms.cc: @merriemcgaw, @tommcdon