I did that an more code was generated in the project file. I tried to run from VS2017 and it still hangs as before. No errors, not output messages etc. I do notice that it is listening on Port 5000 not 8000. The Radzen setting show the Port at 8000. However when I run in Radzen it also shows listening at Port 5000. So it is not seeing the setting.
I manually changed the setting in the code to listen to Port 8000. It then reports an error that it cannot open to files npm….. and npm..
When I change it back to Port 5000 these errors disappear.
This is from the vb code file as you can see it codes it as Port 5000
Function BuildWebHost(args As String()) As IWebHost
Return WebHost.CreateDefaultBuilder(args) _
.UseKestrel() _
.UseUrls("http://localhost:5000") _
.UseStartup(Of Startup)() _
.Build()
End Function
I would be happy to start a clean project if there is some way for me to move a page to the new project. I have a fair amount of time in building a layout. I would not like to lose that work.