0

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?

software is fun
  • 7,286
  • 18
  • 71
  • 129

1 Answers1

1

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.

Ovidiu
  • 1,407
  • 12
  • 11
  • Just another question. When I created my project I called it X. Now I want to build it and have the EXE called Y.exe. Currently I am manually renaming it to Y.exe. Is there a way to name the EXE when building? – software is fun Sep 17 '13 at 14:45
  • In your project's Properties page, go to Application tab and change the value for Assembly name to Y. – Ovidiu Sep 17 '13 at 15:14