A dependency is not been resolved in InstallShield.
My environment is VS 2010 and InstallShield Limited Edition. I have a project that I’m trying to deploy using an InstallShield Limited Edition project. The project to deploy has several references added via NuGet:
<packages>
<package id="Common.Logging" version="2.0.0" />
<package id="CsvHelper" version="1.4.0" />
<package id="log4net" version="1.2.10" />
<package id="NServiceBus" version="3.2.1" />
<package id="NServiceBus.Host" version="3.2.1" />
<package id="Quartz" version="2.0.1" />
</packages>
In the Setup project I added the primary output of the project (Step 2 Specify Application Data / Files). All dependencies are added (right click on the primary output -> dependencies from scan at build) except one. The Quartz.dll is missing from that list and from the files that are installed.
How can I fix this so all dependencies are resolved and added to the setup?
I don’t want to add the Quartz.dll manually because its location will change when a new version is available via NuGet.
BTW: Quartz.dll is a project reference.