Add --check-code-style utility command.

This commit is contained in:
Paul Chote
2014-12-21 10:31:27 +13:00
committed by Matthias Mailänder
parent ecd4479807
commit f4055dae53
8 changed files with 101 additions and 8 deletions

7
thirdparty/fetch-thirdparty-deps.sh vendored Executable file
View File

@@ -0,0 +1,7 @@
#!/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