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
if $(ConfigurationName) == Debug
my working thing:
echo $(ProjectDir)bin\Release
echo $(ProjectDir)bin\Release
non working:
if $(ConfigurationName) == Debug (echo $(ProjectDir)bin\Release)
if $(ConfigurationName) == Debug (echo $(ProjectDir)bin\Release)