Hello McAllister,
Thanks for your post on MSDN forum.
The project file for a setup project(.vdproj) is not documented, thus we cannot add files to a setup project using wild characters. However, Visual C# and Visual Basic project allow us to add files as contents for a project with wild characters. And setup project allows us to add contents of project to the MSI package. Then the workaround comes out, we can add all outputs from a 3rd party compiler to a Visual C# project or Visual Basic project, and then add the contents of the project to our setup project.
To add files as contents to a project with wild characters, we can try something like the following.
<ItemGroup>
<Content Include="readme.txt">
</Content>
<Content Include="MyContents\*.*"/> </ItemGroup>
More info,
http://msdn.microsoft.com/en-us/library/646dk05y.aspx Let me know if this works for you. If you have any additional question, welcome to post here.
Thanks,
Rong-Chun Zhang
MSDN Subscriber Support in Forum
If you have any feedback on our support, please contact
msdnmg@microsoft.com
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.