在vs2022中使用终端命令运行netcore的web程序

使用cmd终端命令去运行netcore程序时,命令如下:

dotnet run --project IdentityServer.WebApp.csproj --configuration Debug --launch-profile Test

 

这个Test指的是在

{
  "iisSettings": {
    "windowsAuthentication": false,
    "anonymousAuthentication": true,
    "iisExpress": {
      "applicationUrl": "http://localhost:5000/",
      "sslPort": 0
    }
  },
  "profiles": {
    "IIS Express": {
      "commandName": "IISExpress",
      "launchBrowser": true,
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    },
    "Test": {
      "commandName": "Project",
      "dotnetRunMessages": "true",
      "launchBrowser": true,
      "applicationUrl": "http://localhost:5000",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    }
  }
}

  

posted @ 2022-09-09 14:18  DarryRing  阅读(160)  评论(0编辑  收藏  举报