Home > Software design >  The difference between ASP .NET Core with Angular template and Standalone Typescript Angular Project
The difference between ASP .NET Core with Angular template and Standalone Typescript Angular Project

Time:05-21

In Visual Studio (I'm working with Visual Studio 2022) you can create two kinds of Angular projects.

  1. ASP .NET Core with Angular
  2. Standalone Typescript Angular Project

What is the difference between these two?

The two kinds of templates

CodePudding user response:

The first uses .net core to provide an API to the Angular app, the second is a straight-up Angular app.

  • Related