Reputation: 16685
I have a C# project, built using VS2008. It has a number of third party dependencies. However, when I create a set-up project for it, the “Detected Dependencies” folder is empty. How do I either force it to detect these dependencies, or manually add them?
Upvotes: 0
Views: 548
Reputation: 45071
Upvotes: 1
Reputation: 1508
You have to add the output from another project, or some other assembly (could be an executable), and then the setup project will automatically detect the dependencies and will add the corresponding assemblies.
Upvotes: 2