Visual Studio sigue agregando IIS Express nuevamente en mi launchsettings.json

Estoy tratando de eliminar el perfil IIS Express de mi configuración de inicio de .NET Core, pero cada vez que vuelvo a abrir la solución, Visual Studio lo agrega nuevamente. Por ejemplo, en un nuevo proyecto mi configuración de inicio se ve así

{
  "iisSettings": {
    "windowsAuthentication": false,
    "anonymousAuthentication": true,
    "iisExpress": {
      "applicationUrl": "http://localhost:55735/",
      "sslPort": 0
    }
  },
  "profiles": {
    "IIS Express": {
      "commandName": "IISExpress",
      "launchBrowser": true,
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    },
    "MyProject": {
      "commandName": "Project",
      "launchUrl": "http://localhost:5010",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    }
  }
}

Elimino las secciones de IIS

{
  "profiles": {
    "MyProject": {
      "commandName": "Project",
      "launchUrl": "http://localhost:5010",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    }
  }
}

La solución funciona bien. Pero tan pronto como cierro y vuelvo a abrir la solución, las secciones de IIS vuelven a aparecer.

¿Algunas ideas?

Respuestas a la pregunta(1)

Su respuesta a la pregunta