I’m trying to make an install that puts a copy of the same files in multiple places…
is there a simple way to do this?
eg. if I wanted to put a.txt b.txt c.txt into all of the following directories :-
.\Blah\
.\Txts\
.\Examples\
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.
Simply create multiple components which reference the same file, but install it to different locations. The only gotcha is that you cannot use two
<File Source="somefile"/>elements referencing the same file because they will get the same auto-generated ID. Explicitly give the file elements different IDs to avoid that problem.