I tried this Middleware but the browser still saving files.
I want user will always get the last version of js and css files.
public void Configure(I
Disabling browser cache in ASP.NET core:
public class HomeController : Controller { [ResponseCache(NoStore =true, Location =ResponseCacheLocation.None)] public IActionResult Index() { return View(); } }