private bool ProjectExists(SolutionProject simpleProject)
 {
     var projectPath = GetAbsoluteProjectPath(simpleProject.RelativePath);
     if (File.Exists(projectPath)) return true;
     
     if (!Directory.Exists(projectPath)) _console.WriteWarning("Project: {0} was not found on disk", simpleProject.ProjectName);
     return false;
 }
        private bool ProjectExists(SolutionProject simpleProject)
        {
            var projectPath = GetAbsoluteProjectPath(simpleProject.RelativePath);

            if (File.Exists(projectPath))
            {
                return(true);
            }

            if (!Directory.Exists(projectPath))
            {
                _console.WriteWarning("Project: {0} was not found on disk", simpleProject.ProjectName);
            }
            return(false);
        }
 private static Guid ProjectGuid(SolutionProject p)
 {
     return Guid.Parse(p.ProjectGuid);
 }
 private IVsProject CreateProjectAdapter(SolutionProject p)
 {
     string absoluteProjectPath = GetAbsoluteProjectPath(p.RelativePath);
     return _projectLoader.GetProject(ProjectGuid(p), absoluteProjectPath);
 }
 private static Guid ProjectGuid(SolutionProject p)
 {
     return(Guid.Parse(p.ProjectGuid));
 }
        private IVsProject CreateProjectAdapter(SolutionProject p)
        {
            string absoluteProjectPath = GetAbsoluteProjectPath(p.RelativePath);

            return(_projectLoader.GetProject(ProjectGuid(p), absoluteProjectPath));
        }