Skip to content
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

Fix Heat Harvesting for x64 Dlls #577

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

Nico-Ko
Copy link

@Nico-Ko Nico-Ko commented Dec 3, 2024

Copy link

github-actions bot commented Dec 3, 2024

CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅

@Nico-Ko
Copy link
Author

Nico-Ko commented Dec 16, 2024

I have read the CLA Document and I hereby sign the CLA

wixbot added a commit to wixtoolset/.github that referenced this pull request Dec 16, 2024
@@ -856,7 +856,7 @@ private void MutateComponents()
processed = true;
}
}
else if (5 == parts.Length && String.Equals("win32", parts[4], StringComparison.OrdinalIgnoreCase))
else if (5 == parts.Length && (String.Equals("win32", parts[4], StringComparison.OrdinalIgnoreCase) || String.Equals("win64", parts[4], StringComparison.OrdinalIgnoreCase)))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is 'arm64' also a potential option here?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like it could be an option here. However, it looks as if support for arm64 would require more changes throughout the whole repository. As Heat appears to be deprecated anyway it is maybe sufficient to just add support for x64 platforms here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Heat is not harvesting native x64 COM DLLs properly
2 participants