asp.net Core 3.1 Webapp 无法绑定到本地主机

asp.net Core 3.1 Webapp unable to bind to localhost

我在使用配置文件 "WebApp" 启动我的 asp.net 核心网络应用程序时遇到问题。我总是得到:

"System.IO.IOException" 在 System.Private.CoreLib.dll Ein Ausnahmefehler des Typs "System.IO.IOException" ist in System.Private.CoreLib.dll aufgetreten。 无法绑定到地址 https://localhost:5000

该端口未被任何其他程序使用。我也尝试了很多不同的端口。

有人知道我可以尝试什么吗? 在我同事的电脑上运行正常。

它似乎没有权限绑定到任何端口。

启动:

   public static void Main(string[] args)
       {
           CreateWebHostBuilder(args).Build().Run();
       }

启动设置。

     "iisSettings": {
         "windowsAuthentication": false,
         "anonymousAuthentication": true,
         "iisExpress": {
             "applicationUrl": "http://localhost:23736",
             "sslPort": 44369
         }
     },
     "profiles": {
         "IIS Express": {
             "commandName": "IISExpress",
             "launchBrowser": true,
             "environmentVariables": {
                 "ASPNETCORE_ENVIRONMENT": "Development"
             }
         },
         "WebApp": {
             "commandName": "Project",
             "launchBrowser": true,
             "applicationUrl": "http://localhost:5000",
             "environmentVariables": {
                 "ASPNETCORE_ENVIRONMENT": "Development"
             }
         }
     }
 }```

IIS Profile works fine for me..

Would be very glad if one could help. trying for few days now.

我解决了。这是因为项目不在我的C盘上,而是在我公司的网络驱动器上。

移动到C盘后就可以了。