dotnet-installer/src/dotnet/ShellShim/IShellShimMaker.cs
2018-01-30 15:41:39 -08:00

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);
}
}