From 42e9d41b338efa1f25d6606e45b4205e72333f38 Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Sun, 18 Aug 2013 17:14:39 -0700 Subject: [PATCH] re-added missing test dlls to test package --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index e399c7702..0dc2bcfbe 100644 --- a/build.ps1 +++ b/build.ps1 @@ -33,7 +33,6 @@ Function CleanFolder($path) get-childitem $path -File -Filter *.transform -Recurse | foreach ($_) {remove-item $_.fullname} - get-childitem $path -File -Filter Newtonsoft.Json.* -Recurse | foreach ($_) {remove-item $_.fullname} Write-Host Removing FluentValidation.Resources files get-childitem $path -File -Filter FluentValidation.resources.dll -recurse | foreach ($_) {remove-item $_.fullname} @@ -50,6 +49,7 @@ Function CleanFolder($path) Function AddJsonNet() { + get-childitem $outputFolder -File -Filter Newtonsoft.Json.* -Recurse | foreach ($_) {remove-item $_.fullname} Copy-Item .\packages\Newtonsoft.Json.5.*\lib\net35\*.* -Destination $outputFolder }