Paste these commands into your favorite terminal on Windows, Mac, or Linux. This will install the Terminal.Gui.Templates, create a new "Hello World" TUI app, and run it.
(Press Esc
to exit the app)
dotnet new --install Terminal.Gui.templates
dotnet new tui -n myproj
cd myproj
dotnet run
To install Terminal.Gui from Nuget into a .NET Core project, use the dotnet
CLI tool with this command.
dotnet add package Terminal.Gui
Use the Terminal.Gui.Templates.
The following example shows a basic Terminal.Gui application in C# (this is ./Example/Example.cs
):
[!code-csharpProgram.cs]
When run the application looks as follows:
- Windows, Mac, and Linux - Build and run using the .NET SDK command line tools (
dotnet build
in the root directory). RunUICatalog
withdotnet run --project UICatalog
. - Windows - Open
Terminal.sln
with Visual Studio 202x.