コード例 #1
0
ファイル: PortSetter.cs プロジェクト: MakerSquid/MakerSquid
        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
ファイル: PortSetter.cs プロジェクト: MakerSquid/MakerSquid
 private static List <string> GetParams(List <string> configs)
 {
     return(ListParser.FindInList(configs, TARGET, false));
 }