- Application: Contains application logic.
- Domain: Contains main entities and interfaces.
- Repository: Contains data access logic.
- Infrastructure: Contains infrastructure implementations such as logging.
- Test: Contains automated tests.
- Restore packages:
dotnet restore
-
- Build the project:
dotnet build
-
- Run the console application:
dotnet run --project ConsoleApp
- Run tests:
dotnet test