NuGetAliases.

NuGetSetApiKey(ICakeContext, string, string, NuGetSetApiKeySettings) Method

Summary

Installs NuGet packages using the specified API key, source and settings.
Namespace
Cake.Common.Tools.NuGet
Containing Type
NuGetAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("SetApiKey")]
[CakeNamespaceImport("Cake.Common.Tools.NuGet.SetApiKey")]
public static void NuGetSetApiKey(this ICakeContext context, string apiKey, string source, NuGetSetApiKeySettings settings)

Examples

var setting = new NuGetSetApiKeySettings {
    Verbosity = NuGetVerbosity.Detailed
    };
NuGetSetApiKey("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "https://nuget.org/api/v2/", setting);

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

Name Type Description
context ICakeContext The context.
apiKey string The API key.
source string Server URL where the API key is valid.
settings NuGetSetApiKeySettings The settings.

Return Value

Type Description
void