Click or drag to resize
Sandcastle Help File BuilderDocumentationSourceProjects Method
This returns a collection of MSBuild project filenames based on the specified wildcard.

Namespace: SandcastleBuilder.Utils
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax
public static Collection<ProjectFileConfiguration> Projects(
	string wildcard,
	bool includeSubfolders,
	string configuration,
	string platform
)

Parameters

wildcard
Type: SystemString
The wildcard to use to find solutions and projects.
includeSubfolders
Type: SystemBoolean
If true and the wildcard parameter includes wildcard characters, subfolders will be searched as well. If not, only the top-level folder is searched.
configuration
Type: SystemString
The configuration to use
platform
Type: SystemString
The platform to use

Return Value

Type: CollectionProjectFileConfiguration
A list of projects matching the wildcard. Any solution files (.sln) found are returned last, each followed by the projects extracted from it.
See Also