| DocumentationSourceProjects Method |
This returns a collection of MSBuild project filenames based on the specified wildcard.
Namespace: SandcastleBuilder.UtilsAssembly: 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
)
Public Shared Function Projects (
wildcard As String,
includeSubfolders As Boolean,
configuration As String,
platform As String
) As Collection(Of ProjectFileConfiguration)
public:
static Collection<ProjectFileConfiguration^>^ Projects(
String^ wildcard,
bool includeSubfolders,
String^ configuration,
String^ platform
)
static member Projects :
wildcard : string *
includeSubfolders : bool *
configuration : string *
platform : string -> Collection<ProjectFileConfiguration>
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:
CollectionProjectFileConfigurationA list of projects matching the wildcard. Any solution files (.sln) found are returned
last, each followed by the projects extracted from it.
See Also