ASP.NET Development Server or Localhost IIS?

前端 未结 11 640
北海茫月
北海茫月 2020-12-05 01:02

Currently our dev team set up all the websites they\'re working on in IIS on their local machine. We\'re thinking of switching to using the built in ASP.NET development serv

11条回答
  •  鱼传尺愫
    2020-12-05 01:28

    There is nothing that the ASP.NET Dev WebService can do that IIS can't (You can set breakpoints etc, just attach the VS debugger to the ASP.NET runtime).

    However, the ASP.NET Dev WebService does not represent a true production environment, and as such you can get caught by gotchas that you wouldn't expect when you deploy to production.

    Because of that, I mandate that all development is done using IIS on a local machine. It doesn't take much work to configure a site in IIS.

提交回复
热议问题