Allow publishing rid specific desktop applications
This commit is contained in:
parent
e88ad84a72
commit
d14b453c33
|
|
@ -35,9 +35,9 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
throw new DirectoryNotFoundException(string.Format("Application path {0} does not exist.", applicationPath));
|
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;
|
ApplicationPath = applicationPath;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue