Antwort

2

ich an Ihrem Repo geschaut und festgestellt, dass ein Fehler in Ihrer package.json Datei. Die keybindings und configuration Knoten müssen innerhalbcontributes sein, so (ich keybindings entfernt, da er leer ist):

"contributes": { 
    "commands": [ 
     { 
      "command": "extension.postMessage", 
      "title": "Microsoft Teams: Post Message" 
     }, 
     { 
      "command": "extension.postCurrentFile", 
      "title": "Microsoft Teams: Post Current File" 
     } 
    ], 
    "configuration": { 
     "type": "object", 
     "title": "Visual Studio Code Microsoft Teams configuration", 
     "properties": { 
      "microsoftteams.teamswebhook": { 
       "type": "string", 
       "default": "", 
       "description": "Microsoft Teams Webhook" 
      } 
     } 
    } 
}, 

Ich habe eine pull request dieses Problem zu beheben.

Verwandte Themen