I am new to the asp.net MVC concept and project design, i'm at early learning stage.
i'm using visual studio 2019 | project type : asp.net MVC (.net framework)
i want to know how to deploy my application for viewing live-changes, like there is an with node.js live-server extension we can use (localhost:8080) to track live changes in html,css,js whenever we save these file browser automatically reloads and we can see the changes.
how can i do it for the asp.net MVC application as it has such complex architecture?
if i run the IIS Express which is default, it does not automatically reloads when content changes, file is saved and it open the visual studio debugging mode which is pretty annoying to work with.
there are extension like BrowserLinkLivePreview but it does not auto reloads the main page (index.html) when any of the file's code is changed and saved.