在 ASP.net 4.5 中,我们曾经能够通过在 web.config 中添加“ClientCache”来启用静态资源的过期标头(反过来,启用浏览器缓存),例如:
<staticcontent>
<clientcache cachecontrolmode="UseMaxAge" cachecontrolmaxage="365.00:00:00" />
</staticcontent>
如http://madskristensen.net/post/cache-busting-in-aspnet中所引用
当我们没有 web.config 和 Startup.cs 时,我们现在如何在 ASP.net 5 中执行此操作?