This commit is contained in:
Sung Yoon Whang 2020-07-23 13:00:51 -07:00
Родитель 11d8024b68
Коммит 730fb9a367
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,7 @@ namespace Microsoft.Diagnostics.NETCore.Client
runner.Start(3000);
DiagnosticsClient client = new DiagnosticsClient(runner.Pid);
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && Environment.Version.ToString().StartsWith("3"))
{
Assert.Throws<PlatformNotSupportedException>(() => client.WriteDump(DumpType.Normal, dumpPath));
}