-
I have a Mobile-project migrated to .Net8, but now get the following message in my Github Action: I was not yet able to build the project locally, as VS for Mac does not support .Net 8 and I was unable to setup VS Code correctly. So I've updated my build pipeline to use Net8 that was previously correctly building for .Net 7. Any clues? This is my csproj:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 16 replies
-
Thanks for the question. This generally means that workloads have not been installed. Did you run uno-check in your build? |
Beta Was this translation helpful? Give feedback.
-
@TopperDEL can you open an issue or another discussion to let us know about that problem ? thanks! |
Beta Was this translation helpful? Give feedback.
I think I found my issue. In my "shared"-project I was missing the TargetFrameworks in case I'm not building for windows. I removed the other targets anyhow after starting from the template and forgot them. Now I wanted to buidl for the mac and got the "TargetFramework-empty"-error - but unfortunately on the Head-project, not on the shared one. So it lead me to the wrong project.