10 lines
291 B
C#
10 lines
291 B
C#
using Microsoft.Extensions.EnvironmentAbstractions;
|
|
|
|
namespace Microsoft.DotNet.ShellShim
|
|
{
|
|
public interface IShellShimMaker
|
|
{
|
|
void CreateShim(FilePath packageExecutable, string shellCommandName);
|
|
void EnsureCommandNameUniqueness(string shellCommandName);
|
|
}
|
|
}
|