mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
14 lines
356 B
C#
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);
|
|
}
|
|
}
|
|
}
|