| Name | Description |
|---|---|
| kisstkondoros.vscode-codemetrics | Computes complexity in TypeScript / JavaScript files |
| MS-CST-E.vscode-devskim | Find security mistakes as the code is authored, and fix them with a mouse click |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try { | |
| $packageName = 'VisualStudio2012WDX' | |
| $setupFile="$env:temp\wdexpress_full.exe" | |
| Get-ChocolateyWebFile "$packageName" "$setupFile" 'http://go.microsoft.com/?linkid=9816758' -checksum '6EEDE869379658DCC025E0FCD17BC2F8' -checksumType 'md5' | |
| Install-ChocolateyInstallPackage "$packageName" 'exe' "/Passive /NoRestart /Log $env:temp\wdexpress_full.log" "$setupFile" | |
| Write-ChocolateySuccess "$packageName" | |
| } catch { | |
| Write-ChocolateyFailure "$packageName" "$($_.Exception.Message)" | |
| throw | |
| } |