A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
Hi @Kim Strasser ,
Thanks for your question. Your current settings are mostly fine for Apple App Store review. You can submit with this file. I suggest making these small changes:
- Increase
<ApplicationVersion>and<ApplicationDisplayVersion>every time before uploading. - In the Release section, change
<MtouchLink>None</MtouchLink>to<MtouchLink>SdkOnly</MtouchLink>. This makes the app smaller and is recommended for store submission. - Starting late April 2026, Apple requires apps to be built with Xcode 26 and the iOS 26 SDK. Make sure you're using the latest Xcode on your Mac
While this is a non-Microsoft link, it’s official apple developer documentation and is safe to visit.
- With release build settings: double-check you’re producing an Archive (Release) build for submission from Visual Studio.
- Build the .ipa file for App Store with this command:
dotnet publish -f net10.0-ios -c Release -r ios-arm64
Then use Visual Studio or Xcode to archive and upload to App Store Connect. Upload first to TestFlight again to verify everything, then submit for review.
Base on Publish an iOS app for App Store distribution.
I hope this addresses your question. If this response was helpful, please consider following the guidance to provide feedback.