Although this is not an ideal answer, I have found a workaround. In my application, I control where my JS, CSS and other similar files are in the directory structure. What I did was put it web.configin the IIS root directory with the following lines (among other things, not related):
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" setEtag="true" />
</staticContent>
</system.webServer>
</configuration>
IIS , . , HTML- (index.html) (SPA), .
, JS, CSS .. web.config :
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="14.00:00:00" setEtag="true" />
</staticContent>
</system.webServer>
</configuration>
, , , . 14 , , , , , .
, HTML SPA , JS/CSS/ , . , - JS CSS, . , HTML , JS . , , HTML , .
IIS . , .