我正在使用RC,我已经通过NuGet查看了所有内容都是最新的.
在我的global.asax.cs中我得到了:
在我的global.asax.cs中我得到了:
BundleTable.Bundles.AddDefaultFileExtensionReplacements(); BundleTable.Bundles.AddDefaultIgnorePatterns(); BundleTable.Bundles.AddDefaultFileOrderings(); Bundle scripts = new Bundle("~/Scripts"); scripts.IncludeDirectory("~/Scripts","*.js"); BundleTable.Bundles.Add(scripts); Bundle css = new Bundle("~/Content/css"); css.IncludeDirectory("~/Content/css","*.css",false); BundleTable.Bundles.Add(css);
我尝试了一些不同的配置而没有任何改进.
然后在我的布局中我得到了:
<link href="@BundleTable.Bundles.ResolveBundleUrl("~/Content/css")" rel="stylesheet" type="text/css" /> <script src="@BundleTable.Bundles.ResolveBundleUrl("~/Scripts")"> </script>
当页面加载它看起来很体面的网址时:
<link href="/Content/css?v=QAsFYXHCbnaU70oGVxpgi9py9iKQrT9C4BVNdHa7xoI1" rel="stylesheet" type="text/css" />
但该网址重定向到:
/Content/css/
有人有任何想法吗?