-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Remove the 'Resources' prefix from BundleResource #23978
Conversation
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.
Can we add a template-style test, that includes a @(BundleResource)
of each type that should work?
...ild.Tasks/nuget/buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SingleProject.targets
Outdated
Show resolved
Hide resolved
...ild.Tasks/nuget/buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SingleProject.targets
Outdated
Show resolved
Hide resolved
...ild.Tasks/nuget/buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SingleProject.targets
Show resolved
Hide resolved
/backport to release/8.0.1xx-sr7 |
Fixes #23554 Prior to Maui 8.0.70, there was a bug that only removed the "Resources/" prefix, and not the correct "Platforms/iOS/Resource": #16734 This PR #23269 fixes the original issue, but now exposed the case where BundleResource were included in the root Resources folder instead of the Platforms/iOS/ folder.
#24015 succeeded and was merged. |
/backport to release/9.0.1xx-preview7 |
Started backporting to release/9.0.1xx-preview7: https://github.com/dotnet/maui/actions/runs/10257553522 |
Description of Change
Prior to Maui 8.0.70, there was a bug that only removed the "Resources/" prefix, and not the correct "Platforms/iOS/Resources/": #16734
The PR #23269 fixes the original issue, but now exposed the case where
@(BundleResource)
were included in the root "Resources" folder instead of the "Platforms/iOS/Resources" folder.Issues Fixed
Fixes #23554