dotnet-installer/src/Microsoft.DotNet.Cli.Utils/IEnvironmentPathInstruction.cs
William Lee cc80ed43e0
Tools shim maker and env path handling (#8085)
* Tools shim maker and env path handling

Includes component:

* Given executable, create shim (all three OSs)
* Add executable path to Env PATH during first run
* including manual instruction when there is no access
2017-11-27 10:45:43 -08:00

7 lines
No EOL
162 B
C#

namespace Microsoft.DotNet.Cli.Utils
{
public interface IEnvironmentPathInstruction
{
void PrintAddPathInstructionIfPathDoesNotExist();
}
}