From ccad1b62b45e6916774132072b9a580926a6958b Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Thu, 27 Apr 2017 10:55:20 -0700 Subject: [PATCH] Updated runtime identifier names --- .../Deployers/ApplicationDeployer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs index 0adba8c2d4..fa63c9a619 100644 --- a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs +++ b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs @@ -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 {