Esempio n. 1
0
 /// <summary>
 /// Require sources for pipeline execution.
 /// </summary>
 /// <returns>Returns true when the condition is not met.</returns>
 protected bool RequireSources()
 {
     if (Source == null || Source.Length == 0)
     {
         Writer.WarnSourcePathNotFound();
         return(true);
     }
     return(false);
 }