TransifexRunnerAliases.

TransifexStatus(ICakeContext) Method

Summary

Prints the status of the current project by reading the data in the configuration file.
Assembly
Cake.Transifex.dll
Namespace
Cake.Transifex
Containing Type
TransifexRunnerAliases

Syntax

public static void TransifexStatus(this ICakeContext context)

Examples

Run 'tx status'.

Cake task:

Task("Transifex-Status")
    .Does(() =>
{
    TransifexStatus();
};

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.

Return Value

Type Description
void