Files
ChocolateyPackages/GitDiffMargin.vs2012/tools/chocolateyInstall.ps1
2013-06-08 00:15:26 -04:00

17 lines
411 B
PowerShell

try {
$package = 'GitDiffMargin.vs2012'
$params = @{
PackageName = $package;
VsixUrl = 'http://visualstudiogallery.msdn.microsoft.com/cf49cf30-2ca6-4ea0-b7cc-6a8e0dadc1a8/file/101267/1/GitDiffMargin.vsix';
VsVersion = 11; # VS 2012
}
Install-ChocolateyVsixPackage @params
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}