microsoft / vscode-azureresourcegroups

VS Code extension for managing Azure resources.
https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azureresourcegroups
MIT License
52 stars 28 forks source link

When signing into Azure, the description for our extension is "Null Extension Description" #652

Open nturinski opened 1 year ago

nturinski commented 1 year ago

I think that this is related to sideloading the extension. The file authority and schema are not what vscode are expected, so it doesn't know where to find the extension info. This causes VS Code to default to it's nullExtensionDescription.

image

When testing the same scenario on Desktop, it works fine:

image

I've confirmed that other extensions appear normal on vscode.dev, so I'm pretty sure this will be resolved once we actually publish the extension to the marketplace.

image

The code for that logic is here: https://github.com/microsoft/vscode/blob/59608d3aee99b2599347b45efbc5f5ee23df56cd/src/vs/workbench/api/common/extHostRequireInterceptor.ts#L164-L184