29 references to RuntimeArchitecture
Microsoft.AspNetCore.Server.IntegrationTesting (29)
ApplicationPublisher.cs (1)
104
var
architecture = deploymentParameters.RuntimeArchitecture;
CachingApplicationPublisher.cs (1)
88
public
RuntimeArchitecture
RuntimeArchitecture { get; set; }
Common\DeploymentParameters.cs (2)
53
RuntimeArchitecture
runtimeArchitecture)
102
public
RuntimeArchitecture
RuntimeArchitecture { get; set; } = RuntimeArchitectures.Current;
Common\DotNetCommands.cs (4)
60
public static string GetDotNetInstallDir(
RuntimeArchitecture
arch)
72
public static string GetDotNetExecutable(
RuntimeArchitecture
arch)
86
public static bool IsRunningX86OnX64(
RuntimeArchitecture
arch)
89
&& arch ==
RuntimeArchitecture
.x86;
Common\RuntimeArchitectures.cs (6)
10
public static
RuntimeArchitecture
Current
16
Architecture.Arm64 =>
RuntimeArchitecture
.arm64,
17
Architecture.X64 =>
RuntimeArchitecture
.x64,
18
Architecture.X86 =>
RuntimeArchitecture
.x86,
19
Architecture.Ppc64le =>
RuntimeArchitecture
.ppc64le,
20
Architecture.S390x =>
RuntimeArchitecture
.s390x,
Deployers\RemoteWindowsDeployer\RemoteWindowsDeploymentParameters.cs (1)
13
RuntimeArchitecture
runtimeArchitecture,
Deployers\SelfHostDeployer.cs (1)
40
&& DeploymentParameters.RuntimeArchitecture ==
RuntimeArchitecture
.x86)
TestMatrix.cs (10)
14
public IList<
RuntimeArchitecture
> Architectures { get; set; } = new List<
RuntimeArchitecture
>();
47
public TestMatrix WithArchitectures(params
RuntimeArchitecture
[] archs)
62
Architectures.Add(
RuntimeArchitecture
.x86);
222
foreach (
var
arch in Architectures)
248
private static string SkipIfArchitectureNotSupportedOnCurrentSystem(
RuntimeArchitecture
arch)
250
if (arch ==
RuntimeArchitecture
.x64)
261
private static bool IsArchitectureSupportedOnServer(
RuntimeArchitecture
arch, ServerType server)
264
return !(arch ==
RuntimeArchitecture
.x86 && ServerType.Nginx == server);
267
private void VaryByAncmHostingModel(IList<TestVariant> variants, ServerType server, string tfm, ApplicationType type,
RuntimeArchitecture
arch, string skip)
TestVariant.cs (3)
13
public
RuntimeArchitecture
Architecture { get; set; }
37
info.AddValue(nameof(Architecture), Architecture, typeof(
RuntimeArchitecture
));
47
Architecture = info.GetValue<
RuntimeArchitecture
>(nameof(Architecture));