NAnt.MSBuild.MSBuildProjectProvider.IsSupported C# (CSharp) Method

IsSupported() public method

public IsSupported ( string projectExt, XmlElement xmlDefinition ) : int
projectExt string
xmlDefinition System.Xml.XmlElement
return int
        public int IsSupported(string projectExt, XmlElement xmlDefinition)
        {
            if (MSBuildProject.IsMSBuildProject(xmlDefinition))
                return 20;
            return 0;
        }