So my issue is pretty simple. I have some files that I want to be copied to the build output directory whether it is a debug build or a release publish. All of the informati
xcopy "$(ProjectDir)Xml" "$(ProjectDir)$(OutDir)Xml" /S /F /I /R /Y
or
copy /Y "$(ProjectDir)MyXml.xml" "$(ProjectDir)$(OutDir)Xml"