I have a live ASP .NET Core site running I built using dotnet publish..
Now I want to update the site with as little down time as possible - hopefully none!
I note during development if the debugger is not attached I can make changes to Views .cshtml files and they are reflected without havint to restart the server so presumably I can just drop the new Views into my live site? How about everything else such as the Controller *.dlls?
I looked but couldn't find any official docs on this :(