C#C
C#4y ago
Binto86

Post build event error [Answered]

this is not really c# question, but i am trying to setup postbuild event with my project rn it only echos the project folder. it works fine until i add if $(ConfigurationName) == Debug
my working thing:
echo $(ProjectDir)bin\Release
non working:
if $(ConfigurationName) == Debug 
(echo $(ProjectDir)bin\Release)

error:
Error MSB3073 The command "if Debug == Debug
Was this page helpful?