64 references to RuntimeArchitecture
IIS.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
41RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedSitesFixture.cs (1)
49RuntimeArchitecture = RuntimeArchitecture.x64,
IIS.LongTests (6)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
41RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedSitesFixture.cs (1)
49RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
41private readonly string _dotnetLocation = DotNetCommands.GetDotNetExecutable(RuntimeArchitecture.x64); 133deploymentParameters.RuntimeArchitecture = RuntimeArchitecture.x64; 142var installDir = DotNetCommands.GetDotNetInstallDir(RuntimeArchitecture.x64); 145"SOFTWARE\\dotnet\\Setup\\InstalledVersions\\" + RuntimeArchitecture.x64,
IIS.Microbenchmarks (1)
StartupTimeBenchmark.cs (1)
29RuntimeArchitecture.x64)
IIS.NewHandler.FunctionalTests (6)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
41RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedSitesFixture.cs (1)
49RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
41private readonly string _dotnetLocation = DotNetCommands.GetDotNetExecutable(RuntimeArchitecture.x64); 133deploymentParameters.RuntimeArchitecture = RuntimeArchitecture.x64; 142var installDir = DotNetCommands.GetDotNetInstallDir(RuntimeArchitecture.x64); 145"SOFTWARE\\dotnet\\Setup\\InstalledVersions\\" + RuntimeArchitecture.x64,
IIS.NewShim.FunctionalTests (6)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
41RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedSitesFixture.cs (1)
49RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
41private readonly string _dotnetLocation = DotNetCommands.GetDotNetExecutable(RuntimeArchitecture.x64); 133deploymentParameters.RuntimeArchitecture = RuntimeArchitecture.x64; 142var installDir = DotNetCommands.GetDotNetInstallDir(RuntimeArchitecture.x64); 145"SOFTWARE\\dotnet\\Setup\\InstalledVersions\\" + RuntimeArchitecture.x64,
IIS.ShadowCopy.Tests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
41RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedSitesFixture.cs (1)
49RuntimeArchitecture = RuntimeArchitecture.x64,
IISExpress.FunctionalTests (6)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
41RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedSitesFixture.cs (1)
49RuntimeArchitecture = RuntimeArchitecture.x64,
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
41private readonly string _dotnetLocation = DotNetCommands.GetDotNetExecutable(RuntimeArchitecture.x64); 133deploymentParameters.RuntimeArchitecture = RuntimeArchitecture.x64; 142var installDir = DotNetCommands.GetDotNetInstallDir(RuntimeArchitecture.x64); 145"SOFTWARE\\dotnet\\Setup\\InstalledVersions\\" + RuntimeArchitecture.x64,
Microsoft.AspNetCore.FunctionalTests (1)
WebHostFunctionalTests.cs (1)
154var deploymentParameters = new DeploymentParameters(Path.Combine(GetTestSitesPath(), applicationName), ServerType.IISExpress, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64)
Microsoft.AspNetCore.Server.IntegrationTesting (29)
ApplicationPublisher.cs (1)
104var architecture = deploymentParameters.RuntimeArchitecture;
CachingApplicationPublisher.cs (1)
88public RuntimeArchitecture RuntimeArchitecture { get; set; }
Common\DeploymentParameters.cs (2)
53RuntimeArchitecture runtimeArchitecture) 102public RuntimeArchitecture RuntimeArchitecture { get; set; } = RuntimeArchitectures.Current;
Common\DotNetCommands.cs (4)
60public static string GetDotNetInstallDir(RuntimeArchitecture arch) 72public static string GetDotNetExecutable(RuntimeArchitecture arch) 86public static bool IsRunningX86OnX64(RuntimeArchitecture arch) 89&& arch == RuntimeArchitecture.x86;
Common\RuntimeArchitectures.cs (6)
10public static RuntimeArchitecture Current 16Architecture.Arm64 => RuntimeArchitecture.arm64, 17Architecture.X64 => RuntimeArchitecture.x64, 18Architecture.X86 => RuntimeArchitecture.x86, 19Architecture.Ppc64le => RuntimeArchitecture.ppc64le, 20Architecture.S390x => RuntimeArchitecture.s390x,
Deployers\RemoteWindowsDeployer\RemoteWindowsDeploymentParameters.cs (1)
13RuntimeArchitecture runtimeArchitecture,
Deployers\SelfHostDeployer.cs (1)
40&& DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86)
TestMatrix.cs (10)
14public IList<RuntimeArchitecture> Architectures { get; set; } = new List<RuntimeArchitecture>(); 47public TestMatrix WithArchitectures(params RuntimeArchitecture[] archs) 62Architectures.Add(RuntimeArchitecture.x86); 222foreach (var arch in Architectures) 248private static string SkipIfArchitectureNotSupportedOnCurrentSystem(RuntimeArchitecture arch) 250if (arch == RuntimeArchitecture.x64) 261private static bool IsArchitectureSupportedOnServer(RuntimeArchitecture arch, ServerType server) 264return !(arch == RuntimeArchitecture.x86 && ServerType.Nginx == server); 267private void VaryByAncmHostingModel(IList<TestVariant> variants, ServerType server, string tfm, ApplicationType type, RuntimeArchitecture arch, string skip)
TestVariant.cs (3)
13public RuntimeArchitecture Architecture { get; set; } 37info.AddValue(nameof(Architecture), Architecture, typeof(RuntimeArchitecture)); 47Architecture = info.GetValue<RuntimeArchitecture>(nameof(Architecture));
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (4)
IISDeployer.cs (1)
374if (DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86)
IISDeployerBase.cs (1)
95var arch = DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x64 ? $@"{basePath}x64\{ancmDllName}" : $@"{basePath}x86\{ancmDllName}";
IISDeploymentParameters.cs (1)
23RuntimeArchitecture runtimeArchitecture)
IISExpressDeployer.cs (1)
134&& DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86)
ServerComparison.FunctionalTests (1)
HelloWorldTest.cs (1)
72string expectedName = Enum.GetName(typeof(RuntimeArchitecture), variant.Architecture);