I typically update the standard version of Visual Studio Code
by clicking Help => Check for Updates
(or just letting it update automatically in the background), but this option is missing from the Help
menu in the portable version. Furthermore, it doesn't update automatically in the background despite the fact that I haven't overridden the following default settings:
"update.channel": "default",
"update.enableWindowsBackgroundUpdates": true,
Are there any other ways to update the portable version of Visual Studio Code, or do I have to manually uninstall/reinstall it every time a major update is released?
VS Code Portable
folder, and it did indeed update the program. However, it only achieved this because it re-installedVisual Studio Code Portable
from scratch, which took as much time as a portable installation and also resulted in my debugger configurations being reset (i.e. thelaunch.json
file was cleared).I was able to recover the configurations from a backup file, but as a result of all this I wouldn't say that re-installation is a very convenient way to update a portable installation. – Lastditch