2016-01-06 02:27:16 -08:00
|
|
|
|
namespace Microsoft.DotNet.Cli.Utils
|
|
|
|
|
{
|
|
|
|
|
public enum CommandResolutionStrategy
|
|
|
|
|
{
|
|
|
|
|
//command loaded from a nuget package
|
|
|
|
|
NugetPackage,
|
|
|
|
|
|
|
|
|
|
//command loaded from the same directory as the executing assembly
|
|
|
|
|
BaseDirectory,
|
|
|
|
|
|
2016-02-09 15:30:04 -08:00
|
|
|
|
//command loaded from the same directory as a project.json file
|
|
|
|
|
ProjectLocal,
|
|
|
|
|
|
2016-01-06 02:27:16 -08:00
|
|
|
|
//command loaded from path
|
|
|
|
|
Path,
|
|
|
|
|
|
|
|
|
|
//command not found
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|