Removed style cop related shade files

This commit is contained in:
Kiran Challa 2015-09-15 11:45:32 -07:00
parent 22952e1806
commit 5008e2743d
2 changed files with 0 additions and 35 deletions

View File

@ -1,11 +0,0 @@
@{/*
stylecop-run
Run StyleCop for your project.
projectFile=''
Required. Path to the test project.json to use.
*/}
exec program='bin\_stylecop\bin\StyleCop.KRunner.exe' commandline='${projectFile}'

View File

@ -1,24 +0,0 @@
@{/*
stylecop-setup
Downloads packages to prepare for running stylecop
*/}
var packagesDirectory = 'bin\_stylecop'
var binariesDirectory = 'bin\_stylecop\bin'
nuget-install package='StyleCop.KRunner' outputDir='${packagesDirectory}' extra='-pre -ExcludeVersion'
nuget-install package='StyleCop.KRules' outputDir='${packagesDirectory}' extra='-pre -ExcludeVersion'
@{
var binaries =
Files.Include(Path.Combine(packagesDirectory, "*", "*net45*", "*.*"))
.Concat(Files.Include(Path.Combine(packagesDirectory, "*lib*", "*.dll")));
Directory.CreateDirectory(binariesDirectory);
foreach(var file in binaries)
{
File.Copy(file, Path.Combine(binariesDirectory, Path.GetFileName(file)), true);
}
}