我在ASP.NET 4.6应用程序中使用BundleCollection
BundleConfig文件。它一直工作正常,但最近开始跳过Bundle中的一个文件。例如:
bundles.Add(new ScriptBundle("~/bundles/MyBundle").Include(
"~/Scripts/Views/Shared/App.js",
"~/Scripts/Views/Shared/Logging.js",
"~/Scripts/Views/Shared/Utilities.js",
"~/Scripts/Views/Shared/Resources.js",
"~/Scripts/Views/Shared/Security.js"));
尚未进行小型化或优化。在主页上它加载正常,但是在点击到另一个页面时,同一个Bundle调用会遗漏"~/Scripts/Views/Shared/App.js",
文件,但它会加载其余的文件。 App.js中也没有错误。我尝试从TFS重新安装我的项目并更新所有NuGet包。关于可能导致这种情况的任何想法?