bluebonnet/Baselib/src/System/CompatibilitySwitches.cs

14 lines
195 B
C#
Raw Normal View History

2020-08-26 11:23:24 +03:00
namespace system
{
internal static class CompatibilitySwitches
{
// used by System.IO.StreamWriter
public static bool IsAppEarlierThanWindowsPhone8 => false;
}
}