-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get 15231 errors when building on Linux Ubuntu #14727
Comments
Did you see any errors regarding package restore? It looks like it can't find System.Runtime (at least). Anyone building on Linux more familiar with this? @ellismg @stephentoub |
@JeremyKuhne or @akoeplinger might have a idea. |
Yeah, I see it as well, it started happening recently. If you compare the arguments passed to csc there's a difference (first line is Windows, second line is Linux):
I think the root cause is that the lockfile format changed (we're using a newer version of DNX on Mono and it says @ericstj does that sound reasonable? |
Yeah, for some reason it thinks the lock file is invalid then when it restores it is finding different packages. Can you diff the lock files to see what it decided to change? The interesting part will be at the very end of the lock file where it updates the project file dependency list. |
@ericstj I think the main reason is the change from --- a/src/Microsoft.CSharp/src/project.lock.json
+++ b/src/Microsoft.CSharp/src/project.lock.json
@@ -1,393 +1,377 @@
{
"locked": true,
- "version": -9997,
+ "version": -9996,
"targets": {
"DNXCore,Version=v5.0": {
- "System.Collections/4.0.10-beta-23008": {
+ "System.Collections/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.20-beta-23008"
- },
- "compile": [
- "ref/any/System.Collections.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Collections.dll"
- ]
+ "System.Runtime": "4.0.20-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
},
- "System.Diagnostics.Debug/4.0.10-beta-23008": {
+ "System.Diagnostics.Debug/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Diagnostics.Debug.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Diagnostics.Debug.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
},
- "System.Diagnostics.Tools/4.0.0-beta-23008": {
+ "System.Diagnostics.Tools/4.0.0-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Diagnostics.Tools.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Diagnostics.Tools.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
+ }
},
- "System.Dynamic.Runtime/4.0.0-beta-23008": {
+ "System.Dynamic.Runtime/4.0.0-beta-23011": {
"dependencies": {
- "System.Linq.Expressions": "4.0.0-beta-23008",
- "System.ObjectModel": "4.0.0-beta-23008",
- "System.Reflection": "4.0.0-beta-23008",
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Dynamic.Runtime.dll"
- ]
+ "System.Linq.Expressions": "4.0.0-beta-23011",
+ "System.ObjectModel": "4.0.0-beta-23011",
+ "System.Reflection": "4.0.0-beta-23011",
+ "System.Runtime": "4.0.0-beta-23011"
+ }
},
- "System.Globalization/4.0.10-beta-23008": {
+ "System.Globalization/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Globalization.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Globalization.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
},
- "System.IO/4.0.10-beta-23008": {
+ "System.IO/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.20-beta-23008",
- "System.Text.Encoding": "4.0.0-beta-23008",
- "System.Threading.Tasks": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.IO.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.IO.dll"
- ]
+ "System.Runtime": "4.0.20-beta-23011",
+ "System.Text.Encoding": "4.0.0-beta-23011",
+ "System.Threading.Tasks": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
},
- "System.Linq/4.0.0-beta-23008": {
+ "System.Linq/4.0.0-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.20-beta-23008",
- "System.Collections": "4.0.10-beta-23008",
- "System.Resources.ResourceManager": "4.0.0-beta-23008",
- "System.Diagnostics.Debug": "4.0.10-beta-23008",
- "System.Runtime.Extensions": "4.0.10-beta-23008"
- },
- "compile": [
- "ref/any/System.Linq.dll"
- ],
- "runtime": [
- "lib/any/System.Linq.dll"
- ]
+ "System.Runtime": "4.0.20-beta-23011",
+ "System.Collections": "4.0.10-beta-23011",
+ "System.Resources.ResourceManager": "4.0.0-beta-23011",
+ "System.Diagnostics.Debug": "4.0.10-beta-23011",
+ "System.Runtime.Extensions": "4.0.10-beta-23011"
+ }
},
- "System.Linq.Expressions/4.0.0-beta-23008": {
+ "System.Linq.Expressions/4.0.0-beta-23011": {
"dependencies": {
- "System.Reflection": "4.0.0-beta-23008",
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Linq.Expressions.dll"
- ]
+ "System.Reflection": "4.0.0-beta-23011",
+ "System.Runtime": "4.0.0-beta-23011"
+ }
},
- "System.ObjectModel/4.0.10-beta-23008": {
+ "System.ObjectModel/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.20-beta-23008",
- "System.Resources.ResourceManager": "4.0.0-beta-23008",
- "System.Diagnostics.Debug": "4.0.10-beta-23008",
- "System.Collections": "4.0.10-beta-23008",
- "System.Threading": "4.0.10-beta-23008"
- },
- "compile": [
- "ref/any/System.ObjectModel.dll"
- ],
- "runtime": [
- "lib/any/System.ObjectModel.dll"
- ]
+ "System.Runtime": "4.0.20-beta-23011",
+ "System.Resources.ResourceManager": "4.0.0-beta-23011",
+ "System.Diagnostics.Debug": "4.0.10-beta-23011",
+ "System.Collections": "4.0.10-beta-23011",
+ "System.Threading": "4.0.10-beta-23011"
+ }
},
- "System.Private.Uri/4.0.0-beta-23008": {
- "runtime": [
- "lib/DNXCore50/System.Private.Uri.dll"
- ]
+ "System.Private.Uri/4.0.0-beta-23011": {
+ "runtime": {
+ "lib/DNXCore50/System.Private.Uri.dll": {}
+ }
},
- "System.Reflection/4.0.10-beta-23008": {
+ "System.Reflection/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.20-beta-23008",
- "System.IO": "4.0.0-beta-23008",
- "System.Reflection.Primitives": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Reflection.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Reflection.dll"
- ]
+ "System.Runtime": "4.0.20-beta-23011",
+ "System.IO": "4.0.0-beta-23011",
+ "System.Reflection.Primitives": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
},
- "System.Reflection.Extensions/4.0.0-beta-23008": {
+ "System.Reflection.Extensions/4.0.0-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008",
- "System.Reflection": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Reflection.Extensions.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Reflection.Extensions.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011",
+ "System.Reflection": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
},
- "System.Reflection.Primitives/4.0.0-beta-23008": {
+ "System.Reflection.Primitives/4.0.0-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Reflection.Primitives.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Reflection.Primitives.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
},
- "System.Reflection.TypeExtensions/4.0.0-beta-23008": {
+ "System.Reflection.TypeExtensions/4.0.0-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008",
- "System.Reflection": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Reflection.TypeExtensions.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Reflection.TypeExtensions.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011",
+ "System.Reflection": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
},
- "System.Resources.ResourceManager/4.0.0-beta-23008": {
+ "System.Resources.ResourceManager/4.0.0-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008",
- "System.Reflection": "4.0.0-beta-23008",
- "System.Globalization": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Resources.ResourceManager.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Resources.ResourceManager.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011",
+ "System.Reflection": "4.0.0-beta-23011",
+ "System.Globalization": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
},
- "System.Runtime/4.0.20-beta-23008": {
+ "System.Runtime/4.0.20-beta-23011": {
"dependencies": {
- "System.Private.Uri": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Runtime.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Runtime.dll"
- ]
+ "System.Private.Uri": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
},
- "System.Runtime.Extensions/4.0.10-beta-23008": {
+ "System.Runtime.Extensions/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.20-beta-23008"
- },
- "compile": [
- "ref/any/System.Runtime.Extensions.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Runtime.Extensions.dll"
- ]
+ "System.Runtime": "4.0.20-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ }
},
- "System.Runtime.Handles/4.0.0-beta-23008": {
+ "System.Runtime.Handles/4.0.0-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Runtime.Handles.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Runtime.Handles.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
},
- "System.Runtime.InteropServices/4.0.20-beta-23008": {
+ "System.Runtime.InteropServices/4.0.20-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008",
- "System.Reflection": "4.0.0-beta-23008",
- "System.Reflection.Primitives": "4.0.0-beta-23008",
- "System.Runtime.Handles": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Runtime.InteropServices.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Runtime.InteropServices.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011",
+ "System.Reflection": "4.0.0-beta-23011",
+ "System.Reflection.Primitives": "4.0.0-beta-23011",
+ "System.Runtime.Handles": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
},
- "System.Text.Encoding/4.0.10-beta-23008": {
+ "System.Text.Encoding/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Text.Encoding.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Text.Encoding.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Text.Encoding.dll": {}
+ }
},
- "System.Threading/4.0.0-beta-23008": {
+ "System.Threading/4.0.0-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008",
- "System.Threading.Tasks": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Threading.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011",
+ "System.Threading.Tasks": "4.0.0-beta-23011"
+ }
},
- "System.Threading.Tasks/4.0.10-beta-23008": {
+ "System.Threading.Tasks/4.0.10-beta-23011": {
"dependencies": {
- "System.Runtime": "4.0.0-beta-23008"
- },
- "compile": [
- "ref/any/System.Threading.Tasks.dll"
- ],
- "runtime": [
- "lib/DNXCore50/System.Threading.Tasks.dll"
- ]
+ "System.Runtime": "4.0.0-beta-23011"
+ },
+ "compile": {
+ "lib/DNXCore50/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Threading.Tasks.dll": {}
+ }
}
}
},
"libraries": {
- "System.Collections/4.0.10-beta-23008": {
- "sha512": "sKunA43A1Z5H+P20kMoaMybo/q+pcGRSxbZAnhQ8APUgMUkHEJr+4DLFQ75sx7sP+WIqE+UX/dcffqo63SmMCw==",
+ "System.Collections/4.0.10-beta-23011": {
+ "sha512": "BE8JCafr5xuUed047XDtgZ5ESLVcZxbxsjP9YIbUZd3+el2YzhloI1exhS6f316CXezvza1Rark+ZiozkDC0xA==",
"files": [
- "System.Collections.4.0.10-beta-23008.nupkg",
- "System.Collections.4.0.10-beta-23008.nupkg.sha512",
+ "System.Collections.4.0.10-beta-23011.nupkg",
+ "System.Collections.4.0.10-beta-23011.nupkg.sha512",
"System.Collections.nuspec",
"lib/DNXCore50/System.Collections.dll",
"lib/net46/_._",
"lib/netcore50/System.Collections.dll",
- "ref/any/System.Collections.dll",
+ "ref/dotnet/System.Collections.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Collections.dll"
]
},
- "System.Diagnostics.Debug/4.0.10-beta-23008": {
- "sha512": "nJDxh4LmuRPM/GKdWMX6kqpR2GHTWoIy1U8rOKMsBd7z+SjPyZn9F5IQjjRpi/ClOc88kNAtVgvWn4iCYU26Nw==",
+ "System.Diagnostics.Debug/4.0.10-beta-23011": {
+ "sha512": "sB3xq/+AlGnbVGDR54yiGNyLKO69as2mOvroQYtyFHa/+NHUE3Ih3mnsr/HSh8Z/GeZE8tjMA1cQtlwERb2pOg==",
"files": [
- "System.Diagnostics.Debug.4.0.10-beta-23008.nupkg",
- "System.Diagnostics.Debug.4.0.10-beta-23008.nupkg.sha512",
+ "System.Diagnostics.Debug.4.0.10-beta-23011.nupkg",
+ "System.Diagnostics.Debug.4.0.10-beta-23011.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"lib/DNXCore50/System.Diagnostics.Debug.dll",
"lib/net46/_._",
"lib/netcore50/System.Diagnostics.Debug.dll",
- "ref/any/System.Diagnostics.Debug.dll",
+ "ref/dotnet/System.Diagnostics.Debug.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll"
]
},
- "System.Diagnostics.Tools/4.0.0-beta-23008": {
- "sha512": "UTnQGZ5sFnZPYnhh8sewrlG8QACgNBfLUBJwhahFnuPaOAXKtqvov8XlBGzEwNFGRtBkIm7FfTgoIbY7V4KQlQ==",
+ "System.Diagnostics.Tools/4.0.0-beta-23011": {
+ "sha512": "L6J5l4Zw2qH0x3OBc1CtfRCviTXGAehckuKFB4vk9TWjuMC+oUh8g3uB+D1Jbpk18KHDn75I96QdvkMgNq0yYw==",
"files": [
- "System.Diagnostics.Tools.4.0.0-beta-23008.nupkg",
- "System.Diagnostics.Tools.4.0.0-beta-23008.nupkg.sha512",
+ "System.Diagnostics.Tools.4.0.0-beta-23011.nupkg",
+ "System.Diagnostics.Tools.4.0.0-beta-23011.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"lib/DNXCore50/System.Diagnostics.Tools.dll",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Tools.dll",
"lib/win8/_._",
- "ref/any/System.Diagnostics.Tools.dll",
+ "ref/dotnet/System.Diagnostics.Tools.dll",
"ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Tools.dll",
"ref/win8/_._",
"runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll"
]
},
- "System.Dynamic.Runtime/4.0.0-beta-23008": {
- "sha512": "2DJbcWj2kpJTTUkzeLWU4pVgNKpUIFIxrkJsh4mIsvSkR5LLe52631VYQfxvcH8ZbbkMLbJB4NVSpoQ3kXEA4w==",
+ "System.Dynamic.Runtime/4.0.0-beta-23011": {
+ "sha512": "aJbjOXQws8CfeESmNcePg8oiYSDf6wRlI2ibI8jQTW2wuPwy7FRetnIV3jzhfVQ3B0IgnVXNb0MCNJg9mgWbuQ==",
"files": [
"License.rtf",
- "System.Dynamic.Runtime.4.0.0-beta-23008.nupkg",
- "System.Dynamic.Runtime.4.0.0-beta-23008.nupkg.sha512",
+ "System.Dynamic.Runtime.4.0.0-beta-23011.nupkg",
+ "System.Dynamic.Runtime.4.0.0-beta-23011.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"lib/net45/_._",
"lib/win8/_._",
- "ref/any/System.Dynamic.Runtime.dll",
+ "ref/dotnet/System.Dynamic.Runtime.dll",
"ref/net45/_._",
+ "ref/netcore50/System.Dynamic.Runtime.dll",
"ref/win8/_._"
]
},
- "System.Globalization/4.0.10-beta-23008": {
- "sha512": "JBUTXW1KzjXantOJhPZQUTyoQ+AVtIVDW8nqyv0YfPjDnSAds51uvIW+tYiDM6yXFhjeXjNT/RcKBR6OtUmbTg==",
+ "System.Globalization/4.0.10-beta-23011": {
+ "sha512": "1Q9Q79GyLTuVKZIaWSQTa9EDckcJsDer70g8xMG3Gri00zWwStUMa2Yb7JyHkbOPR8+8bRyQrNZg20MTPPgluA==",
"files": [
- "System.Globalization.4.0.10-beta-23008.nupkg",
- "System.Globalization.4.0.10-beta-23008.nupkg.sha512",
+ "System.Globalization.4.0.10-beta-23011.nupkg",
+ "System.Globalization.4.0.10-beta-23011.nupkg.sha512",
"System.Globalization.nuspec",
"lib/DNXCore50/System.Globalization.dll",
"lib/net46/_._",
"lib/netcore50/System.Globalization.dll",
- "ref/any/System.Globalization.dll",
+ "ref/dotnet/System.Globalization.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Globalization.dll"
]
},
- "System.IO/4.0.10-beta-23008": {
- "sha512": "NrvoHRUhZUAILWNGPFayAlezxqo4R2qX7RZ/wwJ2PjSY/4svgDuaB4VJRTnuOPx1wRQasPLXI5sEl+dXPvfTnQ==",
+ "System.IO/4.0.10-beta-23011": {
+ "sha512": "NYoIpyR5hJvnv/jnY817GLBaH+DLJEsSOEGw8/NL/y4taFzuWVR2ROQtpWXD/2GLrXiTZ6Kdn7f1czs4DOqH1A==",
"files": [
- "System.IO.4.0.10-beta-23008.nupkg",
- "System.IO.4.0.10-beta-23008.nupkg.sha512",
+ "System.IO.4.0.10-beta-23011.nupkg",
+ "System.IO.4.0.10-beta-23011.nupkg.sha512",
"System.IO.nuspec",
"lib/DNXCore50/System.IO.dll",
"lib/net46/_._",
"lib/netcore50/System.IO.dll",
- "ref/any/System.IO.dll",
+ "ref/dotnet/System.IO.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.IO.dll"
]
},
- "System.Linq/4.0.0-beta-23008": {
- "sha512": "JCnxYFYUOeVyIwfNO5qsDf5sPOS1nE6WmeDC5JubKDmAzdgnE02QcXREj1MQOakEM3Pltn3Oh8vCiZ7dSd96sg==",
+ "System.Linq/4.0.0-beta-23011": {
+ "sha512": "OsA4menI/BcSy5jmf0TGlPz2j4ZF2ggeY0EfTMVBhnpMZiXwiZB4RBETl+ehLcqZwTQJKTOw1TIKi+Ewe4K1ag==",
"files": [
- "System.Linq.4.0.0-beta-23008.nupkg",
- "System.Linq.4.0.0-beta-23008.nupkg.sha512",
+ "System.Linq.4.0.0-beta-23011.nupkg",
+ "System.Linq.4.0.0-beta-23011.nupkg.sha512",
"System.Linq.nuspec",
- "lib/any/System.Linq.dll",
+ "lib/dotnet/System.Linq.dll",
"lib/net45/_._",
+ "lib/netcore50/System.Linq.dll",
"lib/win8/_._",
- "ref/any/System.Linq.dll",
+ "ref/dotnet/System.Linq.dll",
"ref/net45/_._",
+ "ref/netcore50/System.Linq.dll",
"ref/win8/_._"
]
},
- "System.Linq.Expressions/4.0.0-beta-23008": {
- "sha512": "AW3l/CW43ictbRew2M5/Lw/PB4U+aovi3RWPTNUUweBHMHjRjZlxiyKD6nqWWSvGFOKLvMVxZYgIwqn64LWQYQ==",
+ "System.Linq.Expressions/4.0.0-beta-23011": {
+ "sha512": "7/Rr6oDGdWoLdvbyPcpLSbgbrlTloC51oXIPdIxZqGokeB64umu6K6/G41TqV7oIngcm9XF7IKU67JqH1FgWrQ==",
"files": [
"License.rtf",
- "System.Linq.Expressions.4.0.0-beta-23008.nupkg",
- "System.Linq.Expressions.4.0.0-beta-23008.nupkg.sha512",
+ "System.Linq.Expressions.4.0.0-beta-23011.nupkg",
+ "System.Linq.Expressions.4.0.0-beta-23011.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"lib/net45/_._",
"lib/win8/_._",
- "ref/any/System.Linq.Expressions.dll",
+ "ref/dotnet/System.Linq.Expressions.dll",
"ref/net45/_._",
+ "ref/netcore50/System.Linq.Expressions.dll",
"ref/win8/_._"
]
},
- "System.ObjectModel/4.0.10-beta-23008": {
- "sha512": "x62g67ibtc53mLeHJ4BoQ9bYf+0UYvPXYi4JaEd8xnFFBHkOf5GF9YJkw5u433TVZ60do1GU2us0TKZp8+L3ZQ==",
+ "System.ObjectModel/4.0.10-beta-23011": {
+ "sha512": "bRpsIvHcNa1d5O+icRYpwi7keOynar+yKZnJxEIjahznKcsVK2DLPMsm5VWPygNkSz9m7EFDmr8J6Mg/lvmwJw==",
"files": [
- "System.ObjectModel.4.0.10-beta-23008.nupkg",
- "System.ObjectModel.4.0.10-beta-23008.nupkg.sha512",
+ "System.ObjectModel.4.0.10-beta-23011.nupkg",
+ "System.ObjectModel.4.0.10-beta-23011.nupkg.sha512",
"System.ObjectModel.nuspec",
- "lib/any/System.ObjectModel.dll",
+ "lib/dotnet/System.ObjectModel.dll",
"lib/net46/_._",
- "ref/any/System.ObjectModel.dll",
+ "ref/dotnet/System.ObjectModel.dll",
"ref/net46/_._"
]
},
- "System.Private.Uri/4.0.0-beta-23008": {
- "sha512": "q2VlKvy9ufHawdI5abrNKXvUIgFZYnBYMtPqK8gy1kEVhaQ1LWR7WLprwgI11mk7Ef18+P5mj08gCuXbl/rINw==",
+ "System.Private.Uri/4.0.0-beta-23011": {
+ "sha512": "yil581lvQfpXUFfLnfmS7t9+NDvy7NeSHfKYBF7CluatvDQxT6QmwRxi9zKXzCYB7OY6sqvrRFOgdeAxNalVkA==",
"files": [
- "System.Private.Uri.4.0.0-beta-23008.nupkg",
- "System.Private.Uri.4.0.0-beta-23008.nupkg.sha512",
+ "System.Private.Uri.4.0.0-beta-23011.nupkg",
+ "System.Private.Uri.4.0.0-beta-23011.nupkg.sha512",
"System.Private.Uri.nuspec",
"lib/DNXCore50/System.Private.Uri.dll",
"lib/netcore50/System.Private.Uri.dll",
@@ -396,176 +380,180 @@
"runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
]
},
- "System.Reflection/4.0.10-beta-23008": {
- "sha512": "1189taPg0slhVhsstTmIlvzAdCQfLLr5Wd187fZHO3NPNMxrO7VLkI+t8G33HBCVtRfFzkNbpk3sTHtqA3yqAw==",
+ "System.Reflection/4.0.10-beta-23011": {
+ "sha512": "Xx5JN02rEd5fartdsX49YwpuYNUtx01tVJiZGVco58IKWjO1MA67YM6zQgzDMzltNMrE3kra6sFa/B27kTBCBw==",
"files": [
- "System.Reflection.4.0.10-beta-23008.nupkg",
- "System.Reflection.4.0.10-beta-23008.nupkg.sha512",
+ "System.Reflection.4.0.10-beta-23011.nupkg",
+ "System.Reflection.4.0.10-beta-23011.nupkg.sha512",
"System.Reflection.nuspec",
"lib/DNXCore50/System.Reflection.dll",
"lib/net46/_._",
"lib/netcore50/System.Reflection.dll",
- "ref/any/System.Reflection.dll",
+ "ref/dotnet/System.Reflection.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Reflection.dll"
]
},
- "System.Reflection.Extensions/4.0.0-beta-23008": {
- "sha512": "btrHhR/58LNjwl0OTjWKj4+gYffoNcl/E5V+x1piHFNIvnf7EzLwTkhJ74QnqlycICHz3ZqHmdUT3OsfmcPRSA==",
+ "System.Reflection.Extensions/4.0.0-beta-23011": {
+ "sha512": "ClFX2KEA4B+hPi+2QT7byNQpDNycVvJ+Sgn70ja8AbrVqTgNSDtWqDPWT549OT+Xhca57R4its/hi4/r/jgD0Q==",
"files": [
- "System.Reflection.Extensions.4.0.0-beta-23008.nupkg",
- "System.Reflection.Extensions.4.0.0-beta-23008.nupkg.sha512",
+ "System.Reflection.Extensions.4.0.0-beta-23011.nupkg",
+ "System.Reflection.Extensions.4.0.0-beta-23011.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"lib/DNXCore50/System.Reflection.Extensions.dll",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Extensions.dll",
"lib/win8/_._",
- "ref/any/System.Reflection.Extensions.dll",
+ "ref/dotnet/System.Reflection.Extensions.dll",
"ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
"ref/win8/_._",
"runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll"
]
},
- "System.Reflection.Primitives/4.0.0-beta-23008": {
- "sha512": "eI0lHFHEQZcLM3iHj0nj6GbbY9wSrC70usIZ7qryR8xSExmJANVy34+Z8dquXx3wscYFAhyhFBCBOAle1a2HXw==",
+ "System.Reflection.Primitives/4.0.0-beta-23011": {
+ "sha512": "RVUHArAFLmbs6YBmFTrX+3A0/JHR6EaWmGmxWXqzSMuOe8LiNQqwyPPi30UFzCW/SWZyzGzYA6EJovu9w34JZA==",
"files": [
- "System.Reflection.Primitives.4.0.0-beta-23008.nupkg",
- "System.Reflection.Primitives.4.0.0-beta-23008.nupkg.sha512",
+ "System.Reflection.Primitives.4.0.0-beta-23011.nupkg",
+ "System.Reflection.Primitives.4.0.0-beta-23011.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"lib/DNXCore50/System.Reflection.Primitives.dll",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Primitives.dll",
"lib/win8/_._",
- "ref/any/System.Reflection.Primitives.dll",
+ "ref/dotnet/System.Reflection.Primitives.dll",
"ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
"ref/win8/_._",
"runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll"
]
},
- "System.Reflection.TypeExtensions/4.0.0-beta-23008": {
- "sha512": "1msw5YmdVH+mjBZkTjFsjsPoGh0V40H41Sdfk/eOQ5CITRPz/80xQn/JSRImaw5zD06XZ1SGKvbnTHSRkC3kAQ==",
+ "System.Reflection.TypeExtensions/4.0.0-beta-23011": {
+ "sha512": "MY+f1x4wYQrYrzuYx/1PntGIOzfHgyrXFNx0sK8a2yy/YRazgeAzcJKMzOeIQngM5rFIP0q5XyUPFfjS/PxfEw==",
"files": [
- "System.Reflection.TypeExtensions.4.0.0-beta-23008.nupkg",
- "System.Reflection.TypeExtensions.4.0.0-beta-23008.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.0.0-beta-23011.nupkg",
+ "System.Reflection.TypeExtensions.4.0.0-beta-23011.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"lib/DNXCore50/System.Reflection.TypeExtensions.dll",
"lib/net46/System.Reflection.TypeExtensions.dll",
"lib/netcore50/System.Reflection.TypeExtensions.dll",
- "ref/any/System.Reflection.TypeExtensions.dll",
+ "ref/dotnet/System.Reflection.TypeExtensions.dll",
"ref/net46/System.Reflection.TypeExtensions.dll",
"runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.ResourceManager/4.0.0-beta-23008": {
- "sha512": "6lqlZBtUl2Fo2rZjWO4lKO6n59RKrfwCwB2i1kLEiYthOVQ3/neeGkpErpOBkabXq6lk5SMgJpp3jC/AfPsmAA==",
+ "System.Resources.ResourceManager/4.0.0-beta-23011": {
+ "sha512": "TgjsEiLAIQPJRw8yOe8oMgV9fSYkzt5wffauiRMDkKc/DqUB2RS1HVtlQQvb5XctpI8gxpxlna6EkEdiWthB4w==",
"files": [
- "System.Resources.ResourceManager.4.0.0-beta-23008.nupkg",
- "System.Resources.ResourceManager.4.0.0-beta-23008.nupkg.sha512",
+ "System.Resources.ResourceManager.4.0.0-beta-23011.nupkg",
+ "System.Resources.ResourceManager.4.0.0-beta-23011.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"lib/DNXCore50/System.Resources.ResourceManager.dll",
"lib/net45/_._",
"lib/netcore50/System.Resources.ResourceManager.dll",
"lib/win8/_._",
- "ref/any/System.Resources.ResourceManager.dll",
+ "ref/dotnet/System.Resources.ResourceManager.dll",
"ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
"ref/win8/_._",
"runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll"
]
},
- "System.Runtime/4.0.20-beta-23008": {
- "sha512": "YX9/7Q6EHadgTLjH4Sa5zKHGMTMrwiMynAlQxMSQLGYCyJX6Z4/hejrBR7cNxrRddXnzxs5OALdEZqdU80zwxw==",
+ "System.Runtime/4.0.20-beta-23011": {
+ "sha512": "WFRsJnfRzXYIiDJRbTXGctncx6Hw1F/uS2c5a5CzUwHuA3D/CM152F2HjWt12dLgH0BOcGvcRjKl2AfJ6MnHVg==",
"files": [
- "System.Runtime.4.0.20-beta-23008.nupkg",
- "System.Runtime.4.0.20-beta-23008.nupkg.sha512",
+ "System.Runtime.4.0.20-beta-23011.nupkg",
+ "System.Runtime.4.0.20-beta-23011.nupkg.sha512",
"System.Runtime.nuspec",
"lib/DNXCore50/System.Runtime.dll",
"lib/net46/_._",
"lib/netcore50/System.Runtime.dll",
- "ref/any/System.Runtime.dll",
+ "ref/dotnet/System.Runtime.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.dll"
]
},
- "System.Runtime.Extensions/4.0.10-beta-23008": {
- "sha512": "488ce5N/0JQ2EbMzolr3CiIwqY64HEtxh3bIRDZ87p1eY2hQ79pROseFjQQ5n9q7aG+xs1D5CWVzuXcps976tA==",
+ "System.Runtime.Extensions/4.0.10-beta-23011": {
+ "sha512": "Ctasd6O2G00QpY3QcZN1feOZqqbN8B5rmz7P2B5E7VQWS1Dd6+CI6JAwzLHItFnIQQotOb0cy/tJdVwhqa8Uyg==",
"files": [
- "System.Runtime.Extensions.4.0.10-beta-23008.nupkg",
- "System.Runtime.Extensions.4.0.10-beta-23008.nupkg.sha512",
+ "System.Runtime.Extensions.4.0.10-beta-23011.nupkg",
+ "System.Runtime.Extensions.4.0.10-beta-23011.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"lib/DNXCore50/System.Runtime.Extensions.dll",
"lib/net46/_._",
"lib/netcore50/System.Runtime.Extensions.dll",
- "ref/any/System.Runtime.Extensions.dll",
+ "ref/dotnet/System.Runtime.Extensions.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
]
},
- "System.Runtime.Handles/4.0.0-beta-23008": {
- "sha512": "MC+Xc6KdYugsDK3xBefREfzPgzwhM1nDAF/nbaGLllx/huXsIvoBjFXRpxtbXfKrShYZBvInsfaElCpx28b1Rg==",
+ "System.Runtime.Handles/4.0.0-beta-23011": {
+ "sha512": "9e2Wa27gTX3K33U1VFzaztTXEs3AeA63YhtiaC5xHMuxGhg8bgTJBKIUH4No6SuuazVMYqYEa6LrN4V38dn6Rg==",
"files": [
- "System.Runtime.Handles.4.0.0-beta-23008.nupkg",
- "System.Runtime.Handles.4.0.0-beta-23008.nupkg.sha512",
+ "System.Runtime.Handles.4.0.0-beta-23011.nupkg",
+ "System.Runtime.Handles.4.0.0-beta-23011.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"lib/DNXCore50/System.Runtime.Handles.dll",
"lib/net46/_._",
"lib/netcore50/System.Runtime.Handles.dll",
- "ref/any/System.Runtime.Handles.dll",
+ "ref/dotnet/System.Runtime.Handles.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll"
]
},
- "System.Runtime.InteropServices/4.0.20-beta-23008": {
- "sha512": "aEI0FSdMvSv71yf+992rXOr5O3lJg+7SBN47p1C9Vmup/33IYqdAHoerV7WZ8y0s7KOtAwhKQBH5AokJgRGSiQ==",
+ "System.Runtime.InteropServices/4.0.20-beta-23011": {
+ "sha512": "2JoFno8LnzhiCBprgeXOY7oanWgtTYqRLoCLVnwNTYxH+7Vrz5To2Jf3VynGDPgC0GYciv1Jr9qrbeUEfGzNnA==",
"files": [
- "System.Runtime.InteropServices.4.0.20-beta-23008.nupkg",
- "System.Runtime.InteropServices.4.0.20-beta-23008.nupkg.sha512",
+ "System.Runtime.InteropServices.4.0.20-beta-23011.nupkg",
+ "System.Runtime.InteropServices.4.0.20-beta-23011.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"lib/DNXCore50/System.Runtime.InteropServices.dll",
"lib/net46/_._",
"lib/netcore50/System.Runtime.InteropServices.dll",
- "ref/any/System.Runtime.InteropServices.dll",
+ "ref/dotnet/System.Runtime.InteropServices.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll"
]
},
- "System.Text.Encoding/4.0.10-beta-23008": {
- "sha512": "dDcnfqdj6stUj1o1mNZIxEDTI0er7TVER+CVcng+6rEejErS5HQjIEsuEepQSiAF3VDiZu8ZI89RAUuQbCSjEw==",
+ "System.Text.Encoding/4.0.10-beta-23011": {
+ "sha512": "WpZkSv0yV1Fp3hVvHNlvEQ+tdM9vHvbhqJ6dTxcAR7fSfRftH0IdhtSc4rDWHNegfoKiX+nra4S8aNPxe3u1AQ==",
"files": [
- "System.Text.Encoding.4.0.10-beta-23008.nupkg",
- "System.Text.Encoding.4.0.10-beta-23008.nupkg.sha512",
+ "System.Text.Encoding.4.0.10-beta-23011.nupkg",
+ "System.Text.Encoding.4.0.10-beta-23011.nupkg.sha512",
"System.Text.Encoding.nuspec",
"lib/DNXCore50/System.Text.Encoding.dll",
"lib/net46/_._",
"lib/netcore50/System.Text.Encoding.dll",
- "ref/any/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll"
]
},
- "System.Threading/4.0.0-beta-23008": {
- "sha512": "yWsWarhVtzNEASX3qdzjSkR8GRXJVNJuHG+wbwBE6RiEtaa1GA8zWvHiPsTrgSWtIbEW4xuirxK71IiN2DB/fw==",
+ "System.Threading/4.0.0-beta-23011": {
+ "sha512": "BdnXMR9bcWgfOvzjglc0QKRnqLq8LEmTmxIUPkD9iH+yX9gNYcsHMp6XHHLpLbN8V8aKUWxSgIAx9CQDDZk8Kg==",
"files": [
"License.rtf",
- "System.Threading.4.0.0-beta-23008.nupkg",
- "System.Threading.4.0.0-beta-23008.nupkg.sha512",
+ "System.Threading.4.0.0-beta-23011.nupkg",
+ "System.Threading.4.0.0-beta-23011.nupkg.sha512",
"System.Threading.nuspec",
"lib/net45/_._",
"lib/win8/_._",
- "ref/any/System.Threading.dll",
+ "ref/dotnet/System.Threading.dll",
"ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
"ref/win8/_._"
]
},
- "System.Threading.Tasks/4.0.10-beta-23008": {
- "sha512": "G47/e2ZxNzYmfAXgHA7UwxdTGVJPD4bLmG/v1pxyPTyTsPzNA3CjqHVId27PsDdfo/L3w2Cl+oZM1s+pHfXXRw==",
+ "System.Threading.Tasks/4.0.10-beta-23011": {
+ "sha512": "v0aolU0bEyyr/nlqI8r/9wwzSQKyrbumjtbS2Zjh/8aUFTNn1WJ5S20PfXcfMAbjxk6NTyjg1Pe5mvhGGu+zWw==",
"files": [
- "System.Threading.Tasks.4.0.10-beta-23008.nupkg",
- "System.Threading.Tasks.4.0.10-beta-23008.nupkg.sha512",
+ "System.Threading.Tasks.4.0.10-beta-23011.nupkg",
+ "System.Threading.Tasks.4.0.10-beta-23011.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"lib/DNXCore50/System.Threading.Tasks.dll",
"lib/net46/_._",
"lib/netcore50/System.Threading.Tasks.dll",
- "ref/any/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.dll",
"ref/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll"
] |
What version of DNX are we using? It looks like this one doesn't understand the new 'dotnet' identifier we are using in our packages. That is the problem. /cc @anurse |
@ericstj 1.0.0-beta5-11682 on Windows and 1.0.0-beta5-11760 on Unix according to dir.props. I think we should unify those versions, like I suggested in https://github.com/dotnet/corefx/issues/2002. |
Can you try the latest beta5 mono DNX and see if it correctly uses ref/dotnet for compile assets? /cc @mmitche who is in the process of updating DNX.
This started becoming a problem when we pushed new packages that required a DNX update. Because Unix wasn't locked (due to above) we started picking up those new packages. Those new packages fail on the old DNX. |
@ericstj I see the same errors on Windows if I update DNX to 1.0.0-beta5-11904 (which seems to be the last beta5 on aspnetvnext myget.org feed). |
Actually newer builds with the |
@ericstj with that version I get a different error:
Though e.g. System.Collections.Immutable.dll seemed to have built fine. |
Remove https://www.myget.org/gallery/aspnetrelease from your feeds when you are doing restore on the project. That's causing your restore to pull in newer package that what we have in our DotNET-core feed. This actually sheds some light on to why dotnet/corefx#2052 is failing. Let me give a crack at fixing both of these. Stay tuned. |
Ok, I have a repro of that on windows. This appears to be a recent regression in dnu restore. It isn't installing packages. I'm following up with DNX team. |
Ok, I have this fixed with a private build of DNX, we'll need to wait until we get an official build of DNX with this fix. |
Should be fixed now. |
@ericstj Yes, fixed. |
build latest corefx on Linux Ubuntu and get the following result.
Mono version:
The text was updated successfully, but these errors were encountered: