예제 #1
0
        private static List <string> GetTargets(List <string> configs)
        {
            List <string> targets = ListParser.FindInList(configs, TARGET, true);
            List <string> result  = new List <string>();

            targets.ForEach(x => result.Add(x.Replace(TARGET, string.Empty)));

            return(result);
        }
예제 #2
0
 private static List <string> GetParams(List <string> configs)
 {
     return(ListParser.FindInList(configs, TARGET, false));
 }