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

12
thirdparty/fetch-thirdparty-deps.ps1 vendored Normal file
View File

@@ -0,0 +1,12 @@
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
}