C# Class RunTimeCompiler.ProjectReader

This class should keep a list of known file extensions and the registered IProjectReader for each extension. When a project file is loaded the ReadProject method is called to read that project and get all data needed for the UI and compilation. This class is implemented as a singleton.
Exibir arquivo Open project: Virtual-Universe/Virtual-Universe

Public Methods

Method Description
ReadProject ( string filename ) : BasicProject

This method is used to read the content of a project file and get all the data needed for UI and compilation. Current implementation always use CsprojReader. It will be changed as more project-readers will be developed.

Private Methods

Method Description
ProjectReader ( )

Private constructor.

Method Details

ReadProject() public method

This method is used to read the content of a project file and get all the data needed for UI and compilation. Current implementation always use CsprojReader. It will be changed as more project-readers will be developed.
public ReadProject ( string filename ) : BasicProject
filename string
return BasicProject