I have several projects in my solution, one of which has some test scripts that get copied as part of a post build rule, is there a way to run the post build rule with out doing a “rebuild only” for that project when I want them run?
Share
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 could use Custom Build Step instead of post-build event and specify some dummy non-existent Output file. In this case Custom Build Step will run on every build even if project itself is up to date.
Quote from MSDN: