Why is the ASP.NET/Visual Studio Web Development Server so slow?

后端 未结 7 1588
北荒
北荒 2020-12-24 12:06

\"Compiling(xkcd)

I know that compiling nowadays is much faster than it was before. Yet, for me, it se

7条回答
  •  既然无缘
    2020-12-24 12:30

    I was having the same problem. It ended up being a problem with ColdFusion being installed on my local machine (as painful as it is for me to admit). ColdFusion puts Handler Mappings named AboMapperCustom-* that were causing the latency. I uninstalled ColdFusion because I no longer need it (thank God). Another solution could be to remove each AboMapperCustom entry through the web.config. Example:

    
        
        
        
    
    

    Make sure the 5-digits following AboMapperCustom- match those in your local IIS Handler Mappings.

    HTH

提交回复
热议问题