diff --git a/msbuild/Xamarin.MacDev.Tasks/Tasks/CompileEntitlements.cs b/msbuild/Xamarin.MacDev.Tasks/Tasks/CompileEntitlements.cs index 4f0e68874e2e..ef45308e6a4d 100644 --- a/msbuild/Xamarin.MacDev.Tasks/Tasks/CompileEntitlements.cs +++ b/msbuild/Xamarin.MacDev.Tasks/Tasks/CompileEntitlements.cs @@ -1042,7 +1042,7 @@ void ValidateTypeOrArray (MobileProvision? profile, EntitlementInfo info, var allowedEntitlement = GetValue (provisioningPEntitlement); var requestedEntitlement = GetValue (requestedPEntitlement); if (CompareValues (requestedEntitlement, allowedEntitlement)) { - Log.LogMessage (MessageImportance.Low, $"The app requests the entitlement '{key}' with the value '{requestedEntitlement}', which the provisioning profile '{provisioningProfileName}' grants, because it grants this value for this entitlement: '{allowedEntitlement}."); + Log.LogMessage (MessageImportance.Low, $"The app requests the entitlement '{key}' with the value '{requestedEntitlement}', which the provisioning profile '{provisioningProfileName}' grants, because it grants this value for this entitlement: '{allowedEntitlement}'."); } else { LogEntitlementValidationFailure (onlyWarn, 7137, MSBStrings.E7137, key, requestedEntitlement, provisioningProfileName, allowedEntitlement); // The app requests the entitlement '{0}' with the value '{1}', but the provisioning profile '{2}' grants it for the value '{3}'." }