Fixes #4046 - Moves examples into ./Examples and fixes ./Tests (#4047)

* touching publish.yml

* Moved Examples into ./Examples

* Moved Benchmarks into ./Tests

* Moved Benchmarks into ./Tests

* Moved UICatalog into ./Examples

* Moved UICatalog into ./Examples 2

* Moved tests into ./Tests

* Updated nuget
This commit is contained in:
Tig
2025-04-25 09:49:33 -06:00
parent a53e6744f4
commit 7fe6fd9453
199 changed files with 149 additions and 142 deletions

View File

@@ -28,6 +28,12 @@ cd myproj
dotnet run
```
To run the UICatalog demo app that shows all the controls and features of the toolkit, use the following command:
```powershell
dotnet run --project Examples/UICatalog/UICatalog.csproj
```
There is also a [visual designer](https://github.com/gui-cs/TerminalGuiDesigner) (uses Terminal.Gui itself).
## Documentation
@@ -43,21 +49,22 @@ See the [`Terminal.Gui/`README](https://github.com/gui-cs/Terminal.Gui/tree/mast
## Showcase & Examples
**Terminal.Gui** can be used with any .Net language to create feature rich and robust applications.
[Showcase](https://github.com/gui-cs/Terminal.Gui/blob/develop/Showcase.md) is a place where you can find all kind of projects from simple examples to advanced real world apps that fully utilize capabilities of the toolkit.
The team is looking forward to seeing new amazing projects made by the community to be added there!
* The [./Examples/UICatalog](./Examples/UICatalog) project is a showcase of all the controls and features of the toolkit. There are more examples in the [./Examples](./Examples) folder.
* [Showcase](https://github.com/gui-cs/Terminal.Gui/blob/develop/Showcase.md) is a place where you can find all kind of projects from simple examples to advanced real world apps that fully utilize capabilities of the toolkit. The team is looking forward to seeing new amazing projects made by the community to be added there!
## Sample Usage in C#
The following example shows a basic Terminal.Gui application in C#:
[Example (source)](./Example/Example.cs)
[Example (source)](./Examples/Example/Example.cs)
When run the application looks as follows:
![Simple Usage app](./docfx/images/Example.png)
## Sample usage in F#
F# examples are located [here](./FSharpExample/Program.fs)
An F# example is located [here](./Examples/FSharpExample/Program.fs).
## Installing