Allow publishing rid specific desktop applications

This commit is contained in:
Pranav K 2017-06-21 11:43:50 -07:00
parent e88ad84a72
commit d14b453c33
1 changed files with 2 additions and 2 deletions

View File

@ -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;