xamarin 如何在VS Code中发布Maui iOS

u1ehiz5o  于 12个月前  发布在  iOS
关注(0)|答案(1)|浏览(153)

我已经开发了一个iOS应用程序在.Net毛伊岛使用VS代码。
现在我想上传我的应用程序的构建到TestFlight。
我已经在App Store Connect中设置了应用程序,我看到了向TestFlight提交构建的位置,但我不知道如何生成ipa文件并通过VS Code上传。
我看到了Visual Studio和XCode的教程,但没有VS Code的教程。
我该怎么办?

aor9mmx1

aor9mmx11#

您可以使用命令行发布.NET MAUI应用程序。
Mac上的例子:

dotnet publish -f net8.0-ios -c Release -p:ArchiveOnBuild=true -p:RuntimeIdentifier=ios-arm64 -p:CodesignKey="{insert the name of the code signing key}" -p:CodesignProvision="{insert the provisioning profile to use when signing the app bundle}"

字符串
Windows上的示例:

dotnet publish -f net8.0-ios -c Release -p:ArchiveOnBuild=true -p:RuntimeIdentifier=ios-arm64 -p:CodesignKey="insert the name of the code signing key" -p:CodesignProvision="insert the provisioning profile to use when signing the app bundle." -p:ServerAddress={macOS build host IP address} -p:ServerUser={macOS username} -p:ServerPassword={macOS password} -p:TcpPort=58181 -p:_DotNetRootRemoteDirectory=/Users/{macOS username}/Library/Caches/Xamarin/XMA/SDKs/dotnet/


完整的如何:Publish an iOS app using the command line

相关问题