Exemple #1
0
        /// <summary>
        /// Analyse all project files in a given solution only.
        /// </summary>
        /// <param name="solutionFile">The filename of the solution.</param>
        public void AnalyseSolution(string solutionFile)
        {
            var sln = new SolutionFile(solutionFile);

            AnalyseProjectFiles(sln.Projects.Select(p => new FileInfo(p)).ToArray());
        }