In Visual Studio (I'm working with Visual Studio 2022) you can create two kinds of Angular projects.
- ASP .NET Core with Angular
- Standalone Typescript Angular Project
What is the difference between these two?
In Visual Studio (I'm working with Visual Studio 2022) you can create two kinds of Angular projects.
What is the difference between these two?
The first uses .net core to provide an API to the Angular app, the second is a straight-up Angular app.
The first one host both the front-end angular app and the back-end ASP.NET Core API, as a single project.
Meanwhile the second (Standalone) is new approach introduced with Visual Studio 2022 that allows to keep the front-end Angular app and the back-end ASP.NET Core API in two separate projects, although fully able to interoperate with each other.