NuGet.Common.MSBuildProjectSystem.GetItem C# (CSharp) Method

GetItem() private method

private GetItem ( string itemType, string name ) : Microsoft.Build.Evaluation.ProjectItem
itemType string
name string
return Microsoft.Build.Evaluation.ProjectItem
        private ProjectItem GetItem(string itemType, string name)
        {
            return GetItems(itemType, name).FirstOrDefault();
        }