1 write to PublishedApplicationRootPath
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Deployers\ApplicationDeployer.cs (1)
79
DeploymentParameters.
PublishedApplicationRootPath
= _publishedApplication.Path;
8 references to PublishedApplicationRootPath
Microsoft.AspNetCore.Server.IntegrationTesting (8)
CachingApplicationPublisher.cs (1)
28
if (!string.IsNullOrEmpty(deploymentParameters.
PublishedApplicationRootPath
))
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (5)
94
_deploymentParameters.
PublishedApplicationRootPath
,
141
Logger.LogInformation($"Deleting the locally published folder '{DeploymentParameters.
PublishedApplicationRootPath
}'");
142
Directory.Delete(DeploymentParameters.
PublishedApplicationRootPath
, recursive: true);
146
Logger.LogWarning(0, ex, $"Failed to delete the locally published folder '{DeploymentParameters.
PublishedApplicationRootPath
}'.");
153
var webConfigFilePath = Path.Combine(_deploymentParameters.
PublishedApplicationRootPath
, "web.config");
Deployers\SelfHostDeployer.cs (2)
73
contentRoot: DeploymentParameters.PublishApplicationBeforeDeployment ? DeploymentParameters.
PublishedApplicationRootPath
: DeploymentParameters.ApplicationPath,
90
workingDirectory = DeploymentParameters.
PublishedApplicationRootPath
;