fetch ICSharpCode.SharpZipLib from nuget
This commit is contained in:
9
thirdparty/fetch-thirdparty-deps.ps1
vendored
9
thirdparty/fetch-thirdparty-deps.ps1
vendored
@@ -3,6 +3,7 @@ if (!(Test-Path "nuget.exe"))
|
||||
echo "Fetching NuGet."
|
||||
Invoke-WebRequest "http://nuget.org/nuget.exe" -OutFile "nuget.exe"
|
||||
}
|
||||
|
||||
if (!(Test-Path "StyleCop.dll"))
|
||||
{
|
||||
echo "Fetching StyleCop files from NuGet."
|
||||
@@ -10,3 +11,11 @@ if (!(Test-Path "StyleCop.dll"))
|
||||
cp StyleCop.MSBuild.4.7.49.0/tools/StyleCop*.dll .
|
||||
rmdir StyleCop.MSBuild.4.7.49.0 -Recurse
|
||||
}
|
||||
|
||||
if (!(Test-Path "ICSharpCode.SharpZipLib.dll"))
|
||||
{
|
||||
echo "Fetching ICSharpCode.SharpZipLib from NuGet."
|
||||
./nuget.exe install SharpZipLib -Version 0.86.0
|
||||
cp SharpZipLib.0.86.0/lib/20/ICSharpCode.SharpZipLib.dll .
|
||||
rmdir SharpZipLib.0.86.0 -Recurse
|
||||
}
|
||||
Reference in New Issue
Block a user