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