Saturday, September 22, 2018

.Net Core | Project file


csproj file has been changed with .Net core

  1. Solution explorer is mapped with hard drive location, any file added in hard drive location will be visible in solution explorer, no entry required in .csproj file.
  2. Project file is used to contain packages references  
  3. Microsoft.AspNetCore.App contains
    • All required Core features
    • EntityFramework
    • Third party packages dependencies used by Core

No comments:

Post a Comment

Node | Cluster Vs Worker Threads

Cluster: Multiple processes (scale app across CPU cores) Worker Threads: Multiple threads (handle CPU-heavy work inside one process) Cluster...