Skip to content

Commit 773a505

Browse files
committed
Pin dependencies
The new version of NuGet can now be configured to install the latest version of dependencies, instead of the old default to install the lowest version. I've updated our NuGet package spec to set an upper limit on our dependencies to account for this new behavior.
1 parent 354061f commit 773a505

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/corelib/corelib.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<tags>openstack</tags>
1616
<dependencies>
1717
<group targetFramework="4.5">
18-
<dependency id="Newtonsoft.Json" version="6.0.4" />
19-
<dependency id="Flurl.Http.Signed" version="0.6.2.2015062601" />
20-
<dependency id="Marvin.JsonPatch.Signed" version="0.7.0" />
18+
<dependency id="Newtonsoft.Json" version="[6.0.1,7.0)" />
19+
<dependency id="Flurl.Http.Signed" version="[0.6.2.2015062601, 0.7)" />
20+
<dependency id="Marvin.JsonPatch.Signed" version="[0.7.0]" />
2121
</group>
2222
</dependencies>
2323
</metadata>

0 commit comments

Comments
 (0)