Contact Application using ASP.NET Core Web API 2.1, Angular 6.0, Angular Material UI 6 and Visual Studio Code.
.Net Core 2.1.5
NodeJS 8.11.0
npm 5.6.0
Angular CLI 6.0
git clone https://github.com/AngularExamplesHub/contact-app.git
npm install
dotnet restore
"ConnectionStrings": { "ContactDb": "Data Source=.\SQLEXPRESS;Initial Catalog=ContactDb;Integrated Security=True" }
dotnet ef database update
ng build
dotnet run
In the article, we will set up ASP.NET Core Web API project, and develop the Web API for contact CRUD operations.
In the article, we will setup Angular 6 within ASP.NET Core Web API Project, and develop the contact form & list component using Angular Material UI that will consume Web API which we have created in Part One.
In this article, we are going to deploy/host a contact application with Visual Studio code to Azure web apps.
In this article, we will look into steps for contact application - upgrade Asp.net Core 2.0 to 2.1, please see my previous articles about how we developed contact application.