Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 384 Bytes

File metadata and controls

17 lines (12 loc) · 384 Bytes

smcd-csharp-testframework

one way to start the tests

The "watch" subcommand observes the project folder. The dotnet runtime will rebuild the project and re-start it, if changes to relevant files are detected.

dotnet watch run --project "TestFramework.Tests"

The above command is similar to:

dotnet build && dotnet run --project=TestFramework.Tests