user3271698
user3271698

Reputation: 145

After create Winform application with devexpress, what i need to install on the machine that run this application?

I create Winforms application with devexpress and after take this application into another machine without devexpress the application cannot start, i need to install something else on th running machine ?

Upvotes: 0

Views: 1010

Answers (1)

Seany84
Seany84

Reputation: 5596

  1. There is no need to redistribute our XML files. They are only used at design time.
  2. You should redistribute those DLLs which are referenced by your application. By default, all our DLLs are located in the "\DevExpress XXXX.X\Components\Bin" folder ("\DevExpress XXXX.X\Components\Sources\DevExpress.DLL\" for versions prior 11.2).
  3. When installing your application, you can place our DLLs in the same folder where your distributed EXE is located.
  4. Another approach is to register them in the Global Assembly Cache (GAC) using the Gacutil tool.

Note: Distribution of our design DLLs which end with "Design.dll" is prohibited.

reference: http://www.devexpress.com/Support/Center/Question/Details/A4

Upvotes: 1

Related Questions