summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/LoaderTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/LoaderTests.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/LoaderTests.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/LoaderTests.cs b/Xamarin.Forms.Xaml.UnitTests/LoaderTests.cs
index c31ae0db..f132b19c 100644
--- a/Xamarin.Forms.Xaml.UnitTests/LoaderTests.cs
+++ b/Xamarin.Forms.Xaml.UnitTests/LoaderTests.cs
@@ -57,7 +57,9 @@ namespace Xamarin.Forms.Xaml.UnitTests
public class Catalog
{
public static readonly BindableProperty MessageProperty =
+#pragma warning disable 618
BindableProperty.CreateAttached<Catalog, string> (bindable => GetMessage (bindable), default(string),
+#pragma warning restore 618
propertyChanged: (bindable, oldvalue, newvalue) => {
var label = bindable as Label;
if (label != null)