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

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -