I have created a project using a console application in C# with .NET Framework, and I would like to integrate ASP.NET MVC into this project.
While I understand that there is a .NET Core console application with MVC, I am building a project that is only supported by Windows and I want to build a self-hosted application. Therefore, I need to use .NET Framework together with the functions provided by ASP.NET MVC. Is this possible?
- .NET Framework 4.8
- Console application (generates .exe file)
- ASP.NET MVC
If this is possible, does anyone know any links where I can follow to create this project?