Updated runtime identifier names

This commit is contained in:
Kiran Challa 2017-04-27 10:55:20 -07:00
parent ba2bca4a96
commit ccad1b62b4
1 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
var architecture = GetArchitecture();
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
return "win7-" + architecture;
return "win-" + architecture;
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
@ -223,7 +223,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
return "osx.10.12-" + architecture;
return "osx-" + architecture;
}
else
{