I need to perform some updates on files within my project (our the output of my project) and I need to do this before the deployment package (zip file) is produced.
Is there a build target that fires between the build and packaging phases?
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.
No, there is no “BeforePackage” build target. You can use
AfterCompiletarget. A little bit more hacky will be to useGenerateDocumentationtarget for your purposes, it will come before packaging if no one has overriden ordering of targets.