public static bool HasProperty(this ProjectFileModel projectFile, string propertyElementName)
        {
            var hasPropertyGroup = projectFile.HasPropertyGroup();

            if (!hasPropertyGroup)
            {
                return(false);
            }

            var propertyGroup = projectFile.GetPropertyGroup();

            var output = propertyGroup.HasProperty(propertyElementName);

            return(output);
        }
        public static string GetPropertyValue(this ProjectFileModel projectFile, string propertyElementName)
        {
            var value = projectFile.GetPropertyGroup().GetPropertyValue(propertyElementName);

            return(value);
        }