Files
OpenRA/thirdparty/fetch-thirdparty-deps.sh
2014-12-25 10:18:20 +01:00

7 lines
226 B
Bash
Executable File

#!/bin/bash
if [ ! -f StyleCop.dll ]; then
echo "Fetching StyleCop files from nuget"
nuget install StyleCop.MSBuild -Version 4.7.49.0
cp ./StyleCop.MSBuild.4.7.49.0/tools/StyleCop*.dll .
rm -rf StyleCop.MSBuild.4.7.49.0
fi