C# Class Code.Cake.DotNetSupport

Provides extension methods for Cake context.
Exibir arquivo Open project: SimpleGitVersion/SGV-Net

Public Methods

Method Description
DotNetBuild ( this context, Action config ) : void

Runs dotnet build.

DotNetPack ( this context, Action config ) : void

Runs dotnet pack.

DotNetRestore ( this context, Action config ) : void

Runs dotnet restore.

Method Details

DotNetBuild() public static method

Runs dotnet build.
public static DotNetBuild ( this context, Action config ) : void
context this This cake context.
config Action The configuration to use.
return void

DotNetPack() public static method

Runs dotnet pack.
public static DotNetPack ( this context, Action config ) : void
context this This cake context.
config Action The configuration to use.
return void

DotNetRestore() public static method

Runs dotnet restore.
public static DotNetRestore ( this context, Action config ) : void
context this This cake context.
config Action The configuration to use.
return void