'Add menu to the explorer view

Isn't it possible to add a new menu item for explorer view ? Right click on the project I want to add a new menu item.

enter image description here

If I contribute to the explorer/context menu it gets added but it appears only when I right click on files inside the project.

enter image description here

  "commands": [
  {
      "command": "extension.Upgrade",
      "title": "My Menu"
  }
],
  "menus": {
    "explorer/context": [{
        "command": "extension.Upgrade",
        "group": "navigation"

  }]
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source