1 write to _deployedFolderPathInFileShare
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (1)
91
_deployedFolderPathInFileShare
= Path.Combine(_deploymentParameters.RemoteServerFileSharePath, folderId);
8 references to _deployedFolderPathInFileShare
Microsoft.AspNetCore.Server.IntegrationTesting (8)
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (8)
95
_deployedFolderPathInFileShare
,
97
Logger.LogInformation($"Copied the locally published folder to the file share path '{
_deployedFolderPathInFileShare
}'");
131
Logger.LogInformation($"Deleting the deployed folder '{
_deployedFolderPathInFileShare
}'");
132
Directory.Delete(
_deployedFolderPathInFileShare
, recursive: true);
136
Logger.LogWarning(0, ex, $"Failed to delete the deployed folder '{
_deployedFolderPathInFileShare
}'.");
204
executableParameters = Path.Combine(
_deployedFolderPathInFileShare
, applicationName + ".dll");
208
executablePath = Path.Combine(
_deployedFolderPathInFileShare
, applicationName + ".exe");
216
parameterBuilder.Append(FormattableString.Invariant($" -deployedFolderPath {
_deployedFolderPathInFileShare
}"));