Reputation: 7615
My C# application uses the VB Power Pack to print. The computers that I am installing my application on do NOT have the VB Power Pack.
How can I include the appropiate libraries bundled with my application?
Upvotes: 0
Views: 1563
Reputation: 1407
I am assuming you added a reference to VB Power Pack.
Just right-click the reference, go to Properties and set Local copy to True. The referenced assemblies will be copied in your bin folder during compilation.
Upvotes: 1