I am creating my first nuget package. I added a dependency on a version that is not the latest version. However, I do not want to update the latest version of this dependency. Can I instruct him to use a specific version?
<dependencies> <dependency id="NHibernate" version="3.2.0.3001" /> </dependencies>
When I install the package, I see the following:
Attempting to resolve dependency 'NHibernate (≥ 3.2.0.3001)'.
This creates the following when I install the package.
<packages> <package id="Iesi.Collections" version="3.2.0.4000" /> <package id="NHibernate" version="3.2.0.4000" /> </packages>
I would really like to see something like this: An attempt to resolve the dependency "NHibernate (3.2.0.3001)".
devlife Oct. 14 '11 at 19:02 2011-10-14 19:02
source share