[msbuild] Remove unused property from DetectSigningIdentityTask. (#10478)

This commit is contained in:
Rolf Bjarne Kvinge 2021-01-20 21:23:51 +01:00 коммит произвёл GitHub
Родитель 6cebeca4db
Коммит 4a32d37c5d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -130,9 +130,6 @@ namespace Xamarin.MacDev.Tasks
[Output]
public string DetectedBundleId { get; set; }
[Output]
public string DetectedBundleVersion { get; set; }
// This is input too
[Output]
public string DetectedCodeSigningKey { get; set; }
@ -517,7 +514,6 @@ namespace Xamarin.MacDev.Tasks
}
DetectedCodesignAllocate = Path.Combine (DeveloperRoot, "Toolchains", "XcodeDefault.xctoolchain", "usr", "bin", "codesign_allocate");
DetectedBundleVersion = plist.GetCFBundleVersion ();
DetectedDistributionType = type.ToString ();
identity.BundleId = plist.GetCFBundleIdentifier ();

Просмотреть файл

@ -793,7 +793,6 @@ Copyright (C) 2018 Microsoft. All rights reserved.
<Output TaskParameter="DetectedAppId" PropertyName="_AppIdentifier" />
<Output TaskParameter="DetectedBundleId" PropertyName="_BundleIdentifier" />
<Output TaskParameter="DetectedBundleVersion" PropertyName="_BundleVersion" />
<Output TaskParameter="DetectedCodeSigningKey" PropertyName="_CodeSigningKey" />
<Output TaskParameter="DetectedCodesignAllocate" PropertyName="_CodesignAllocate" />
<Output TaskParameter="DetectedDistributionType" PropertyName="_DistributionType" />