TransifexRunnerAliases.

TransifexStatus(ICakeContext, string) Method

Summary

Prints the status of the current project by reading the data in the configuration file, but only for the specified resources.
Assembly
Cake.Transifex.dll
Namespace
Cake.Transifex
Containing Type
TransifexRunnerAliases

Syntax

public static void TransifexStatus(this ICakeContext context, string resources)

Examples

Run 'tx status "--resources=resource.name"'.

Cake task:

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

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
resources string The resources.

Return Value

Type Description
void