Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
No, not MAUI. This is a Net7-macos application (therefore for Mac). I think we finally found the problem. As we saw, it did not perform the LINK ALL (and therefore it leaves dependencies which are not allowed by APPLE (and therefore rejected)).
Analyzing the problem throughout the day and trying to figure out why it wasn't linking. We realized that in the CPROJ there was a line of type <LinkMode>None</LinkMode> at the end of the project whereas in the properties above, we had set <LinkMode>Full</ LinkMode>.
So in fact, this property which was below in the project canceled the link.
We have republished the application and we are waiting for the response from APPLE mnt.
Alain