IsMSBuildProject() public static method

public static IsMSBuildProject ( XmlDocument doc ) : bool
doc System.Xml.XmlDocument
return bool
Example #1
0
 public int IsSupported(string projectExt, XmlElement xmlDefinition)
 {
     if (MSBuildProject.IsMSBuildProject(xmlDefinition))
     {
         return(20);
     }
     return(0);
 }