using System.Threading;
namespace DeploymentHelpers
{
///
/// Result of a deployment.
///
public class DeploymentResult
{
///
/// Base Uri of the deployment application.
///
public string ApplicationBaseUri { get; set; }
///
/// The web root folder where the application is hosted. This path can be different from the
/// original application source location if published before deployment.
///
public string WebRootLocation { get; set; }
///
/// Original deployment parameters used for this deployment.
///
public DeploymentParameters DeploymentParameters { get; set; }
///
/// Triggered when the host process dies or pulled down.
///
public CancellationToken HostShutdownToken { get; set; }
}
}