1 write to PublishedApplicationRootPath
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Deployers\ApplicationDeployer.cs (1)
79DeploymentParameters.PublishedApplicationRootPath = _publishedApplication.Path;
8 references to PublishedApplicationRootPath
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;