安装项目没有调用所有.dll程序集文件并抛出异常

Setup project does not call all the .dll assembly file and throw an exception

我正在尝试使用 visual studio 2015 为我的图像处理项目制作安装项目。
在我的项目中,主要使用的库是 Aforge 和 emug cv 库。

将项目制作成设置文件时的项目输出

检测到的依赖项是

安装我的安装项目后的安装文件夹

之前将其作为安装项目的主项目工作正常,没有任何异常,但在将其转换为安装项目后,此异常被触发

这意味着 emug cv 库未在输出目录中创建或主要问题是什么!

任何帮助
提前致谢

我找到了解决问题的方法。

解决方法是:

在做任何事情之前必须先注册所有使用的程序集文件(DLLS)。

按照以下步骤操作:

1.After adding the "Setup Project" to the solution,
2.Right-click on the "Setup Project", go on "Add" then click "Assembly" then
3.Browse for all the used assembly files (DLLS) and add them to the "Setup 
  Project" then 
4.After adding the assemblies files, right-click on them in "Solution 
  Explorer" and click "Properties" then in the properties of DLLS
5.Set the "Register" property to "vsdraCOM".

谢谢