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

20 lines
451 B
C#
Raw Normal View History

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,
//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
}
}