IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
The IProjectLoader interface is implemented by any class that knows how to load projects in a specific format. More...
Public Member Functions | |
bool | CanLoadFrom (string path) |
Returns true if the file indicated is one that this loader knows how to load. More... | |
IProject | LoadFrom (string path) |
Loads a project of a known format. More... | |
The IProjectLoader interface is implemented by any class that knows how to load projects in a specific format.
bool NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom | ( | string | path | ) |
Returns true if the file indicated is one that this loader knows how to load.
path | The path of the project file |
Implemented in NUnit.Engine.Services.ProjectLoaders.VisualStudioProjectLoader, and NUnit.Engine.Services.ProjectLoaders.NUnitProjectLoader.
IProject NUnit.Engine.Extensibility.IProjectLoader.LoadFrom | ( | string | path | ) |
Loads a project of a known format.
path | The path of the project file |
Implemented in NUnit.Engine.Services.ProjectLoaders.VisualStudioProjectLoader, and NUnit.Engine.Services.ProjectLoaders.NUnitProjectLoader.
Referenced by NUnit.Engine.Services.ProjectService.LoadFrom().