From d14b453c33b608500cd16964250e804efd798018 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Wed, 21 Jun 2017 11:43:50 -0700 Subject: [PATCH] Allow publishing rid specific desktop applications --- .../Common/DeploymentParameters.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/DeploymentParameters.cs b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/DeploymentParameters.cs index d662cef8a7..27640090c8 100644 --- a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/DeploymentParameters.cs +++ b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/DeploymentParameters.cs @@ -35,9 +35,9 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting throw new DirectoryNotFoundException(string.Format("Application path {0} does not exist.", applicationPath)); } - if (runtimeArchitecture == RuntimeArchitecture.x86) + if (runtimeArchitecture == RuntimeArchitecture.x86 && runtimeFlavor == RuntimeFlavor.CoreClr) { - throw new NotSupportedException("32 bit compilation is not yet supported. Don't remove the tests, just disable them for now."); + throw new NotSupportedException("32 bit deployment is not yet supported for CoreCLR. Don't remove the tests, just disable them for now."); } ApplicationPath = applicationPath;