Boo.BooLangProject.BooProjectNode.IsCodeFile C# (CSharp) Method

IsCodeFile() public method

If you don't override this, then all new files you add to your project will be of type "content" by default and not "compile". You'll also get AIDS.
public IsCodeFile ( string fileName ) : bool
fileName string
return bool
        public override bool IsCodeFile(string fileName)
        {
            if (new FileInfo(fileName).Extension.ToLower().Contains("boo"))
                return true;
            else
                return false;
        }