Reputation: 824
I am looking for an explanation of the templating folder structure. If someone can point me at some documentation, that would be awesome — I have looked but couldn't find it.
src/AppName.Application
src/AppName.Application.Client
src/AppName.Application.Shared
src/AppName.Core
src/AppName.Core.Shared
src/AppName.EntityFrameworkCore
src/AppName.Migrator . # My understanding is that this if for performing database migrations
src/AppName.Mobile.Droid . # This obviously hosts Android Mobile Code
src/AppName.Mobile.iOS . # This obviously hosts iOS Mobile Code
src/AppName.Mobile.Shared # This obviously hosts Shared Mobile Code
src/AppName.Web.Core
src/AppName.Web.Host
src/AppName.Web.Mvc # This obviously is where the Mvc code goes
src/AppName.Web.Public # Should this have all static css/js type files?
Basically, I don't know what the various parts are supposed to contain. Any help would be useful.
Thanks.
Upvotes: 0
Views: 688
Reputation: 109
Aspnetboilerplate tries to seperate everything
consider this url NLayered Architecture
Upvotes: 6