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/managed | |
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/managed')
-rw-r--r-- | tests/src/managed/Compilation/project.json | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/src/managed/Compilation/project.json b/tests/src/managed/Compilation/project.json index 9212f6e460..115e56c555 100644 --- a/tests/src/managed/Compilation/project.json +++ b/tests/src/managed/Compilation/project.json @@ -2,23 +2,23 @@ "dependencies": { "Microsoft.CodeAnalysis.Compilers": "1.1.1", "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816", - "System.Collections": "4.0.10-beta-*", - "System.Collections.Concurrent": "4.0.10-beta-*", + "System.Collections": "4.0.10-beta-23127", + "System.Collections.Concurrent": "4.0.10-beta-23127", "System.Collections.Immutable": "1.1.37", - "System.Console": "4.0.0-beta-*", - "System.Dynamic.Runtime": "4.0.10-beta-*", - "System.IO": "4.0.10-beta-*", - "System.IO.FileSystem": "4.0.0-beta-*", - "System.IO.FileSystem.Primitives": "4.0.0-beta-*", - "System.Runtime": "4.0.20-beta-*", - "System.Runtime.Extensions": "4.0.10-beta-*", - "System.Runtime.Handles": "4.0.0-beta-*", - "System.Text.Encoding": "4.0.10-beta-*", - "System.Threading": "4.0.0-beta-*", - "System.Threading.Overlapped": "4.0.0-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*", - "System.Threading.Tasks.Parallel": "4.0.0-beta-*", - "System.Threading.ThreadPool": "4.0.10-beta-*" + "System.Console": "4.0.0-beta-23516", + "System.Dynamic.Runtime": "4.0.10-beta-23127", + "System.IO": "4.0.10-beta-23127", + "System.IO.FileSystem": "4.0.0-beta-23127", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23127", + "System.Runtime": "4.0.20-beta-23127", + "System.Runtime.Extensions": "4.0.10-beta-23127", + "System.Runtime.Handles": "4.0.0-beta-23127", + "System.Text.Encoding": "4.0.10-beta-23127", + "System.Threading": "4.0.0-beta-23127", + "System.Threading.Overlapped": "4.0.0-beta-23127", + "System.Threading.Tasks": "4.0.10-beta-23127", + "System.Threading.Tasks.Parallel": "4.0.0-beta-23127", + "System.Threading.ThreadPool": "4.0.10-beta-23516" }, "frameworks": { "dnxcore50": { |