Support using NUnit.Runners NuGet package for make nunit

This commit is contained in:
atlimit8
2015-07-31 18:01:18 -05:00
parent bbf96141ae
commit 726bf1c8a9
3 changed files with 34 additions and 6 deletions

View File

@@ -78,6 +78,16 @@ if [ ! -f nunit.framework.dll ]; then
rm -rf NUnit
fi
if [ ! -f nunit-console.exe ]; then
echo "Fetching NUnit.Runners from NuGet"
get NUnit.Runners 2.6.4
cp ./NUnit.Runners/tools/nunit-console.exe .
chmod +x nunit-console.exe
cp ./NUnit.Runners/tools/nunit-console.exe.config .
cp -R ./NUnit.Runners/tools/lib .
rm -rf NUnit.Runners
fi
if [ ! -f Mono.Nat.dll ]; then
echo "Fetching Mono.Nat from NuGet"
get Mono.Nat 1.2.21
@@ -107,4 +117,4 @@ if [ ! -f SmarIrc4net.dll ]; then
get SmartIrc4net 0.4.5.1
cp ./SmartIrc4net/lib/net40/SmarIrc4net* .
rm -rf SmartIrc4net
fi
fi