Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamesNK <james@newtonking.com>2012-02-12 05:08:20 +0400
committerJamesNK <james@newtonking.com>2012-02-12 05:08:20 +0400
commit446b6f0d0a0db152ddfc4ffb79dcb5a0d97f9896 (patch)
treee8e89491169388989296aeee12a2224b6dc9f402
parente2bccde9bfd733ff322a7f5ed2b097df28a7cf0b (diff)
-Fixed build to not include nested directories in NuGet package
-rw-r--r--Build/build.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/build.ps1 b/Build/build.ps1
index a2cbbb2..bb39c00 100644
--- a/Build/build.ps1
+++ b/Build/build.ps1
@@ -91,7 +91,7 @@ task Package -depends Build {
foreach ($frameworkDir in $frameworkDirs)
{
- Copy-Item -Path "$sourceDir\Newtonsoft.Json\bin\Release\$finalDir" -Destination $workingDir\NuGet\lib\$frameworkDir -recurse
+ robocopy "$sourceDir\Newtonsoft.Json\bin\Release\$finalDir" $workingDir\NuGet\lib\$frameworkDir /NP /XO
}
}
}