我被 MVC4 中的捆绑包困住了。我已经定义了捆绑
bundles.Add(new ScriptBundle("~/bundles/maps").Include("~/Scripts/map.*.js"));
和脚本
map.base.js
map.helper.js
这没关系,直到我添加
map.setting.js
之后我收到错误
Invalid pattern: 'map.*.js'. Wildcards are only allowed in the last path segment, can contain only one leading or trailing wildcard, and cannot be used with {version}.
参数名称:virtualPaths
有什么想法如何在不列出所有文件的情况下解决这个问题(我希望添加更多带有“map.”前缀的文件)?
感谢帮助。