Hey,
I am trying to build for the AppStore using xbuild like this:
xbuild /p:Configuration=AppStore /p:Platform=iPhone /p:OutputPath=bin\iPhone\AppStore /p:MtouchArch="ARMv7, ARM64" /p:CodesignProvision=Automatic:AppStore /p:CodesignKey="iPhone Distribution" /p:CodesignEntitlements="Entitlements.plist" /p:IpaIncludeArtwork=false /t:Rebuild MyApp.iOS.csproj
I get the error:
Error executing task CompileITunesMetadata: Path is empty
How can I skip "CompileITunesMetadata"? I do not need it and I even read, that the AppStore rejects it when it is included.
Thanks!
Nathan
Are you using any entitlements? If not, you may need to omit:
/p:CodesignEntitlements="Entitlements.plist"
and perhaps add:
/p:BuildIpa=true
Answers
Are you using any entitlements? If not, you may need to omit:
and perhaps add: