dotnet-installer/src/dotnet/ShellShim/IShellShimMaker.cs

9 lines
240 B
C#
Raw Normal View History

namespace Microsoft.DotNet.ShellShim
{
public interface IShellShimMaker
{
void CreateShim(string packageExecutablePath, string shellCommandName);
void EnsureCommandNameUniqueness(string shellCommandName);
}
}