
284,626
Downloads
30,108
Downloads of v 1.30.2
1/8/2019
Last update
Build and debug modern web and cloud applications. Code is free and available on your favorite platform - Linux, Mac OSX, and Windows.
Features
- Meet IntelliSense: Go beyond syntax highlighting and autocomplete with IntelliSense, which provides smart completions based on variable types, function definitions, and imported modules.
- Print statement debugging is a thing of the past: Debug code right from the editor. Launch or attach to your running apps and debug with break points, call stacks, and an interactive console.
- Git commands built-in: Working with Git has never been easier. Review diffs, stage files, and make commits right from the editor. Push and pull from any hosted Git service.
- Extensible and customizable: Want even more features? Install extensions to add new languages, themes, debuggers, and to connect to additional services. Extensions run in separate processes, ensuring they won't slow down your editor.
Package parameters
/NoDesktopIcon
- Don't add a desktop icon./NoQuicklaunchIcon
- Don't add an icon to the QuickLaunch area./NoContextMenuFiles
- Don't add an Open with Code entry to the context menu for files./NoContextMenuFolders
- Dont't add an Open with Code entry to the context menu for folders./DontAddToPath
- Don't add Visual Studio Code to the system PATH.
Example: choco install vscode --params "/NoDesktopIcon /DontAddToPath"
Notes
- The package uses default install options except that it adds context menu entries and Visual Studio Code isn't started after installation.
- For disabling the auto-update functionality see the Visual Studio Code Auto Update Deactivation package.
To install Visual Studio Code, run the following command from the command line or from PowerShell:
C:\> choco install vscode
--version 1.30.2
To upgrade Visual Studio Code, run the following command from the command line or from PowerShell:
C:\> choco upgrade vscode
--version 1.30.2
Files
Hide- tools\ChocolateyInstall.ps1
Show
$ErrorActionPreference = 'Stop' $toolsPath = Split-Path $MyInvocation.MyCommand.Definition . $toolsPath\helpers.ps1 $softwareName = 'Microsoft Visual Studio Code' $version = '1.30.2' if ($version -eq (Get-UninstallRegistryKey "$softwareName").DisplayVersion) { Write-Host "VS Code $version is already installed." return } $pp = Get-PackageParameters Close-VSCode $packageArgs = @{ packageName = 'vscode' fileType = 'exe' url = 'https://az764295.vo.msecnd.net/stable/61122f88f0bf01e2ac16bdb9e1bc4571755f5bd8/VSCodeSetup-ia32-1.30.2.exe' url64bit = 'https://az764295.vo.msecnd.net/stable/61122f88f0bf01e2ac16bdb9e1bc4571755f5bd8/VSCodeSetup-x64-1.30.2.exe' softwareName = "$softwareName" checksum = '12d99ccd00e37af10e37638fa7a5287b390ce8a5d339ba30fac11ac251e8c5e3' checksumType = 'sha256' checksum64 = '5ae1173eb669c1f94d796ad12e1c2345246e2b91a3920561ce6cb70c346b6d34' checksumType64 = 'sha256' silentArgs = '/verysilent /suppressmsgboxes /mergetasks="{0}" /log="{1}\install.log"' -f (Get-MergeTasks), (Get-PackageCacheLocation) validExitCodes = @(0, 3010, 1641) } Install-ChocolateyPackage @packageArgs
- tools\helpers.ps1
Show
function Get-MergeTasks { $t = "!runCode" $t += ', ' + '!'*$pp.NoDesktopIcon + 'desktopicon' $t += ', ' + '!'*$pp.NoQuicklaunchIcon + 'quicklaunchicon' $t += ', ' + '!'*$pp.NoContextMenuFiles + 'addcontextmenufiles' $t += ', ' + '!'*$pp.NoContextMenuFolders + 'addcontextmenufolders' $t += ', ' + '!'*$pp.DontAddToPath + 'addtopath' Write-Host "Merge Tasks: $t" $t } function Close-VSCode { Get-Process code -ea 0 | ForEach-Object { $_.CloseMainWindow() | Out-Null } Start-Sleep 1 Get-Process code -ea 0 | Stop-Process #in case gracefull shutdown did not succeed, try hard kill }
Virus Scan Results
- vscode.1.30.2.nupkg (4e108fe525ee) - ## / 61 - Log in or click on link to see number of positives
- VSCodeSetup-x64-1.30.2.exe (5ae1173eb669) - ## / 69 - Log in or click on link to see number of positives
- VSCodeSetup-ia32-1.30.2.exe (12d99ccd00e3) - ## / 69 - Log in or click on link to see number of positives
Dependencies
-
- chocolatey-core.extension (≥ 1.3.3)
- dotnet4.5.2 (≥ 4.5.2.20140902)
Package Maintainer(s)
Software Author(s)
Tags
Release Notes
https://code.visualstudio.com/Updates
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Visual Studio Code 1.31.1 | 9833 | Wednesday, February 13, 2019 | approved |
Visual Studio Code 1.31.0 | 10283 | Thursday, February 7, 2019 | approved |
Visual Studio Code 1.30.2 | 30108 | Tuesday, January 8, 2019 | approved |
Visual Studio Code 1.30.1 | 17951 | Wednesday, December 19, 2018 | approved |
Visual Studio Code 1.30.0 | 8707 | Thursday, December 13, 2018 | approved |
Visual Studio Code 1.29.1 | 23984 | Friday, November 16, 2018 | approved |
Visual Studio Code 1.29.0 | 6221 | Tuesday, November 13, 2018 | approved |
Visual Studio Code 1.28.2 | 23131 | Thursday, October 18, 2018 | approved |
Visual Studio Code 1.28.1 | 7884 | Friday, October 12, 2018 | approved |
Visual Studio Code 1.28.0 | 5734 | Monday, October 8, 2018 | approved |
Discussion for the Visual Studio Code Package
Ground rules:
- This discussion is only about Visual Studio Code and the Visual Studio Code package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Visual Studio Code, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.