applePublish to iOS

This page explains how to build your application to publish it to Apple App Store via Apple store connect.

triangle-exclamation

Create the app identifier, distribution certificate and provision profile according to this guide: https://learn.microsoft.com/en-us/dotnet/maui/ios/deployment/publish-app-store?view=net-maui-9.0arrow-up-right

And then build the app with the following command:

rm -rf ./PlutoFramework/bin ;
rm -rf ./PlutoFramework/obj ;
dotnet publish PlutoFramework/PlutoFramework.csproj -f net9.0-ios -c Release -p:ArchiveOnBuild=true -p:RuntimeIdentifier=ios-arm64 -p:CodesignKey="Apple Distribution: <company-name/name> (<id>)" -p:CodesignProvision="<app-name>"

Last updated