ClrPlus.Scripting.MsBuild.Utility.MsBuildMap.ItemDefinitionRoute C# (CSharp) Method

ItemDefinitionRoute() static private method

static private ItemDefinitionRoute ( this name, IEnumerable children = null ) : ToRoute
name this
children IEnumerable
return ToRoute
        internal static ToRoute ItemDefinitionRoute(this string name, IEnumerable<ToRoute> children = null)
        {
            return name.MapTo<ProjectItemDefinitionGroupElement>(pidge => pidge.LookupItemDefinitionElement(name), children);
        }