Files
OpenRA/thirdparty/fetch-thirdparty-deps.ps1
Matthias Mailänder 02e1a8d5d2 fetch NUnit 2 from nuget
2014-12-26 15:40:06 +01:00

53 lines
1.6 KiB
PowerShell

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."
./nuget.exe install StyleCop.MSBuild -Version 4.7.49.0
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
}
if (!(Test-Path "MaxMind.GeoIP2.dll"))
{
echo "Fetching MaxMind.GeoIP2 from NuGet."
./nuget.exe install MaxMind.GeoIP2 -Version 2.1.0
cp MaxMind.Db.1.0.0.0/lib/net40/MaxMind.Db.* .
rmdir MaxMind.Db.1.0.0.0 -Recurse
cp MaxMind.GeoIP2.2.1.0.0/lib/net40/MaxMind.GeoIP2* .
rmdir MaxMind.GeoIP2.2.1.0.0 -Recurse
cp Newtonsoft.Json.6.0.5/lib/net40/Newtonsoft.Json* .
rmdir Newtonsoft.Json.6.0.5 -Recurse
cp RestSharp.105.0.0/lib/net4-client/RestSharp* .
rmdir RestSharp.105.0.0 -Recurse
}
if (!(Test-Path "SharpFont.dll"))
{
echo "Fetching SharpFont from NuGet."
./nuget.exe install SharpFont -Version 2.5.3
cp SharpFont.2.5.3.0/lib/net20/SharpFont* .
cp SharpFont.2.5.3.0/Content/SharpFont.dll.config .
cp SharpFont.2.5.3.0/Content/freetype6.dll ./windows/
rmdir SharpFont.2.5.3.0 -Recurse
}
if (!(Test-Path "nunit.framework.dll"))
{
echo "Fetching NUnit from NuGet."
./nuget.exe install NUnit -Version 2.6.4
cp NUnit.2.6.4/lib/nunit.framework* .
rmdir NUnit.2.6.4 -Recurse
}