我正在使用包含在 asp.net Web 优化中的捆绑,并且我想忽略位于我的目录中的单个 .js 文件。
现在我正在做:
bundles.Add(new ScriptBundle("~/bundles/content")
.IncludeDirectory("~/Content/src", "*.js", true));
我想将 app.js 排除在外。如何告诉 IncludeDirectory 忽略此文件?
我正在使用包含在 asp.net Web 优化中的捆绑,并且我想忽略位于我的目录中的单个 .js 文件。
现在我正在做:
bundles.Add(new ScriptBundle("~/bundles/content")
.IncludeDirectory("~/Content/src", "*.js", true));
我想将 app.js 排除在外。如何告诉 IncludeDirectory 忽略此文件?