Changes OS bitness check to Environment rather than System.Runtime.InteropServices.RuntimeInformation (#1286)
This commit is contained in:
parent
cf46dfcc5e
commit
9f1e6607dd
|
|
@ -47,8 +47,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
|||
{
|
||||
get
|
||||
{
|
||||
return RuntimeInformation.OSArchitecture == Architecture.X64
|
||||
|| RuntimeInformation.OSArchitecture == Architecture.Arm64;
|
||||
return Environment.Is64BitOperatingSystem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue