Boo.BooLangProject.BooProjectSources.GetCompiledProject C# (CSharp) Method

GetCompiledProject() public method

Gets the compiled output for the current project, compiling it if needed.
public GetCompiledProject ( ) : CompiledProject
return CompiledProject
        public CompiledProject GetCompiledProject()
        {
            if (RequiresRecompilation)
                Compile();

            return compiledProject;
        }