Skip to content

Instantly share code, notes, and snippets.

@rfpedrosa
Created June 16, 2020 16:44
Show Gist options
  • Select an option

  • Save rfpedrosa/34cac0f2168fa2476dd61d7dd6778b4a to your computer and use it in GitHub Desktop.

Select an option

Save rfpedrosa/34cac0f2168fa2476dd61d7dd6778b4a to your computer and use it in GitHub Desktop.
Medium article: Asp.net core API project structure
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