Exemple #1
0
 private static IOrderedEnumerable <string> GetAssemblyNamesOfSolution(string solutionPath)
 {
     return(SolutionExplorer
            .GetReferencedProjectPaths(solutionPath)
            .Select(SolutionExplorer.GetAssemblyName)
            .OrderBy(d => d));
 }