17 writes 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 (3)
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 (1)
133deploymentParameters.RuntimeArchitecture = RuntimeArchitecture.x64;
IIS.NewHandler.FunctionalTests (3)
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 (1)
133deploymentParameters.RuntimeArchitecture = RuntimeArchitecture.x64;
IIS.NewShim.FunctionalTests (3)
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 (1)
133deploymentParameters.RuntimeArchitecture = 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 (3)
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 (1)
133deploymentParameters.RuntimeArchitecture = RuntimeArchitecture.x64;
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Common\DeploymentParameters.cs (1)
38RuntimeArchitecture = variant.Architecture;
27 references to RuntimeArchitecture
IIS.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\GlobalVersionTests.cs (1)
223deploymentResult.DeploymentParameters.RuntimeArchitecture.ToString(),
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
69profileName = "Standalone-" + deploymentParameters.RuntimeArchitecture;
IIS.LongTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
69profileName = "Standalone-" + deploymentParameters.RuntimeArchitecture;
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
210deploymentParameters.EnvironmentVariables["PATH"] = Path.GetDirectoryName(DotNetCommands.GetDotNetExecutable(deploymentParameters.RuntimeArchitecture));
IIS.NewHandler.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
69profileName = "Standalone-" + deploymentParameters.RuntimeArchitecture;
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
210deploymentParameters.EnvironmentVariables["PATH"] = Path.GetDirectoryName(DotNetCommands.GetDotNetExecutable(deploymentParameters.RuntimeArchitecture));
IIS.NewShim.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
69profileName = "Standalone-" + deploymentParameters.RuntimeArchitecture;
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
210deploymentParameters.EnvironmentVariables["PATH"] = Path.GetDirectoryName(DotNetCommands.GetDotNetExecutable(deploymentParameters.RuntimeArchitecture));
IIS.ShadowCopy.Tests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
69profileName = "Standalone-" + deploymentParameters.RuntimeArchitecture;
IISExpress.FunctionalTests (3)
src\Servers\IIS\IIS\test\Common.FunctionalTests\GlobalVersionTests.cs (1)
223deploymentResult.DeploymentParameters.RuntimeArchitecture.ToString(),
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
69profileName = "Standalone-" + deploymentParameters.RuntimeArchitecture;
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
210deploymentParameters.EnvironmentVariables["PATH"] = Path.GetDirectoryName(DotNetCommands.GetDotNetExecutable(deploymentParameters.RuntimeArchitecture));
Microsoft.AspNetCore.Server.IntegrationTesting (7)
ApplicationPublisher.cs (2)
36+ $" /p:TargetArchitecture={deploymentParameters.RuntimeArchitecture}" 104var architecture = deploymentParameters.RuntimeArchitecture;
CachingApplicationPublisher.cs (1)
38RuntimeArchitecture = deploymentParameters.RuntimeArchitecture
Common\DeploymentParameters.cs (1)
189RuntimeArchitecture,
Deployers\ApplicationDeployer.cs (2)
103if (DotNetCommands.IsRunningX86OnX64(DeploymentParameters.RuntimeArchitecture)) 105executableName = DotNetCommands.GetDotNetExecutable(DeploymentParameters.RuntimeArchitecture);
Deployers\SelfHostDeployer.cs (1)
40&& DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86)
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (8)
IISDeployer.cs (2)
145aspNetCore.SetAttributeValue("processPath", DotNetCommands.GetDotNetExecutable(DeploymentParameters.RuntimeArchitecture)); 374if (DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86)
IISDeployerBase.cs (1)
95var arch = DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x64 ? $@"{basePath}x64\{ancmDllName}" : $@"{basePath}x86\{ancmDllName}";
IISExpressDeployer.cs (5)
120dllRoot = Path.Combine(DeploymentParameters.ApplicationPath, "bin", DeploymentParameters.RuntimeArchitecture.ToString(), 134&& DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86) 358&& DotNetCommands.IsRunningX86OnX64(DeploymentParameters.RuntimeArchitecture)) 360var executableName = DotNetCommands.GetDotNetExecutable(DeploymentParameters.RuntimeArchitecture); 378if (DotNetCommands.IsRunningX86OnX64(DeploymentParameters.RuntimeArchitecture))