fetch ICSharpCode.SharpZipLib from nuget
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -23,6 +23,7 @@ mods/*/*.mdb
|
|||||||
/*.mdb
|
/*.mdb
|
||||||
/*.exe
|
/*.exe
|
||||||
thirdparty/StyleCop*
|
thirdparty/StyleCop*
|
||||||
|
thirdparty/ICSharpCode.SharpZipLib.dll*
|
||||||
|
|
||||||
# backup files by various editors
|
# backup files by various editors
|
||||||
*~
|
*~
|
||||||
|
|||||||
BIN
thirdparty/ICSharpCode.SharpZipLib.dll
vendored
BIN
thirdparty/ICSharpCode.SharpZipLib.dll
vendored
Binary file not shown.
5
thirdparty/README
vendored
5
thirdparty/README
vendored
@@ -10,11 +10,6 @@ FuzzyLogicLibrary.dll
|
|||||||
Version 1.2.0
|
Version 1.2.0
|
||||||
GPL v2.0 license
|
GPL v2.0 license
|
||||||
|
|
||||||
ICSharpCode.SharpZipLib.dll
|
|
||||||
http://icsharpcode.github.io/SharpZipLib/
|
|
||||||
Version 0.86
|
|
||||||
GPL 2.0 with GNU Classpath exception
|
|
||||||
|
|
||||||
MaxMind.Db.dll
|
MaxMind.Db.dll
|
||||||
MaxMind.GeoIP2.dll
|
MaxMind.GeoIP2.dll
|
||||||
Newtonsoft.Json.dll
|
Newtonsoft.Json.dll
|
||||||
|
|||||||
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."
|
echo "Fetching NuGet."
|
||||||
Invoke-WebRequest "http://nuget.org/nuget.exe" -OutFile "nuget.exe"
|
Invoke-WebRequest "http://nuget.org/nuget.exe" -OutFile "nuget.exe"
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(Test-Path "StyleCop.dll"))
|
if (!(Test-Path "StyleCop.dll"))
|
||||||
{
|
{
|
||||||
echo "Fetching StyleCop files from NuGet."
|
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 .
|
cp StyleCop.MSBuild.4.7.49.0/tools/StyleCop*.dll .
|
||||||
rmdir StyleCop.MSBuild.4.7.49.0 -Recurse
|
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
|
||||||
|
}
|
||||||
7
thirdparty/fetch-thirdparty-deps.sh
vendored
7
thirdparty/fetch-thirdparty-deps.sh
vendored
@@ -5,3 +5,10 @@ if [ ! -f StyleCop.dll ]; then
|
|||||||
cp ./StyleCop.MSBuild.4.7.49.0/tools/StyleCop*.dll .
|
cp ./StyleCop.MSBuild.4.7.49.0/tools/StyleCop*.dll .
|
||||||
rm -rf StyleCop.MSBuild.4.7.49.0
|
rm -rf StyleCop.MSBuild.4.7.49.0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! -f ICSharpCode.SharpZipLib.dll ]; then
|
||||||
|
echo "Fetching ICSharpCode.SharpZipLib from nuget"
|
||||||
|
nuget install SharpZipLib -Version 0.86.0
|
||||||
|
cp ./SharpZipLib.0.86.0/lib/20/ICSharpCode.SharpZipLib.dll .
|
||||||
|
rm -rf SharpZipLib.0.86.0
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user