ASP.NET-Core-Vertical-Slice-Architecture
ASP.NET Core, C#, Vertical Slice Architecture, CQRS, REST API, DDD, SOLID Principles
File Explorer
Download Latest Version (.zip)- codeql-analysis.yml
- delete-workflow-runs.yml
- devskim-analysis.yml
- dotnet.yml
- vertical-slice.png
- AuthorConfiguration.cs
- PostConfiguration.cs
- TagConfiguration.cs
- UserConfiguration.cs
- ModelBuilderExtensions.cs
- BlogDbContext.cs
- Author.cs
- Post.cs
- Tag.cs
- User.cs
- UserState.cs
- IAggregateRoot.cs
- IEntity.cs
- ServiceCollectionExtensions.cs
- StringExtensions.cs
- IFeatureMarker.cs
- AuthenticationController.cs
- AuthenticationRequest.cs
- AuthenticationRequestHandler.cs
- AuthenticationRequestValidator.cs
- TokenResponse.cs
- CreatePostRequest.cs
- CreatePostRequestHandler.cs
- CreatePostRequestValidator.cs
- GetPostByIdRequest.cs
- GetPostByIdRequestHandler.cs
- PostMapperProfile.cs
- PostResponse.cs
- PostsController.cs
- CreateUserRequest.cs
- CreateUserRequestHandler.cs
- CreateUserRequestValidator.cs
- UserMapperProfile.cs
- UserResponse.cs
- UsersController.cs
- launchSettings.json
- JwtOptions.cs
- appsettings.Development.json
- appsettings.json
- Blog.PublicAPI.csproj
- Program.cs
- AuthenticationControllerTests.cs
- UsersControllerTests.cs
- StringExtensionsTests.cs
- Blog.PublicAPI.Tests.csproj
- xunit.runner.json
- .editorconfig
- .gitattributes
- .gitignore
- Blog.slnx
- Directory.Build.props
- global.json
- LICENSE
- nuget.config
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/jeangatto/ASP.NET-Core-Vertical-Slice-Architecture
Downloads the entire project code from GitHub to your computer.
cd ASP.NET-Core-Vertical-Slice-Architecture
Moves into the project folder you just downloaded.
2. .NET
Medium RecommendedPrerequisites
dotnet restore
Downloads the packages the project depends on.
dotnet run --project src/Blog.PublicAPI
Builds the project and runs it immediately.
dotnet test
Type this command into your terminal and run it.
After dotnet run, check the message or address shown in the terminal.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
