feat(xunit.vs2012): build / release 0.9.5

This commit is contained in:
Iristyle
2013-04-17 15:23:38 -04:00
parent 50b02c4215
commit 4d925b1230
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
try {
$package = 'xUnit.vs2012'
$params = @{
PackageName = $package;
VsixUrl = 'http://visualstudiogallery.msdn.microsoft.com/463c5987-f82b-46c8-a97e-b1cde42b9099/file/66837/8/xunit.runner.visualstudio.vsix';
VsVersion = 11; # VS 2012
}
Install-ChocolateyVsixPackage @params
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}