aspnetcore/test/E2ETests/Helpers.cs

15 lines
243 B
C#

using System;
namespace E2ETests
{
public class Helpers
{
public static bool RunningOnMono
{
get
{
return Type.GetType("Mono.Runtime") != null;
}
}
}
}