2017-04-18 134 views

回答

2

我看着你的回购,并指出,有一个在您package.json文件中的错误。该keybindingsconfiguration节点必须contributes,像这样(我删除keybindings,因为它是空的):

"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" 
      } 
     } 
    } 
}, 

我做了一个pull request修复此问题。