Release build fails for Mac and WASM #19435
-
Our application builds just fine in debug, but gets these errors when building in release:
Uno.Sdk: 5.5.49 .net 8 still. Building on Windows with VS 2022, version 17.12.2 |
Beta Was this translation helpful? Give feedback.
Answered by
jeromelaban
Feb 17, 2025
Replies: 1 comment 6 replies
-
Thanks for the report. This is expected and was fixed with .NET 9. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see, you're using the workaround for #18552, which is causing this issue. This workaround is only useful when building for winappsdk, for the other targets it will break the build.
Make sure to set the
PropertyGroup
around the workaround with aCondition=" '$(TargetFramework)' == 'net9.0-windows10.0.26100' "
.