❔ Could I create two folder using dotnet new webapi?
if I have this scenario, For example:
src/Club.Api, src/Club.Infra, src/Club.Test and I want create src/Player.Api, src/Player.Infra, src/Player.Test, could I create the src/Player.Api and src/Club using command:
dotnet new webapi
on both folders?
Those will "linked" to same solution file3 Replies
dotnet new webapi
creates a whole entire new project
Do you want to have two separate projects, two separate apps, two separate APIs?
If not, don't use itOk, thank you 🙂
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.