欢迎各位兄弟 发布技术文章
这里的技术是共享的
C:\Program Files\Microsoft VS Code
for a 64-bit machine.You can also find a Zip archive here.
Note: .NET Framework 4.5.2 is required for VS Code. If you are using Windows 7, please make sure .NET Framework 4.5.2 is installed.
Tip: Setup will optionally add Visual Studio Code to your
%PATH%
, so from the console you can type 'code .' to open VS Code on that folder. You will need to restart your console after the installation for the change to the%PATH%
environmental variable to take effect.
VS Code ships monthly releases and supports auto-update when a new release is available. If you're prompted by VS Code, accept the newest update and it will be installed (you won't need to do anything else to get the latest bits). If you'd rather control VS Code updates manually, see How do I opt out of auto-updates.
Once you have installed VS Code, these topics will help you learn more about VS Code:
Try using the zip file instead of the installer. To use this, unzip VS Code in your Program Files folder.
Note: When VS Code is installed via a Zip file, you will need to manually update it for each release.
I installed Visual Studio Code on my Windows 7 or 8 machine. Why are some icons not appearing in the workbench and editor?
VS Code uses SVG icons and we have found instances where the .SVG file extension is associated with something other than image/svg+xml
. We're considering options to fix it, but for now here's a workaround:
Using the Command Prompt:
REG ADD HKCR\.svg /f /v "Content Type" /t REG_SZ /d image/svg+xml
.Using the Registry Editor (regedit):
regedit
.HKEY_CLASSES_ROOT
key..svg
key.Content Type
Data value to image/svg+xml
.regedit
.