public PreRemoteOps(ServerConfig server, PreOpsSequence sequence, ConDepOptions options, IHandleWebDeploy webDeploy) { _server = server; _sequence = sequence; _options = options; _webDeploy = webDeploy; }
public LocalOperationsBuilder(LocalSequence localSequence, IManageInfrastructureSequence infrastructureSequence, IEnumerable<ServerConfig> servers, IHandleWebDeploy webDeploy) { _localSequence = localSequence; _infrastructureSequence = infrastructureSequence; _servers = servers; _webDeploy = webDeploy; }
public LocalOperationsBuilder(LocalSequence localSequence, IManageInfrastructureSequence infrastructureSequence, PreOpsSequence preOpsSequence, IEnumerable <ServerConfig> servers, IHandleWebDeploy webDeploy) { _localSequence = localSequence; _infrastructureSequence = infrastructureSequence; _preOpsSequence = preOpsSequence; _servers = servers; _webDeploy = webDeploy; }
//private readonly IOfferRemoteOperations _remote; //public InfrastructureBuilder(IOfferRemoteOperations remote) //{ // _remote = remote; //} public InfrastructureBuilder(IManageInfrastructureSequence infrastructureSequence, IHandleWebDeploy webDeploy) { _infrastructureSequence = infrastructureSequence; _webDeploy = webDeploy; }
public RemoteOperationsBuilder(RemoteSequence remoteSequence, IHandleWebDeploy webDeploy) { Configure.DeploymentOperations = new RemoteDeploymentBuilder(remoteSequence, webDeploy); Configure.ExecutionOperations = new RemoteExecutionBuilder(remoteSequence, webDeploy); }
public RemoteOperationsBuilder(RemoteSequence remoteSequence, IHandleWebDeploy webDeploy) { Deploy = new RemoteDeploymentBuilder(remoteSequence, webDeploy); ExecuteRemote = new RemoteExecutionBuilder(remoteSequence, webDeploy); }
public PreOpsSequence(IHandleWebDeploy webDeploy) { _webDeploy = webDeploy; }
public RemoteCertDeploymentBuilder(IManageRemoteSequence remoteSequence, IHandleWebDeploy webDeploy, IOfferRemoteDeployment remoteDeploymentBuilder) { _remoteSequence = remoteSequence; _webDeploy = webDeploy; _remoteDeploymentBuilder = remoteDeploymentBuilder; }
public RemoteWebDeployOperation(IProvide provider, IHandleWebDeploy webDeploy) { _provider = provider; _webDeploy = webDeploy; }
public RemoteExecutionBuilder(IManageRemoteSequence remoteSequence, IHandleWebDeploy webDeploy) { _remoteSequence = remoteSequence; _webDeploy = webDeploy; }
public InfrastructureBuilder(IManageInfrastructureSequence infrastructureSequence, IHandleWebDeploy webDeploy) { _infrastructureSequence = infrastructureSequence; _webDeploy = webDeploy; }
public RemoteCompositeBuilder(CompositeSequence compositeSequence, IHandleWebDeploy webDeploy) { Deploy = new RemoteDeploymentBuilder(compositeSequence, webDeploy); ExecuteRemote = new RemoteExecutionBuilder(compositeSequence, webDeploy); }
public RemoteDeploymentBuilder(IManageRemoteSequence remoteSequence, IHandleWebDeploy webDeploy) { _remoteSequence = remoteSequence; _webDeploy = webDeploy; }
public SslInfrastructureBuilder(IManageInfrastructureSequence infrastructureSequence, IHandleWebDeploy webDeploy, InfrastructureBuilder infrastructureBuilder) { _infrastructureSequence = infrastructureSequence; _webDeploy = webDeploy; _infrastructureBuilder = infrastructureBuilder; }