Visual Studio 2012 A remote operation is taking longer than expected

前端 未结 7 1959
孤独总比滥情好
孤独总比滥情好 2020-12-12 17:04

I\'m running Visual Studio 2012 on Windows 8 64bit. I have a 64 bit project that is in source control and I\'m trying to run it at home on my Windows 8 pc. The application b

相关标签:
7条回答
  • 2020-12-12 17:43

    Solution for me in VS 2015. I had a public dns entry mapped to my local iis and the web/debug tab of the project:

    <app>.<domain>.co.uk
    

    Just had to add that to the hosts file as a local host:

    127.0.0.1 <app>.<domain>.co.uk
    

    Thus VS no longer thinks the host is a remote machine.

    0 讨论(0)
提交回复
热议问题