From c49f5a15e3a1e8027d413f843833b7fcffeb9b9e Mon Sep 17 00:00:00 2001 From: bobeaton Date: Wed, 1 May 2024 15:35:53 -0500 Subject: [PATCH] since we put debug builds directly in output folder tree (so we have all the required bits to debug w/ (e.g. the "EC\Plugins" subfolder), then don't try to copy it to itself as a Post-build event when "$(ConfigurationName)" == "Debug" --- src/SilConvertersXML/SilConvertersXML.csproj | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/SilConvertersXML/SilConvertersXML.csproj b/src/SilConvertersXML/SilConvertersXML.csproj index a66b453..383450f 100644 --- a/src/SilConvertersXML/SilConvertersXML.csproj +++ b/src/SilConvertersXML/SilConvertersXML.csproj @@ -230,7 +230,12 @@ --> - xcopy /y "$(TargetDir)*.*" $(SolutionDir)output\$(PlatformName)\$(ConfigurationName) + IF "$(ConfigurationName)" == "Debug" goto nocopy + +xcopy /y "$(TargetDir)*.*" $(SolutionDir)output\$(PlatformName)\$(ConfigurationName) + +:nocopy +