public CocoaPodsTool(string podToolPath, TaskLoggingHelper log, CancellationToken cancellation, ISshInterface sshInterface)
 {
     PodToolPath       = podToolPath;
     Log               = log;
     CancellationToken = cancellation;
     Ssh               = sshInterface;
 }
Ejemplo n.º 2
0
 public XCodeBuildTool(string xcodeBuildPath, TaskLoggingHelper log, CancellationToken cancellation, ISshInterface sshInterface)
 {
     XCodeBuildToolPath = xcodeBuildPath;
     Log = log;
     CancellationToken = cancellation;
     Ssh = sshInterface;
 }