Force nuget to always update a dependency -


i wish ensure nuget package updates latest version of dependent package. there anyway can this?

my current nuspec looks like

<?xml version="1.0"?> <package>   <metadata>     <id>engine</id>     <version>$version$</version>     <title>engine</title>     <authors>agresearch</authors>     <owners>overseer </owners>     <requirelicenseacceptance>false</requirelicenseacceptance>     <description>my budget model</description>     <releasenotes>release model</releasenotes>     <copyright>copyright 2014</copyright>     <tags>overseer engine</tags>     <dependencies>       <dependency id="overseerengine.schema" version="" />       <dependency id="rezare.lib" version="1.0.23.2" />     </dependencies>   </metadata>   <files>     <file src="overseerengine.dll" target="lib\net40\overseerengine.dll" />     <file src="ovrfileimport.dll" target="content" />      </files> </package> 

it overseerengine.schema package wish updated (if update available) whenever package is.

currently there not automated way this. user has manually update package using console or update tab of manage nuget packages dialog.


Comments

Popular posts from this blog

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -