efffbaeabc
* Change default file encoding
12 lines
387 B
C#
12 lines
387 B
C#
using System;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
public static class WellKnownDistributedTaskVariables
|
|
{
|
|
public static readonly String JobId = "system.jobId";
|
|
public static readonly String RunnerLowDiskspaceThreshold = "system.runner.lowdiskspacethreshold";
|
|
public static readonly String RunnerEnvironment = "system.runnerEnvironment";
|
|
}
|
|
}
|