部署到Azure服务时出现MVC5捆绑问题

时间:2014-10-28 12:13:23

标签: asp.net-mvc azure asp.net-bundling

我们有一个MVC5项目,它有很多脚本文件和样式,我们使用System.Web.Optimization。

问题是当部署到azure时我们有如下错误:

Object reference not set to an instance of an object.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error: 
Line 4:  
Line 5:  @section scripts{
Line 6:      @Scripts.Render("~/bundles/timeApp")
Line 7:      <script>

请注意,它在本地计算机上正常工作。

我们尝试降级“WEBGREASE”,但没有运气

感谢。

1 个答案:

答案 0 :(得分:-2)

在我遇到此问题的多个实例中,它与JavaScript中的错误有关。注释掉所有正在加载和测试的文件,然后一次取消注释部分并重新测试以查看何时重新引入错误,这将引导您找到根本原因。