【发布时间】:2016-11-23 08:02:07
【问题描述】:
我有一个 Visual Studio 2015 项目,我想将它打包到安装程序中。我搜索了一些选项,最简单的应该是使用 Visual Studio Installer 插件。我看过几个教程(虽然这个过程非常简单),但我每次都卡在同一个部分。
我在这个项目中使用的一个DLL是破坏Installer的构建过程(正常项目的构建过程很好)。我收到以下消息:
3>------ Rebuild All started: Project: MountainTop, Configuration: Debug ------
ERROR: Unable to update the dependencies of the project. The dependencies for the object 'FestaJsonConnectorSupportDotNet.dll' cannot be determined.
不知道为什么Visual Studio 找不到这个依赖,但仍然可以编译正常的项目。另外,我试图从安装程序项目的检测到的依赖项中排除这个特定的 DLL,但是在构建它时仍然试图获取这个特定的库依赖项。
知道为什么我在使用这个特定的库时遇到问题以及如何绕过它(也许创建一个没有它的安装程序并在安装后手动将其粘贴到程序文件夹中)?
【问题讨论】:
标签: c# visual-studio dll dependencies installation