1 write to PublishedApplicationRootPath
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Deployers\ApplicationDeployer.cs (1)
79DeploymentParameters.PublishedApplicationRootPath = _publishedApplication.Path;
19 references to PublishedApplicationRootPath
IIS.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
226Path.Combine(deploymentResult.DeploymentParameters.PublishedApplicationRootPath, "aspnetcore-debug.log"),
IIS.LongTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
226Path.Combine(deploymentResult.DeploymentParameters.PublishedApplicationRootPath, "aspnetcore-debug.log"),
IIS.NewHandler.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
226Path.Combine(deploymentResult.DeploymentParameters.PublishedApplicationRootPath, "aspnetcore-debug.log"),
IIS.NewShim.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
226Path.Combine(deploymentResult.DeploymentParameters.PublishedApplicationRootPath, "aspnetcore-debug.log"),
IIS.ShadowCopy.Tests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
226Path.Combine(deploymentResult.DeploymentParameters.PublishedApplicationRootPath, "aspnetcore-debug.log"),
IISExpress.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
226Path.Combine(deploymentResult.DeploymentParameters.PublishedApplicationRootPath, "aspnetcore-debug.log"),
Microsoft.AspNetCore.Server.IntegrationTesting (8)
CachingApplicationPublisher.cs (1)
28if (!string.IsNullOrEmpty(deploymentParameters.PublishedApplicationRootPath))
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (5)
94_deploymentParameters.PublishedApplicationRootPath, 141Logger.LogInformation($"Deleting the locally published folder '{DeploymentParameters.PublishedApplicationRootPath}'"); 142Directory.Delete(DeploymentParameters.PublishedApplicationRootPath, recursive: true); 146Logger.LogWarning(0, ex, $"Failed to delete the locally published folder '{DeploymentParameters.PublishedApplicationRootPath}'."); 153var webConfigFilePath = Path.Combine(_deploymentParameters.PublishedApplicationRootPath, "web.config");
Deployers\SelfHostDeployer.cs (2)
73contentRoot: DeploymentParameters.PublishApplicationBeforeDeployment ? DeploymentParameters.PublishedApplicationRootPath : DeploymentParameters.ApplicationPath, 90workingDirectory = DeploymentParameters.PublishedApplicationRootPath;
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (5)
IISDeployer.cs (3)
106var contentRoot = DeploymentParameters.PublishedApplicationRootPath; 185var file = Path.Combine(DeploymentParameters.PublishedApplicationRootPath, debugLogLocation); 510HelixHelper.PreserveFile(Path.Combine(DeploymentParameters.PublishedApplicationRootPath, "web.config"), fileNamePrefix + ".web.config");
IISDeployerBase.cs (1)
43var path = Path.Combine(DeploymentParameters.PublishedApplicationRootPath, "web.config");
IISExpressDeployer.cs (1)
60contentRoot = DeploymentParameters.PublishedApplicationRootPath;