Skip to content

Discussion: How to Use keychain-access-groups with iOS Simulator #29989

Answered by rolfbjarne
Mike-E-angelo asked this question in Q&A
Discussion options

You must be logged in to vote

Looking a bit more at this, it's kind of related to using the free apple developer account, because creating provisioning profiles is not allowed there it seems.

As a workaround, try adding this to your csproj:

<Target Name="NoProvisioningProfiles" BeforeTargets="_DetectSigningIdentity">
  <PropertyGroup Condition="$(RuntimeIdentifier.Contains('simulator'))">
    <CodesignRequireProvisioningProfile>false</CodesignRequireProvisioningProfile>
  </PropertyGroup>
</Target>

The good news is that this will be fixed in .NET 10 (it was very recently fixed).

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@Mike-E-angelo
Comment options

@rolfbjarne
Comment options

Answer selected by Mike-E-angelo
@Mike-E-angelo
Comment options

@rolfbjarne
Comment options

@Mike-E-angelo
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #29988 on June 13, 2025 18:15.