結論 一時しのぎみたいなものだけど コマンドライン引数で dotnet run --urls="https://localhost:7777" みたいにする もしくは、 appsettings.json や appsettings.Development.json に以下のように追記して、 launchSettings.json の "applicationUrl" を無視する { + "Kestrel": { + "Endpoints": { + "Https": { + "Url": "https://localhost:9999" + } + } + }, "Logging": { "L…