Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 583 Bytes

cli.md

File metadata and controls

33 lines (21 loc) · 583 Bytes

Reference notes of useful console commands for the project

Assuming terminal is in the src folder.

Compilation

Restore all dependent NuGet packages

dotnet restore

Compile all projects in the solution

dotnet build

Testing

Run all tests

dotnet test ./CassinoGames.Test/CassinoGames.Test.csproj

Run all tests when code chanes

Runs all the unit tests, any time a code file changes in the test project or its referenced dependencies.

dotnet watch --project .\CasinoGames.Test\CasinoGames.Test.csproj tes