NET Core 两种指令启动的项目打开 Swagger 页面问题

launchSettings.json:

"profiles": {
    "IIS Express": {
        "commandName": "IISExpress",
        "launchBrowser": true,
        "launchUrl": "Swagger",
        "environmentVariables": {
            "ASPNETCORE_ENVIRONMENT": "Development"
        }
    },
    "Core": {
        "commandName": "Project",
        "launchBrowser": true,
        "launchUrl": "Swagger",
        "applicationUrl": "http://localhost:5001;http://localhost:5000",
        "environmentVariables": {
            "ASPNETCORE_ENVIRONMENT": "Development"
        }
    }
}

IISExpress 效果图:

IISExpress 指令打开的项目

Project 效果图:

Project 指令打开的项目

使用的相同配置,这是为什么呢?

https://www.cnblogs.com/gdsblog/p/9279814.html