【.net】本地调试运行只能用localhost的问题

【.net】本地调试运行只能用localhost的问题_ide

 

解决方案

找到到项目目录下 隐藏文件夹 .vs /项目名称/config/applicationhost.config

【.net】本地调试运行只能用localhost的问题_解决方案_02

 

<bindings>
     <binding protocol="http" bindingInformation="*:1738:localhost" />
 </bindings>

再加一条你要通过ip访问的地址并保存

<bindings>
     <binding protocol="http" bindingInformation="*:1738:localhost" />
     <binding protocol="http" bindingInformation="*:1738:192.168.1.100" />
 </bindings>

打开ide vs

【.net】本地调试运行只能用localhost的问题_解决方案_03

 改成对应的地址

【.net】本地调试运行只能用localhost的问题_ide_04

 

保存重新启动