aspnetcore/test/Diagnostics.EFCore.Function.../Helpers/PlatformHelper.cs

18 lines
476 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.FunctionalTests.Helpers
{
public class PlatformHelper
{
public static bool IsMono
{
get
{
return Type.GetType("Mono.Runtime") != null;
}
}
}
}