-
Notifications
You must be signed in to change notification settings - Fork 515
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
Two MacCatalyst RIDs can cause error : Unable to merge the file 'Contents/Resources/Assets.car'
#16065
Comments
If you look here, you can get an idea of the frequency: https://github.com/jonathanpeppers/inclusive-code-reviews-ml/commits/main The two recent "red" GitHub statuses are this issue. |
It's the same thing as this: dotnet/maui#9968 (comment) |
…amarin#16065. Add a public 'CompileImageAssetsDependsOn' property, so that MAUI can inject tasks that must be completed before we compile image assets: ```xml <PropertyGroup> <CompileImageAssetsDependsOn> $(CompileImageAssetsDependsOn); ResizetizeCollectItems; </CompileImageAssetsDependsOn> </PropertyGroup> ``` Fixes xamarin#16065.
I'm adding a public MSBuild property that MAUI can hook into instead of using private targets. I've also created a MAUI issue to have them update their code: dotnet/maui#10272 |
…16065. (#16089) Add a public 'CompileImageAssetsDependsOn' property, so that MAUI can inject tasks that must be completed before we compile image assets: ```xml <PropertyGroup> <CompileImageAssetsDependsOn> $(CompileImageAssetsDependsOn); ResizetizeCollectItems; </CompileImageAssetsDependsOn> </PropertyGroup> ``` Fixes #16065.
…amarin#16065. Add a public 'CompileImageAssetsDependsOn' property, so that MAUI can inject tasks that must be completed before we compile image assets: ```xml <PropertyGroup> <CompileImageAssetsDependsOn> $(CompileImageAssetsDependsOn); ResizetizeCollectItems; </CompileImageAssetsDependsOn> </PropertyGroup> ``` Fixes xamarin#16065.
…amarin#16065. Add a public 'CompileImageAssetsDependsOn' property, so that MAUI can inject tasks that must be completed before we compile image assets: ```xml <PropertyGroup> <CompileImageAssetsDependsOn> $(CompileImageAssetsDependsOn); ResizetizeCollectItems; </CompileImageAssetsDependsOn> </PropertyGroup> ``` Fixes xamarin#16065.
…etsDependsOn' property. Fixes #16065. (#16111) Add a public 'CompileImageAssetsDependsOn' property, so that MAUI can inject tasks that must be completed before we compile image assets: ```xml <PropertyGroup> <CompileImageAssetsDependsOn> $(CompileImageAssetsDependsOn); ResizetizeCollectItems; </CompileImageAssetsDependsOn> </PropertyGroup> ``` Fixes #16065. Backport of #16089 Co-authored-by: Rolf Bjarne Kvinge <[email protected]>
…dsOn' property. Fixes #16065. (#16112) Add a public 'CompileImageAssetsDependsOn' property, so that MAUI can inject tasks that must be completed before we compile image assets: ```xml <PropertyGroup> <CompileImageAssetsDependsOn> $(CompileImageAssetsDependsOn); ResizetizeCollectItems; </CompileImageAssetsDependsOn> </PropertyGroup> ``` Fixes #16065. Backport of #16089 Co-authored-by: Rolf Bjarne Kvinge <[email protected]>
Steps to Reproduce
RuntimeIdentifiers=maccatalyst-x64;maccatalyst-arm64
My rough estimate is that this fails on GitHub actions around 1 in 10 tries. I think we also saw it on MAUI's CI here: dotnet/maui#9968 (comment)
Expected Behavior
RuntimeIdentifiers=maccatalyst-x64;maccatalyst-arm64
doesn't fail the build.Actual Behavior
RuntimeIdentifiers=maccatalyst-x64;maccatalyst-arm64
sometimes fails the build.Environment
CI reported these versions:
Build Logs
This happened here: https://github.com/jonathanpeppers/inclusive-code-reviews-ml/actions/runs/3101122438/jobs/5022151673
logs.zip
Example Project (If Possible)
Using this project:
https://github.com/jonathanpeppers/inclusive-code-reviews-ml/tree/main/Maui/MLTrainer
The text was updated successfully, but these errors were encountered: