Is it possible to utilize Umbraco with an ASP.NET Core API project? Can these two techs work together or do I have to use .NET 4.x ?
:::::::::::::::::::::::: UPDATE ::::::::::::::::::::::::
I accepted @mortenbock's answer, but I strongly suggest to people interested in this question to also read the comments below, where @Tseng has provided some very useful answers.
System.Web.*
namespace, you will probably be out of luck. All dependencies onSystem.Web.*
have been removed from ASP.NET Core, because they depend on IIS and to make ASP.NET Core portable, it had to go – Falbala