Exemple #1
0
 /// <summary>
 /// Facade for Getting the Project Type.
 /// calls NPanday.ProjectImporter.Validator.ProjectValidator.GetProjectStructureType(...)
 /// </summary>
 /// <param name="solutionFile">the full path of the *.sln (visual studio solution) file you want to import</param>
 /// <param name="projectDigests">Digested Projects</param>
 /// <returns></returns>
 public static ProjectStructureType GetProjectStructureType(string solutionFile, ProjectDigest[] projectDigests)
 {
     return(ProjectValidator.GetProjectStructureType(solutionFile, projectDigests));
 }