diff options
| author | ScottIsAFool <scottisafool@live.co.uk> | 2013-02-27 20:46:49 +0000 |
|---|---|---|
| committer | ScottIsAFool <scottisafool@live.co.uk> | 2013-02-27 20:47:34 +0000 |
| commit | acfca8e65a6be23803de1465b6c6bf9d2f1114a8 (patch) | |
| tree | 447c23bb57bcdf083c0e672389dc031c50fbcb01 /MediaBrowser.Common | |
| parent | ff4ee7ab9c41f9756e1db6f25f701c8ca69cecf2 (diff) | |
Dlls only copied to nuget folder when in Release configuration
Diffstat (limited to 'MediaBrowser.Common')
| -rw-r--r-- | MediaBrowser.Common/MediaBrowser.Common.csproj | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Common/MediaBrowser.Common.csproj b/MediaBrowser.Common/MediaBrowser.Common.csproj index a13786e31..30718ab4b 100644 --- a/MediaBrowser.Common/MediaBrowser.Common.csproj +++ b/MediaBrowser.Common/MediaBrowser.Common.csproj @@ -126,7 +126,9 @@ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(SolutionDir)\.nuget\nuget.targets" /> <PropertyGroup> - <PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i</PostBuildEvent> + <PostBuildEvent>if $(ConfigurationName) == Release ( +xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i +)</PostBuildEvent> </PropertyGroup> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. |
