Beispiel #1
0
 private static ConfigurationPath[] GetQuery(ConfigurationPath path, string[] includePaths)
 {
     if (includePaths.Length == 0 || !path.IsScan)
     {
         return new [] { path }
     }
     ;
     return(includePaths.Select(x => ConfigurationPath.From(path.Folder, x)).ToArray());
 }