https://github.com/avicted/createcleanarchitectureprojectdotnetcore
This is the most basic template for Clean Architecture in Dotnet Core. It let's you start from scratch with a clean architecture in mind.
https://github.com/avicted/createcleanarchitectureprojectdotnetcore
clean-architecture dotnet-core
Last synced: about 2 months ago
JSON representation
This is the most basic template for Clean Architecture in Dotnet Core. It let's you start from scratch with a clean architecture in mind.
- Host: GitHub
- URL: https://github.com/avicted/createcleanarchitectureprojectdotnetcore
- Owner: Avicted
- Created: 2024-09-04T20:31:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-04T21:50:37.000Z (almost 2 years ago)
- Last Synced: 2025-01-13T03:42:09.464Z (over 1 year ago)
- Topics: clean-architecture, dotnet-core
- Language: Shell
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clean Architecture Template for Dotnet Core
This is the most basic template for Clean Architecture in Dotnet Core.
It let's you start from scratch with a clean architecture in mind.
## Project Dependency Tree:
1. **Core Project** (AppName.Core)
Description: Contains core entities and interfaces.
References:
**None**
2. **UseCases Project** (AppName.UseCases)
Description: Contains application services and business logic.
References:
**AppName.Core** (for entities and interfaces)
3. **Infrastructure Project** (AppName.Infrastructure)
Description: Implements data access, repositories, and database configuration.
References:
**AppName.Core** (for entities and interfaces)
**AppName.UseCases** (optional, if services need to be used)
4. **Web Project** (AppName.Web)
Description: Provides API endpoints and application configuration.
References:
- **AppName.Core** (for entities and possibly DTOs)
- **AppName.UseCases** (to access application services)
- **AppName.Infrastructure** (for data access and repositories)
---
For a more advanced template, please check out [Ardalis: Clean Architecture](https://github.com/ardalis/CleanArchitecture)