MonoDevelop.Projects.Formats.MSBuild.MSBuildPropertyGroupMerged.RemoveProperty C# (CSharp) Method

RemoveProperty() public method

public RemoveProperty ( string name ) : bool
name string
return bool
		public bool RemoveProperty(string name)
		{
			bool found = false;
			foreach (var g in groups)
			{
				if (g.RemoveProperty(name))
				{
					Prune(g);
					found = true;
				}
			}
			return found;
		}