This might sound "left field" so just out of curiosity:
Is there any guidance as to how one might modify the ASP.Net Bundling/Minification optimization to generate a random
file name, instead of a
queryString ?
Nutshell:
instead of this:
<script src="/bundle/foo?v=123456....
it would render this:
<script src="/bundle/foo123456 ...
Why am I asking?
Leverage Proxy Caching
Don't include a query string in the URL for static resources.
Most proxies, most notably Squid up through version 3.0, do not cache resources with a "?" in their URL. To enable proxy caching for these resources, remove query strings from re ...
Go to the complete details ...