示例#1
0
        /// <summary>
        /// Deletes one property across all projects for all configurations and all platforms
        /// </summary>
        /// <param name="key">The name of the property to remove</param>
        public void DeletePropertyXML(string key)
        {
            var props = new List <string>()
            {
                key
            };

            model.RemoveXml(props);
            OnPropertyChanged("FoundProperties");
        }