我想重新编译System.Web.Optimization以更改Bundle.cs中的缓存头(CDN不喜欢Vary头),因为似乎没有其他方法可以覆盖头。我能够反编译源代码(通过Resharper),进行更改,并重新编译源代码,但是当我添加对项目的引用时,所有相关的Nuget包都会出错。类似于下面的那个。
类型'System.Web.Optimization.IBundleBuilder'在未引用的程序集中定义。您必须添加对程序集'System.Web.Optimization,Version = 1.1.0.0,Culture = neutral,PublicKeyToken = 31bf3856ad364e35'
的引用我宁愿不必编译所有依赖项。我也对其他覆盖缓存头的方法持开放态度。 HTTPModules,IIS等。
答案 0 :(得分:2)
我决定通过不同的HttpHandler路由捆绑请求,而不是重新编译捆绑包的自定义版本。在URL中快速替换允许我轻松获取包的内容并使用我想要的缓存头写出来。不是最理想的方法,但有效。
不允许您在库中设置自己的标题是一个巨大的过度。我希望他们尽快解决这个问题。
public void ProcessRequest(HttpContext context)
{
var request = context.Request;
var response = context.Response;
var cache = response.Cache;
var path = request.Url.LocalPath;
var bundlesPath = "~/" + path.Substring(path.IndexOf("mypath"));
bundlesPath = bundlesPath.Replace("mypath", "bundle");
Bundle bundle = BundleTable.Bundles.GetBundleFor(bundlesPath);
var bundleContext = new BundleContext(new HttpContextWrapper(HttpContext.Current), BundleTable.Bundles, bundlesPath);
var bundleResponse = bundle.GenerateBundleResponse(bundleContext);
cache.SetCacheability(HttpCacheability.Public);
cache.SetExpires(DateTime.UtcNow.AddYears(1));
cache.SetMaxAge(new TimeSpan(365, 0, 0, 0));
cache.SetValidUntilExpires(true);
// This handler is called whenever a file ending
// in .sample is requested. A file with that extension
// does not need to exist.
response.ContentType = bundleResponse.ContentType;
response.Write(bundleResponse.Content);
}