Reputation: 1886
I am trying to debug my Maui app on my iOS (Android works perfectly) and I'm getting this error:
Severity Code Description Project File Line Suppression State
Error Automatic Provisioning is enabled but no Development Team was selected. Please select a team or switch to Manual Provisioning from the iOS Bundle Signing page. 0
I have already:
Anyone have any experience w/this?
Upvotes: 0
Views: 545
Reputation: 14469
Here is a discussion that has the same error message as yours on the github. You can try the workaround in it:
Put the following entries into the first PropertyGroup:
<CodesignKey>Apple Development: YOUR NAME</CodesignKey>
<CodesignProvision>VS: com.COMPANY.APPID Development</CodesignProvision>
<ProvisioningType>manual</ProvisioningType>
Upvotes: 0