RawSys is a .NET Core console experiment exploring terminal user interfaces for rapid prototyping and interaction design.
- .NET SDK 8.0 or later
- A terminal capable of rendering ANSI TUI elements
- Build once with
dotnet build. - Execute unit tests using
dotnet test. - Launch the console TUI via
dotnet run --project RawSys.Console.
- Restore dependencies via
dotnet restoreto ensure tooling matches the solution. - Execute the suite with
dotnet test --configuration Releasefor reproducible results. - Use
dotnet watch testduring feature work to surface regressions immediately. - Generate coverage reports through
dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcovbefore merging.