-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Revise and consolidate osx-arm64 commits #732
Conversation
The upcoming specification of a macOS runtime led to the need to update the Microsoft.NET.Test.Sdk package. The old version, when combined with this specification, caused dependent packages to be downgraded, which resulted in NuGet errors. Upgrading to the latest version resolved this issue. Additionally, Avalonia has been upgraded to the latest version, which was necessitated by the upcoming changes to support osx-arm64.
@@ -2,7 +2,7 @@ | |||
<installer-gui-script minSpecVersion="1"> | |||
<title>Git Credential Manager</title> | |||
<background file="background.png" mime-type="image/png" alignment="bottomleft" scaling="tofit" /> | |||
<options customize="never" /> | |||
<options customize="never" hostArchitectures="x86_64,arm64" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I realise this was also in the first PR, but is correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mmmm no. Looks like the separate distribution files may have been dropped in the midst of a rebase. I will bring them back.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
Add support for building osx-arm64 in addition to osx-x64 to produce native M1 binaries.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
This change revises the commits from #636 by:
osx-arm64
support into two commits. The first commit lays the ground work for the changes by updating certain dependencies. The second commit implementsosx-arm64
support.