2016-01-06 10:27:16 +00:00
|
|
|
namespace Microsoft.DotNet.Cli.Utils
|
|
|
|
{
|
2016-02-25 00:05:55 +00:00
|
|
|
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; }
|
|
|
|
}
|
|
|
|
}
|