I've added some batch files for windows setup.
To run API: dotnet run -p Api
To just build: dotnet build
To run test: dotnet test
To run test verbose + logging: dotnet test -l:"console;verbosity=detailed"
To run a specific test, do: dotnet test --filter FullyQualifiedName~MyNamespace.MyTestClass.MyTest
Example:
dotnet test --filter lib.test.PermutationGeneratorTest