Summary
Lists available workloads by specifying all or part of the workload ID.
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Workload")]
[CakeNamespaceImport("Cake.Common.Tools.DotNet.Workload.Search")]
public static IEnumerable<DotNetWorkload> DotNetWorkloadSearch(this ICakeContext context, string searchString, DotNetWorkloadSearchSettings settings)
Examples
var settings = new DotNetWorkloadSearchSettings
{
DotNetVerbosity.Detailed
};
var workloads = DotNetWorkloadSearch("maui", settings);
foreach (var workload in workloads)
{
Information($"Id: {workload.Id}, Description: {workload.Description}");
}
Attributes
Type |
Description |
CakeMethodAliasAttribute |
An attribute used to mark script method aliases.
|
CakeAliasCategoryAttribute |
An attribute used for documentation of alias methods/properties.
|
CakeNamespaceImportAttribute |
An attribute used to hint Cake about additional namespaces that need
to be imported for an alias to work. This attribute can mark an
extension method, the extension method class, or the assembly to provide a global set of imports.
|
Parameters
Return Value
Type |
Description |
IEnumerable<DotNetWorkload> |
The list of available workloads. |