mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
7 lines
160 B
C#
7 lines
160 B
C#
using System.Collections.Generic;
|
|
|
|
public interface IEnvironmentContextData
|
|
{
|
|
IEnumerable<KeyValuePair<string, string>> GetRuntimeEnvironmentVariables();
|
|
}
|