From 486bb9f0ef4d9fee4b410caad3628adb78abb3af Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 6 Aug 2017 14:50:03 +0200 Subject: [PATCH] Make content DLLs be copied via post build events instead --- Content.Client/Content.Client.csproj | 24 ++++++++++++++++++++++-- Content.Server/Content.Server.csproj | 24 ++++++++++++++++++++++-- engine | 2 +- 3 files changed, 45 insertions(+), 5 deletions(-) diff --git a/Content.Client/Content.Client.csproj b/Content.Client/Content.Client.csproj index 9afcc2f905..d4dc29a563 100644 --- a/Content.Client/Content.Client.csproj +++ b/Content.Client/Content.Client.csproj @@ -18,7 +18,7 @@ This copies all dependencies, but on the plus side it's automatically located in the right place. --> - ..\bin\Client\Assemblies\ + ..\bin\Content.Client\ DEBUG;TRACE full x86 @@ -30,7 +30,7 @@ This copies all dependencies, but on the plus side it's automatically located in the right place. --> - ..\bin\Client\Assemblies\ + ..\bin\Content.Client\ TRACE true pdbonly @@ -75,4 +75,24 @@ + + + + + if not exist "..\Client\Assemblies" ( + mkdir ..\Client\Assemblies\ + ) + copy Content.* ..\Client\Assemblies\ + + + + + + + mkdir -p ../Client/Assemblies/ + cp Content.* ../Client/Assemblies/ + + + + diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index 696d93e37a..13f5203249 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -18,7 +18,7 @@ This copies all dependencies, but on the plus side it's automatically located in the right place. --> - ..\bin\Server\Assemblies\ + ..\bin\Content.Server\ DEBUG;TRACE full x86 @@ -30,7 +30,7 @@ This copies all dependencies, but on the plus side it's automatically located in the right place. --> - ..\bin\Server\Assemblies\ + ..\bin\Content.Server\ TRACE true pdbonly @@ -71,4 +71,24 @@ + + + + + if not exist "..\Server\Assemblies" ( + mkdir ..\Server\Assemblies\ + ) + copy Content.* ..\Server\Assemblies\ + + + + + + + mkdir -p ../Server/Assemblies/ + cp Content.* ../Server/Assemblies/ + + + + diff --git a/engine b/engine index 51b13c47de..6af8422e21 160000 --- a/engine +++ b/engine @@ -1 +1 @@ -Subproject commit 51b13c47de700b2687a45a7b54c1451395b97305 +Subproject commit 6af8422e21805fb311a8526374815d417ce0dd7d