Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 491 Bytes

CONTRIBUTING.md

File metadata and controls

8 lines (6 loc) · 491 Bytes

Contributing

Adding a New Terminal

  1. Add a New Combobox Item in AdditionalOptions within Main.cs
  2. Create a new class named <TerminalName>.cs under ./SSH/Terminal.
  3. Implement interface ITerminalHandler that returns result of Helper.OpenInShell, check WindowsTerminal.cs.
  4. Add a new terminal name in TerminalType enum and add a switch case in OpenTerminal under Terminal.cs.