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