Sunday, September 2, 2018

.Net Core | Installation

Installation
Visual studio installation does not includes .Net Core, you need to download and install it from
https://www.dot.net

Templates available in Visual Studio for
  1. API
  2. Console App
  3. ASP.Net Core web application  
  4. ASP.Net Core web application(MVC)
  5. Angular
  6. React.js
Project file structure (.csproj or .vbproj)
  1. Includes wwwroot folder.
    • Only wwwroot folder is accessible from browser
    • Nothing is accessible by default 
    • Only files accessible included in white list
  2. Solution explorer directly maps local stored drive location. It means adding any file on hard drive shown directly in solution explorer.
  3. Includes .Net core framework version
  4. Includes Package/library references 
Meta Package 
  1. It includes every thing required in ASP.net core and Entity Framework.
  2. It also include internal and external dependencies

No comments:

Post a Comment

CI/CD - Safe DB Changes/Migrations

Safe DB Migrations means updating your database schema without breaking the running application and without downtime . In real systems (A...