MonoDevelop.Projects.Formats.MSBuild.MSBuildItemGroupCollection.AddNewItem C# (CSharp) Method

AddNewItem() public method

public AddNewItem ( string name, string include ) : MSBuildItem
name string
include string
return MSBuildItem
		public MSBuildItem AddNewItem(string name, string include)
		{
			MSBuildItemGroup grp = FindBestGroupForItem(name);
			return grp.AddNewItem(name, include);
		}