2018-01-30 15:41:39 -08:00
|
|
|
|
using Microsoft.Extensions.EnvironmentAbstractions;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.ShellShim
|
2018-01-24 10:16:27 -08:00
|
|
|
|
{
|
|
|
|
|
public interface IShellShimMaker
|
|
|
|
|
{
|
2018-01-30 15:41:39 -08:00
|
|
|
|
void CreateShim(FilePath packageExecutable, string shellCommandName);
|
2018-01-24 10:16:27 -08:00
|
|
|
|
void EnsureCommandNameUniqueness(string shellCommandName);
|
|
|
|
|
}
|
|
|
|
|
}
|