Is it possible to publish an ASP.NET (core) application on a running site in IIS 8 without having to manually stop and start the website?
Visual Studio 2015 continues to give an error that the file is being used. I use publishing on the file system because my web deployment on a server on our network fails with an error that it cannot authenticate on the server with port 443.
I don't mind IIS having to re-process the application pool, but when I constantly have to add an application, publish (which takes about a minute) and restart it, this is not very good for users.
Another option is something like two websites working with the same application, but only if it is automated. Then he would set aside 1 of 2, update it, put it down, put the second one, update it and start it.
The third option is something like a hot update, where I can just update the application while it is turned on.
Can someone point me in the right direction (maybe some blog posts) because my Google searches did not give me any good information?
source share