2016-02-24 16:05:55 -08:00
|
|
|
using System.Collections.Generic;
|
2016-09-23 15:30:53 -07:00
|
|
|
using NuGet.ProjectModel;
|
2016-02-24 16:05:55 -08:00
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Utils
|
|
|
|
{
|
|
|
|
public interface IPackagedCommandSpecFactory
|
|
|
|
{
|
2016-03-27 23:54:17 -07:00
|
|
|
CommandSpec CreateCommandSpecFromLibrary(
|
2016-03-27 22:24:20 -07:00
|
|
|
LockFileTargetLibrary toolLibrary,
|
2016-02-24 16:05:55 -08:00
|
|
|
string commandName,
|
|
|
|
IEnumerable<string> commandArguments,
|
|
|
|
IEnumerable<string> allowedExtensions,
|
|
|
|
string nugetPackagesRoot,
|
|
|
|
CommandResolutionStrategy commandResolutionStrategy,
|
2016-04-07 16:20:51 -07:00
|
|
|
string depsFilePath,
|
|
|
|
string runtimeConfigPath);
|
2016-02-24 16:05:55 -08:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|