From acfca8e65a6be23803de1465b6c6bf9d2f1114a8 Mon Sep 17 00:00:00 2001 From: ScottIsAFool Date: Wed, 27 Feb 2013 20:46:49 +0000 Subject: [PATCH] Dlls only copied to nuget folder when in Release configuration --- .../MediaBrowser.ApiInteraction.Portable.csproj | 4 +++- .../MediaBrowser.ApiInteraction.csproj | 4 +++- MediaBrowser.ClickOnce/MediaBrowser.ClickOnce.csproj | 4 +++- .../MediaBrowser.Common.Implementations.csproj | 4 +++- MediaBrowser.Common/MediaBrowser.Common.csproj | 4 +++- MediaBrowser.Controller/MediaBrowser.Controller.csproj | 4 +++- MediaBrowser.IsoMounter/MediaBrowser.IsoMounter.csproj | 6 ++++-- MediaBrowser.Model/MediaBrowser.Model.csproj | 4 +++- 8 files changed, 25 insertions(+), 9 deletions(-) diff --git a/MediaBrowser.ApiInteraction.Portable/MediaBrowser.ApiInteraction.Portable.csproj b/MediaBrowser.ApiInteraction.Portable/MediaBrowser.ApiInteraction.Portable.csproj index aaf5a3bd8e..22b1a030eb 100644 --- a/MediaBrowser.ApiInteraction.Portable/MediaBrowser.ApiInteraction.Portable.csproj +++ b/MediaBrowser.ApiInteraction.Portable/MediaBrowser.ApiInteraction.Portable.csproj @@ -98,7 +98,9 @@ - xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i + if $(ConfigurationName) == Release ( +xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i +)