42cc39252e
classes. Write Unit Tests covering Composite DefaultCommandResolver and ScriptCommandResolver. baseline Baseline2
18 lines
No EOL
447 B
C#
18 lines
No EOL
447 B
C#
namespace Microsoft.DotNet.Cli.Utils
|
|
{
|
|
public class CommandSpec
|
|
{
|
|
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; }
|
|
}
|
|
} |