Currently we have an ASP.NET MVC 5 website hosted in IIS. This MVC application also contains a WCF service (.svc), which is also hosted in IIS. The advantage is that we can use the same logic/services for the ASP.NET MVC website as for the WCF service. (see: https://docs.microsoft.com/en-us/dotnet/framework/wcf/feature-details/how-to-host-a-wcf-service-in-iis )
Now there seems to be a move from ASP.NET MVC to ASP.NET Core MVC.
Question: is it still possible to host a WCF service in an ASP.NET Core MVC application, similar as what I've described above or should you stick with ASP.NET MVC 5 + WCF?