diff options
author | Davis Goodin <dagood@microsoft.com> | 2016-03-01 17:18:01 -0600 |
---|---|---|
committer | Davis Goodin <dagood@microsoft.com> | 2016-03-02 12:32:03 -0600 |
commit | 89e6d00b951637e4961dd91b9e1cbcd8b24b0514 (patch) | |
tree | e05b60dfad5d613150c56174fb531d2c5aa69e9e /tests/src/Interop | |
parent | c62698eccc4ac1e74a1990d232cf3a3845d31e44 (diff) | |
download | coreclr-89e6d00b951637e4961dd91b9e1cbcd8b24b0514.tar.gz coreclr-89e6d00b951637e4961dd91b9e1cbcd8b24b0514.tar.bz2 coreclr-89e6d00b951637e4961dd91b9e1cbcd8b24b0514.zip |
Change all dependency versions to match what was actually restored in the checked-in lockfiles.
Used a tool to look at lockfiles: when a dependency did not have a corresponding downloaded package, found the latest version that was downloaded and changed the project.json to match. This fixes any packages that don't exist (such as some beta-23302) and floating dependencies (*).
Diffstat (limited to 'tests/src/Interop')
-rw-r--r-- | tests/src/Interop/ReversePInvoke/Marshalling/project.json | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/src/Interop/ReversePInvoke/Marshalling/project.json b/tests/src/Interop/ReversePInvoke/Marshalling/project.json index 0976b60932..14c11d232b 100644 --- a/tests/src/Interop/ReversePInvoke/Marshalling/project.json +++ b/tests/src/Interop/ReversePInvoke/Marshalling/project.json @@ -1,28 +1,28 @@ { "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816", - "System.Collections": "4.0.10-beta-23302", + "System.Collections": "4.0.10", "System.Collections.NonGeneric": "4.0.1-beta-23302", "System.Collections.Specialized": "4.0.1-beta-23302", "System.ComponentModel": "4.0.1-beta-23302", "System.Console": "4.0.0-beta-23302", "System.Diagnostics.Process": "4.0.0-beta-23302", - "System.Globalization": "4.0.10-beta-23302", - "System.Globalization.Calendars": "4.0.0-beta-23302", - "System.IO": "4.0.10-beta-23302", - "System.IO.FileSystem": "4.0.0-beta-23302", - "System.IO.FileSystem.Primitives": "4.0.0-beta-23302", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", "System.Linq": "4.0.1-beta-23302", "System.Linq.Queryable": "4.0.1-beta-23302", - "System.Reflection": "4.0.10-beta-23302", - "System.Reflection.Primitives": "4.0.0-beta-23302", - "System.Runtime": "4.0.20-beta-23302", - "System.Runtime.Extensions": "4.0.10-beta-23302", - "System.Runtime.Handles": "4.0.0-beta-23302", - "System.Runtime.InteropServices": "4.0.20-beta-23302", + "System.Reflection": "4.0.10", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", "System.Runtime.Loader": "4.0.0-beta-23302", - "System.Text.Encoding": "4.0.10-beta-23302", - "System.Threading": "4.0.10-beta-23302", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", "System.Xml.ReaderWriter": "4.0.11-beta-23302", "System.Xml.XDocument": "4.0.11-beta-23302", "System.Xml.XmlDocument": "4.0.1-beta-23302", |