This directory contains a small word-counting app and an xUnit test script. There is no solution or project file.
Run the app with command-line text:
dotnet run --file .\word-counter.cs -- Hello from file scriptsOr pipe text to it:
'one two three'| dotnet run --file .\word-counter.csRun the xUnit test script:
dotnet run --file .\word-counter.tests.csThe two scripts share word-counter.logic.cs through the #:include directive.
dotnet test still expects a project or solution, but the test script runs as a
standalone xUnit v3 test executable.