I want to copy my dll generated in bin folder to a file location on Post Build Event in vs2010.
Can some one help me on that.
Thanks
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.
You want to add something like:
to you post-build event on the Build Events tab in the project properties page. The
/Ywill stop it from prompting you to confirm an overwrite.If you also need to copy the
.pdbfile, you will need something like this:You can see more substitution tokens (the $XXX values) by clicking the Edit Post-build… button in the properties tab and then expanding the Macros>> button.