CSScriptCompilers.CSCompiler.IsAppXAML C# (CSharp) Метод

IsAppXAML() статический приватный Метод

static private IsAppXAML ( string file ) : bool
file string
Результат bool
        static bool IsAppXAML(string file)
        {
            return false; //do not support app.xaml
            //if (!appIncluded)
            //{
            //    using (StreamReader sr = new StreamReader(file))
            //    {
            //        if (sr.ReadToEnd().IndexOf("<Application x:Class") == -1)
            //            return false;

            //        appIncluded = true;
            //        return true;
            //    }
            //}
            //else
            //    return false;
        }
        CompilerResults CompileAssemblyFromFileBatchImpl(CompilerParameters options, string[] fileNames)