Interface IDSProjectsList
Project list interface
Namespace: ProjectDependencyScanner
Assembly: BuildSystem.Utils.dll
Syntax
public interface IDSProjectsList : IList<IDSProject>, ICollection<IDSProject>, IEnumerable<IDSProject>, IEnumerable
Methods
Add(string)
Adding a new project to the Dependency Scanner. Returns false if it is not executed successfully (see the log).
Declaration
bool Add(string projectPath)
Parameters
Type | Name | Description |
---|---|---|
string | projectPath | Absolute path to the project file |
Returns
Type | Description |
---|---|
bool |
ContainsProject(string)
Check if the project has been added to the list.
Declaration
bool ContainsProject(string projectPath)
Parameters
Type | Name | Description |
---|---|---|
string | projectPath | Absolute path to the project file |
Returns
Type | Description |
---|---|
bool |