Пример #1
0
 /// <summary>
 /// Some nuspec files have schema, which should be ignored in solutioncop
 /// </summary>
 /// <param name="current">Target element to start searching</param>
 /// <param name="localName">Local name of xml element</param>
 /// <returns>Child element</returns>
 public static XElement GetElementWithLocalName(this XContainer current, string localName)
 {
     return(current.GetElementsWithLocalName(localName).SingleOrDefault());
 }