feat: GitDiffMargin for VS2012 1.0

This commit is contained in:
Iristyle
2013-06-08 00:12:50 -04:00
parent 0e77b21d6f
commit dbb6e8750c
2 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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
}