Skip to content

Commit 33e5de2

Browse files
authored
Update install-vsix-appveyor.ps1
1 parent 33acde1 commit 33e5de2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

install-vsix-appveyor.ps1

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
$vsixPath = "$($env:USERPROFILE)\nanoFramework.Tools.VS2017.Extension.vsix"
22
(New-Object Net.WebClient).DownloadFile('https://marketplace.visualstudio.com/_apis/public/gallery/publishers/vs-publisher-1470366/vsextensions/nanoFrameworkVS2017Extension/0/vspackage', $vsixPath)
33
"`"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VSIXInstaller.exe`" /q /a $vsixPath" | out-file ".\install-vsix.cmd" -Encoding ASCII
4-
& .\install-vsix.cmd
4+
5+
'Installing nanoFramework VS extension ...' | Write-Host -ForegroundColor White -NoNewline
6+
7+
& .\install-vsix.cmd > $null
8+
9+
'OK' | Write-Host -ForegroundColor Green

0 commit comments

Comments
 (0)