dotnet core 3 is out! So, I need to host aspnetcore inside a WPF application.
Tried this approach but since VS uses csproj Project node to determine the output, it doesn't work.
There is two nuget packages that called my attention:
Microsoft.AspNetCore.Mvc.Razor.Extensions
AND
Microsoft.Extensions.Hosting
But have no idea how to implement this on WPF :(
Any clues?
With WPF you can use a WebBrowser element set to the URL of your ASP.NET hosted location (localhost I'm assuming in this case). Make sure to use kestrel standalone and not IIS. I may be misunderstanding your question, but you would essentially be using WPF as a shell to display your ASP.NET web app. Not unlike what a web browser does. You would not actually be hosting from WPF.