Вы можете получить версию среды выполнения из свойства PlatformServices.Default.Application.RuntimeFramework
в Microsoft.Extensions.PlatformAbstractions
.
In Program.cs
:
Console.WriteLine(PlatformServices.Default.Application.RuntimeFramework);
ОБНОВЛЕНО: Согласно этому aspnet / Announcement, Microsoft.Extensions.PlatformAbstractions
удалено, поэтому RuntimeFramework
следует заменить на:
Console.WriteLine(System.Reflection.Assembly.GetEntryAssembly().GetCustomAttribute<TargetFrameworkAttribute>().FrameworkName);