Script = BatchFile ... wer sich also noch mit DOS und dem COPY-Befehl auskennt......
Ich weiß jetzt nicht, ob die Makros dort funktionieren, aber eventuell so
Code:
COPY "$PATH($PROJECT)\Cool.mp3" "$PATH($EXENAME)\"
oder man nimmt notfalls einfach hardgecodete absolute Pfade
Code:
COPY "D:\Projekte\xyz\Cool.mp3" "D:\Projekte\xyz\$(Config)\$(Platform)\"
oder geht einfach davon auß, daß das aktuelle Arbeitsverzeichnis dem Projektverzeichnis entspricht (falls die Annahme stimmt)
Code:
COPY ".\Cool.mp3" ".\$(Config)\$(Platform)\"