From ccad1b62b45e6916774132072b9a580926a6958b Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Thu, 27 Apr 2017 10:55:20 -0700 Subject: [PATCH 1/2] 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 { From a67bbab6b31bac3d9a594cf508647717c4419505 Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Thu, 27 Apr 2017 12:30:45 -0700 Subject: [PATCH 2/2] Changing the RID back from win-x64 to win7-x64 to workaround SQL issue --- .../Deployers/ApplicationDeployer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs index fa63c9a619..6ec210ba07 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 "win-" + architecture; + return "win7-" + architecture; } else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) {