0
rev319303 created
I am using the .Net Core template. I understand all the projects in the template except for the "MyProjectName.Web.Host" and the "MyProjectName.Web.Core" projects. I don't see any documentation on these projects. Can you provide a description of each project and how they relate to the entire solution as a whole?
1 Answer(s)
-
0
Hi,
You can think Host project like a web api without user interface. In most cases it is better to host your API seperate from your UI. Host project is actually created for angular2 version.
Core project is the project for keeping common things for both MVC and Host project. It is a base project for those two.
Please continue if there is something unclear.