mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
Add minimal ExampleRunner example
- Created new ExampleRunner example that discovers and runs all examples sequentially - Minimal implementation with no UI - just console output - Discovers examples from Examples directory and runs them with FakeDriver - Shows success/failure status for each example - Returns exit code 0 if all pass, 1 if any fail Note: Key injection via ExampleContextInjector needs debugging for out-of-process mode Co-authored-by: tig <585482+tig@users.noreply.github.com>
This commit is contained in:
15
Examples/ExampleRunner/ExampleRunner.csproj
Normal file
15
Examples/ExampleRunner/ExampleRunner.csproj
Normal file
@@ -0,0 +1,15 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<!-- Version numbers are automatically updated by gitversion when a release is released -->
|
||||
<!-- In the source tree the version will always be 1.0 for all projects. -->
|
||||
<!-- Do not modify these. -->
|
||||
<AssemblyVersion>2.0</AssemblyVersion>
|
||||
<FileVersion>2.0</FileVersion>
|
||||
<Version>2.0</Version>
|
||||
<InformationalVersion>2.0</InformationalVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Terminal.Gui\Terminal.Gui.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user