From b61014311b700e3be6816f1f4430e84468d6a608 Mon Sep 17 00:00:00 2001 From: Ayende Rahien Date: Thu, 22 Mar 2012 15:17:04 +0200 Subject: [PATCH] Fixing an issue with embedded not containing the binaries --- default.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/default.ps1 b/default.ps1 index 95319dbf8f7d..133358783f2f 100644 --- a/default.ps1 +++ b/default.ps1 @@ -505,6 +505,10 @@ task CreateNugetPackage { Copy-Item "$_" $build_dir\NuPack\lib\sl50 Copy-Item "$_" $build_dir\NuPack-Client\lib\sl50 } + + $all_client_dlls | ForEach-Object { + Copy-Item "$_" $build_dir\NuPack-Embedded\lib\net40 + } # Remove files that are obtained as dependencies Remove-Item $build_dir\NuPack\lib\*\Newtonsoft.Json.* -Recurse