You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the PCL and netstandard1.x eras certain APIs were only available when targeting "full" runtimes (.NET 4.x, .NET Core, Xamarin.Android, Xamarin.iOS). So we've had those in shared code and compiled them into libraries targeting those "full" runtimes while having AppBuilderBase in our PCL/netstandard1.1/netstandard1.3 library. That continued for a while, so we now have several #if blocks in that shared code. We should replace those #ifs with IsOSPlatform checks before moving AppBuilder to netstandard2.0.
The text was updated successfully, but these errors were encountered:
During the PCL and netstandard1.x eras certain APIs were only available when targeting "full" runtimes (.NET 4.x, .NET Core, Xamarin.Android, Xamarin.iOS). So we've had those in shared code and compiled them into libraries targeting those "full" runtimes while having AppBuilderBase in our PCL/netstandard1.1/netstandard1.3 library. That continued for a while, so we now have several
#if
blocks in that shared code. We should replace those#if
s withIsOSPlatform
checks before moving AppBuilder to netstandard2.0.The text was updated successfully, but these errors were encountered: