VSCodium Support [Meta Feature Request]
Due to microsoft's restrictions, extensions from the Microsoft marketplace cannot be used in vscodium. Please consider supporting VSCodium by publishing to open-vsx.org as outlined here https://github.com/VSCodium/vscodium/blob/master/docs/index.md#extensions--marketplace.
Alternatively you could provide vsix files for direct installation, perhaps in the releases.
You can download the vsix via API.
example with powershell:
$extensionId = "Deltin.overwatch-script-to-workshop"
$publisher, $name = $extensionId -split '\.'
$downloadUrl = "https://$publisher.gallery.vsassets.io/_apis/public/gallery/publisher/$publisher/extension/$name/latest/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage"
Invoke-WebRequest -Uri $downloadUrl -OutFile "$name.vsix" -UseBasicParsing
and run with
powershell -ExecutionPolicy Bypass -File "Filename.ps1"
solution found on stackoverflow.com
@ItsDeltin could you close this issue since solution is provided.
Manual compilation was always an option, but I don't believe it's the solution to this issue.
Should remain open unless it's (not planned/out of scope)