Example #1
0
 private static IEnumerable <object[]> FindProjectDirectories()
 {
     return(SolutionDirectory
            .FindProjects()
            .Select(p => new[] { p.Directory }));
 }
Example #2
0
 private static IEnumerable <object[]> AllProjects()
 {
     return(SolutionDirectory.FindProjects().Select(_ => new[] { _ }));
 }