private DirectoryInfo GetFolderPath(string projectFileFullPath, string propertyName)
        {
            Microsoft.Build.Evaluation.Project msbuildProject = ProjectLoader.LoadProject(projectFileFullPath);
            ProjectProperty property     = msbuildProject.GetProperty(propertyName);
            string          expandString = msbuildProject.ExpandString(property.UnevaluatedValue);

            return(new DirectoryInfo(expandString));
        }