private IProject CreateProject(FullPathName rootPath)
        {
            var fileWithSections      = new FileWithSections(rootPath.Combine(ConfigurationFilenames.ProjectFileNameDetection).FullName);
            var configurationProvider = new FileWithSectionConfigurationProvider(fileWithSections);

            return(new ProjectFileProject(configurationProvider, rootPath));
        }
 private IProject CreateProject(FullPathName rootPath)
 {
     var fileWithSections = new FileWithSections(rootPath.Combine(ConfigurationFilenames.ProjectFileNameDetection).FullName);
       var configurationProvider = new FileWithSectionConfigurationProvider(fileWithSections);
       return new ProjectFileProject(configurationProvider, rootPath);
 }
 public static bool ContainsProjectFile(FullPathName path)
 {
     return path.Combine(ConfigurationFilenames.ProjectFileNameDetection).FileExists;
 }
 public static bool ContainsProjectFile(FullPathName path)
 {
     return(path.Combine(ConfigurationFilenames.ProjectFileNameDetection).FileExists);
 }