I install visual studio 2022 and I want to Create project asp.net core web2 app with .net 4.8 .
When I try to create asp.net core app in vs get me .net6 (long term support) and .net core3(out of suport) !!!
How to fix it?
I install visual studio 2022 and I want to Create project asp.net core web2 app with .net 4.8 .
When I try to create asp.net core app in vs get me .net6 (long term support) and .net core3(out of suport) !!!
How to fix it?
.NET Core and .NET Framework are different implementations of .NET:
https://docs.microsoft.com/en-us/dotnet/standard/choosing-core-framework-server
ASP.NET uses the .NET Framework
ASP.NET Core uses .NET Core
You have to decide which implementation you want to use. IMO there's no supported way to combine both implementations.