System.Xml.Tests.XsltcTestCaseBase.xsltcExeFound C# (CSharp) Method

xsltcExeFound() public static method

public static xsltcExeFound ( ) : bool
return bool
        public static bool xsltcExeFound()
        {
            try
            {
                // Verify xsltc.exe is available
                XmlCoreTest.Common.XsltVerificationLibrary.SearchPath("xsltc.exe");
            }
            catch (FileNotFoundException)
            {
                return false;
            }
            return true;
        }