Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions msbuild/Xamarin.Mac.Tasks/Tasks/DetectSigningIdentity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ namespace Xamarin.Mac.Tasks
{
public class DetectSigningIdentity : DetectSigningIdentityTaskBase
{
static readonly string[] appStoreDistributionPrefixes = { "3rd Party Mac Developer Application" };
static readonly string[] appStoreDistributionPrefixes = { "3rd Party Mac Developer Application", "Apple Distribution" };
static readonly string[] directDistributionPrefixes = { "Developer ID Application" };
static readonly string[] developmentPrefixes = { "Mac Developer" };
static readonly string[] developmentPrefixes = { "Mac Developer", "Apple Development" };

protected override string[] DevelopmentPrefixes { get { return developmentPrefixes; } }
protected override string[] DirectDistributionPrefixes { get { return directDistributionPrefixes; } }
protected override string[] AppStoreDistributionPrefixes { get { return appStoreDistributionPrefixes; } }
protected override string DeveloperRoot { get { return MacOSXSdks.Native.DeveloperRoot; } }
protected override PlatformFramework Framework { get { return PlatformFramework.MacOS; } }
protected override string PlatformName { get { return "OS X"; } }
protected override string PlatformName { get { return "macOS"; } }

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not quite sure about this one but as long as our tests are happy 👍

protected override string ApplicationIdentifierKey { get { return "com.apple.application-identifier"; } }
}
}