We have a file structure with multiple files and folders. I a ma total newb to the wix toolset and not quite sure, how to include all of these files and keep the directory structure. I know, that I can add files like this:
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component Id="ProductComponent">
<File Id="FILE_InstallMeTXT" Source="InstallMe.txt" KeyPath="yes"/>
</Component>
</ComponentGroup>
But do I have to do this for every single file (we have > 200 files).
Kind regards!