When you modify the "web.config" file of an ASP.NET (MVC) application, the application is automatically recompiled/restarted, forcing the modified "web.config" to be read-in.
My question:
Is it possible to apply this change-detection behaviour for my own configuration files (let's say "my-config.json") in the root of an ASP.NET website?
I.e. when someone modifies the "my-config.json" file, the application gets restarted.