【发布时间】:2018-10-03 17:02:52
【问题描述】:
我正在寻找模板文件夹结构的解释。 如果有人能指点我一些文档,那就太棒了——我看过但找不到。
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?
基本上,我不知道各个部分应该包含什么。任何帮助都会很有用。
谢谢。
【问题讨论】:
标签: asp.net-core aspnetboilerplate