mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-22 09:08:39 +08:00
15 lines
432 B
C#
15 lines
432 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);
|
|
}
|
|
}
|
|
} |