From de6bf4987fe32c865a0d80074c17fa7c1d4b0558 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Sat, 3 Nov 2018 01:24:12 +0200 Subject: [PATCH] [Platform] Remove the Platform for .net standard since it does nothing (#592) - closes #579 --- Xamarin.Essentials/Platform/Platform.shared.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Xamarin.Essentials/Platform/Platform.shared.cs b/Xamarin.Essentials/Platform/Platform.shared.cs index 871d3e02e..b946b4c87 100644 --- a/Xamarin.Essentials/Platform/Platform.shared.cs +++ b/Xamarin.Essentials/Platform/Platform.shared.cs @@ -1,6 +1,8 @@ namespace Xamarin.Essentials { +#if !NETSTANDARD public static partial class Platform { } +#endif }