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