mirror of
https://github.com/actions/runner.git
synced 2025-12-13 19:03:44 +00:00
11 lines
306 B
C#
11 lines
306 B
C#
namespace GitHub.DistributedTask.ObjectTemplating
|
|
{
|
|
internal static class ITraceWriterExtensions
|
|
{
|
|
internal static DistributedTask.Expressions2.ITraceWriter ToExpressionTraceWriter(this ITraceWriter trace)
|
|
{
|
|
return new ExpressionTraceWriter(trace);
|
|
}
|
|
}
|
|
}
|