Created
June 16, 2020 16:44
-
-
Save rfpedrosa/34cac0f2168fa2476dd61d7dd6778b4a to your computer and use it in GitHub Desktop.
Medium article: Asp.net core API project structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dotnet new solution | |
| dotnet new webapi -o Todo.Api | |
| dotnet new classlib -o Todo.Core | |
| dotnet sln add Todo.Api/Todo.Api.csproj Todo.Core/Todo.Core.csproj | |
| dotnet add Todo.Api/Todo.Api.csproj reference Todo.Core/Todo.Core.csproj |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment