GradleBootstrapAlias.

BootstrapNightlyGradle(ICakeContext) Method

Summary

Bootstrap the nightly gradle version into the tools folder.

Be aware that this is always the nightly version, as found in https://services.gradle.org/versions/nightly So the versions of gradle might change between usages. Also, as this is the nightly version, it is entirely possible that this version might not be completely stable.

Assembly
Cake.Gradle.dll
Namespace
Cake.Gradle
Containing Type
GradleBootstrapAlias

Syntax

public static void BootstrapNightlyGradle(this ICakeContext context)

Examples

Task("Bootstrap-Nightly-Gradle")
    .Does(() =>
{
    BootstrapNightlyGradle();
});

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.

Return Value

Type Description
void