Merge branch '3.6.0' into 4.0.0

This commit is contained in:
Stephane Delcroix 2019-03-21 14:37:08 +01:00
Родитель de328b1338 f0f9415d73
Коммит 534a261e30
4 изменённых файлов: 4 добавлений и 3 удалений

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

@ -26,4 +26,4 @@ namespace Xamarin.Forms
return true;
}
}
}
}

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

@ -8,7 +8,6 @@ namespace Xamarin.Forms
{
public partial class VisualElement : NavigableElement, IAnimatable, IVisualElementController, IResourcesProvider, IStyleElement, IFlowDirectionController, IPropertyPropagationController, IVisualController
{
public new static readonly BindableProperty NavigationProperty = NavigableElement.NavigationProperty;
public new static readonly BindableProperty StyleProperty = NavigableElement.StyleProperty;

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

@ -397,4 +397,4 @@
<MSBuild Targets="Restore" Projects="Xamarin.Forms.Platform.Android.csproj" Properties="CreateAllAndroidTargets=false;Configuration=$(Configuration);Platform=$(Platform);">
</MSBuild>
</Target>
</Project>
</Project>

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

@ -108,7 +108,9 @@ namespace Xamarin.Forms.Platform.MacOS
#if __MOBILE__
layoutManager.CharacterRangeForGlyphRange(characterRange, ref glyphRange);
#else
#pragma warning disable CS0618 // Type or member is obsolete
layoutManager.CharacterRangeForGlyphRange(characterRange, out glyphRange);
#pragma warning restore CS0618 // Type or member is obsolete
#endif
return layoutManager.BoundingRectForGlyphRange(glyphRange, textContainer);
}