How do I get the “Copy to Output Directory” property for content files in a C++/CLI Windows Forms Project?

Edit: I am presently using the post-build event to copy my content files.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In the projects property pages, use the post build events to trigger a bat or command file to copy the file(s) to the output directory.
See here MSDN article on Build Events
Edit
Have you checked out this question Visual studio custom build step rule?
Sounds like it might work for you, setup a custom build step (i.e. file copy) and associate it with the file types of your custom content files.
Then when you add another file you don’t need to modify the post build step.
I don’t do much C++ any more and I didn’t know you could do this, nice to know it’s there though.
Hope this helps,