Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 984 Bytes

README.md

File metadata and controls

44 lines (28 loc) · 984 Bytes

CleanArchitectureTemplate

Build and Test .NET Project

Api

To debug or run the api locally use

dotnet watch run

Testing

All Tests can be run by chaning the working directory of the unit or integration tests and then using the command:

dotnet test

Applying the [Trait] attribute at the class level allows, that every test method in that class can be run seperatly.

Example to run individual test parts:

dotnet test --filter "category=application"

Usage

Want the full parametric experience?

Use

git clone https://github.com/domoar/CleanArchitectureTemplate.git
cd CleanArchitectureTemplate

to clone the repository then customize with

dotnet new cleanarch --name MyApp --SolutionName "MyApp"