Skip to content

Commit

Permalink
upgrade: update github action to compatible with .NET 8 + update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Rezakazemi890 committed Mar 3, 2024
1 parent 5e6cbf0 commit 17b4730
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Clean Architecture with CQRS Pattern

### This is template and sample, and used pure .net. I tried to biuld a simple structure.
### This is template and sample, and used pure .NET. I tried to biuld a simple structure.

This project is an implementation of the Clean Architecture with CQRS Pattern using .NET 7. The Clean Architecture provides a robust and flexible software design that can easily adapt to changes and maintainability. CQRS (Command Query Responsibility Segregation) pattern separates the application into two parts: Commands and Queries. Commands are responsible for modifying the state of the application while Queries are responsible for retrieving data from the application. The separation of concerns enables scalability and performance optimization for the application.
This project is an implementation of the Clean Architecture with CQRS Pattern using .NET 8.
The Clean Architecture provides a robust and flexible software design that can easily adapt to changes and maintainability.
CQRS (Command Query Responsibility Segregation) pattern separates the application into two parts: Commands and Queries.
Commands are responsible for modifying the state of the application while Queries are responsible for retrieving data from the application. The separation of concerns enables scalability and performance optimization for the application.


## Getting Started
Expand All @@ -11,7 +14,7 @@ These instructions will get you a copy of the project up and running on your loc

### Prerequisites

* .NET 7 SDK
* .NET 8 SDK
* Visual Studio 2019 or Visual Studio Code

### Installing
Expand Down Expand Up @@ -55,7 +58,7 @@ The Clean Architecture with CQRS Pattern consists of the following layers:

## Technologies Used

* .NET 7
* .NET 8
* ASP.NET Core
* Entity Framework Core
* xUnit
Expand Down

0 comments on commit 17b4730

Please sign in to comment.