繁体   English   中英

应用程序启动时捆绑包中的异常

[英]Exception in bundles on application startup

我有一个ASP.NET MVC应用程序。 所有脚本都像往常一样捆绑在一起。 这是我的BundleConfig.cs代码

 bundles.Add(new ScriptBundle("~/bundles/public-js").Include(
                    "~/Scripts/angular.min.js",
                    "~/Scripts/angular-route.min.js",
                    "~/Scripts/angular-resource.min.js",
                    "~/Scripts/angular-cookies.min.js",
                    "~/Scripts/angular-sanitize.min.js",
                    "~/Scripts/angular-ui/ui-bootstrap-tpls.min.js",
                    "~/Scripts/bootstrap.min.js",

                    "~/Scripts/string.utilities.js",
                    "~/Scripts/public/google-charts-loader.js",
                    "~/Scripts/biz/core/app-config.js",

                    "~/Scripts/public/core/db-api.js",
                    "~/Scripts/public/core/app.js",
                    "~/Scripts/public/core/directives.js",
                    "~/Scripts/public/core/controller-helpers.js",
                    "~/Scripts/public/core/public-controller-helpers.js",
                    "~/Scripts/public/core/services.js",
                    "~/Scripts/public/core/list-controller.js",
                    "~/Scripts/public/core/item-controller.js",

                    "~/Scripts/n.utilities.biz.js"
                    ));

根据IntelliTrace,我有一个例外,它是由系统处理的。 这是异常描述

Exception thrown: 'System.Web.HttpException' in System.Web.dll (": Invalid file name for file monitoring: 'C:\IISTest\SuperMVC\Scripts\public'. Common reasons for failure include: 
- The filename is not a valid Win32 file name.
- The filename is not an absolute path.
- The filename contains wildcard characters.
- The file specified is a directory.
- Access denied.)

应用程序继续正常运行,没有错误。 为什么应用程序启动时出现此错误?

在我看来,它不会抛出用户(您的)应用程序代码。 您是否在Tools -> Options -> Debugging -> Enable Just My Code 还有一个有趣的地方有CLR异常: Debug -> Windows -> Exception Settings -> CLR Exceptions它适用于VS2015。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM