Now I see that there are two options when creating the main ASP.net web application.
- ASP.Net core web application with .Net Core
- Primary ASP.NET Web Application with .Net Framework
I understand that the first of them allows us to run it in any linux, mac, windows environment without first installing .net.
Of course, I will only run my WebAPI on Windows. In that case, which one should I choose? The main ASP.Net web application with the main .NET web application or the ASP.Net with the .NET framework?
What is the advantage of choosing an ASP.Net core web application with .Net Core when I plan to run only on Windows? I need to create a new WebAPI. Dependencies are not a problem, it will be a very simple basi web api, so I believe that I can do it in any of them without any dependencies on some old component that is built on .Framework 4.6. *
Also, what is the difference between ASP.NET Core Web Application with .Net Framework and ASP.NET Web Application with .Net Framework?
source share