using System.Reflection;
using System.Runtime.Versioning;
namespace Prise.IntegrationTestsHost
{
public interface IHostFrameworkProvider
{
string ProvideHostFramework();
}
///
/// This is required for testing
///
public class AppHostFrameworkProvider : IHostFrameworkProvider
{
public string ProvideHostFramework() => typeof(AppHostFrameworkProvider).Assembly
.GetCustomAttribute()?
.FrameworkName;
}
}