微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

我有一个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.)

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

解决方法

在我看来,它不会抛出用户(您的)应用程序代码.您是否在工具中找到了一点 – >选项 – >调试 – >启用我的代码?还有一个有趣的地方有CLR例外:调试 – > Windows – >例外设置 – > CLR例外适用于VS2015.

原文地址:https://www.jb51.cc/csharp/99955.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐