dotnet-installer/src/Microsoft.DotNet.Cli.Utils/CommandSpec.cs

18 lines
447 B
C#
Raw Normal View History

2016-01-06 10:27:16 +00:00
namespace Microsoft.DotNet.Cli.Utils
{
public class CommandSpec
2016-01-06 10:27:16 +00:00
{
public CommandSpec(string path, string args, CommandResolutionStrategy resolutionStrategy)
{
Path = path;
Args = args;
ResolutionStrategy = resolutionStrategy;
}
public string Path { get; }
public string Args { get; }
public CommandResolutionStrategy ResolutionStrategy { get; }
}
}