using System;
namespace DeploymentHelpers
{
///
/// Common operations on an application deployer.
///
public interface IApplicationDeployer : IDisposable
{
///
/// Deploys the application to the target with specified .
///
///
DeploymentResult Deploy();
}
}