Netcore Always Start still relivant?

Hi All,

I’m looking at using this for our scheduling needs. One question though; Is the following link still required if used in .netcore mvc?

http://docs.hangfire.io/en/latest/deployment-to-production/making-aspnet-app-always-running.html

We’re planning on running this Linux containers, so I’m unsure how I’d go about setting that? I assume its always netcore apps are started by a console app?

Thanks!

No, the link above is only for IIS-hosted applications.

.Net Core applications always run as a separate process, and won’t be stopped/restarted because of quotas or timeouts. You just need to correctly configure systemd (or whatever) to run your application on startup.

1 Like