Beispiel #1
0
        public ProcessPool.Tool AddToolToBatch(ProcessPool.ToolBatch batch, string projDir, string toolName, string arguments)
        {
            string iseBin = ISEBinPath;

            if (iseBin == null)
            {
                throw new InvalidOperationException("No ISE installation detected. Unable to execute tool.");
            }

            return(batch.Add(iseBin, projDir, toolName, arguments));
        }
Beispiel #2
0
 internal void AddRunningTool(ProcessPool.ToolBatch bat)
 {
     _runningTools.Enqueue(bat);
 }