Setup creation problem
-
Hi! I've developed some c# app which uses some external libraries such as magic (docking manager) and crystal reports. The app works fine, so I wanted to create setup program for it. I've added msi setup project to my solution and pointed external merge modules such as crystal licensing etc. When I try to build my setup, there is an error thrown during msi file creation: ERROR: Could not find file 'G:\DOCUME~1\hgs\USTAWI~1\Temp\VSDB.tmp\reportengine.A95D0BB4_0582_442D_B456_D295EAEB7628\Program Files\Common Files\Crystal Decisions\2.0\bin\crxf_html_res_en.dll' 'Interface is not registered.' The file crxf* is included in msm files, so why the compiler needs it at external location? When I decided to remove crystal libraries (for testing purposes), similar error was thrown on Magic.dll which is pointed directly in project references. When I've excluded all of dependent libraries, the error thrown was: ERROR: Could not find file 'E:\praca\23.09\17.30\WindowsApplication21\obj\Release\WindowsApplication21.exe' ''Interface is not registered.' WindowsApplication21.exe is my project output file. What is going wrong? Did I miss something? thanks h.