Files
mRemoteNG/mRemoteV1/Tools/PuttyProcessController.cs

14 lines
356 B
C#

using mRemoteNG.Tools.Cmdline;
namespace mRemoteNG.Tools
{
public class PuttyProcessController : ProcessController
{
public bool Start(CommandLineArguments arguments = null)
{
var filename = Settings.Default.UseCustomPuttyPath ? Settings.Default.CustomPuttyPath : App.Info.GeneralAppInfo.PuttyPath;
return Start(filename, arguments);
}
}
}