Boo.BooLangProject.BooProjectSources.GetCompiledProject C# (CSharp) Méthode

GetCompiledProject() public méthode

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

            return compiledProject;
        }