Skip to content

Commit

Permalink
Merge pull request dotnet#1540 from rainersigwald/no-1.1-for-core
Browse files Browse the repository at this point in the history
Avoid .NET Core 1.1 dependencies for Core
  • Loading branch information
rainersigwald authored Jan 11, 2017
2 parents 40cd4d0 + 16e8cce commit b32957b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/Utilities/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"System.Reflection.TypeExtensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Threading.Thread": "4.0.0",
"System.Xml.XmlDocument": "4.0.1"
}
Expand Down
9 changes: 5 additions & 4 deletions src/XMakeBuildEngine/UnitTestsPublicOM/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,26 @@
"xunit.extensibility.core": "2.1.0",
"xunit.assert": "2.1.0",
"xunit.abstractions": "2.0.0",
"microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00629-09",
"System.Collections.Immutable": "1.3.1"
"microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00629-09"
},
"frameworks": {
"net46": {
"dependencies": {
"xunit.runner.visualstudio": "2.1.0"
"xunit.runner.visualstudio": "2.1.0",
"System.Collections.Immutable": "1.3.1"
}
},
"netstandard1.3": {
"dependencies": {
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"Microsoft.NETCore": "5.0.1",
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
"System.Collections.Immutable": "1.2.0",
"System.Collections.NonGeneric": "4.0.1",
"System.Console": "4.0.0",
"System.Diagnostics.Process": "4.1.0",
"System.Diagnostics.TraceSource": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Threading.Thread": "4.0.0",
"System.Threading.ThreadPool": "4.0.10",
"System.Xml.XmlDocument": "4.0.1",
Expand Down
5 changes: 3 additions & 2 deletions src/XMakeBuildEngine/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"dependencies": {
"System.Collections.Immutable": "1.3.1"
},
"frameworks": {
"net46": {
"dependencies": {
"Microsoft.VisualStudio.Setup.Configuration.Interop": "1.2.304-preview5"
"Microsoft.VisualStudio.Setup.Configuration.Interop": "1.2.304-preview5",
"System.Collections.Immutable": "1.3.1"
}
},
"netstandard1.5": {
"dependencies": {
"NETStandard.Library": "1.6.0",
"System.Collections.Immutable": "1.2.0",
"System.Collections.NonGeneric": "4.0.1",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.FileVersionInfo": "4.0.0",
Expand Down
11 changes: 5 additions & 6 deletions src/XMakeTasks/project.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"dependencies": {
"System.Collections.Immutable": "1.3.1"
},
"frameworks": {
"net46": {
"dependencies": {
"Microsoft.VisualStudio.Setup.Configuration.Interop": "1.2.304-preview5",
"System.Reflection.Metadata": "1.3.0"
"Microsoft.VisualStudio.Setup.Configuration.Interop": "1.2.304-preview5",
"System.Collections.Immutable": "1.3.1",
"System.Reflection.Metadata": "1.3.0"
}
},
"netstandard1.3": {
"dependencies": {
"NETStandard.Library": "1.6.0",
"System.Collections.Immutable": "1.2.0",
"System.Collections.NonGeneric": "4.0.1",
"System.Diagnostics.Process": "4.1.0",
"System.Diagnostics.TraceSource": "4.0.0",
Expand All @@ -21,7 +20,7 @@
"System.Resources.Writer": "4.0.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.Algorithms" : "4.3.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Threading.Thread": "4.0.0",
"System.Xml.XmlDocument": "4.0.1"
}
Expand Down
6 changes: 3 additions & 3 deletions targets/runtimeDependencies/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
"xunit": "2.1.0",
"microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00629-09",
"System.IO.FileSystem": "4.0.1",
"System.IO.Compression": "4.1.0",
"System.Collections.Immutable": "1.3.1"
"System.IO.Compression": "4.1.0"
},
"frameworks": {
"net46": {
"dependencies": {
"xunit.runner.visualstudio": "2.1.0",
"System.Collections.Immutable": "1.3.1",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"System.Threading.Tasks.Dataflow": "4.6.0",
"Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00508-01"
}
},
"netcoreapp1.0": {
"dependencies": {
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"Microsoft.NETCore": "5.0.1",
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
Expand Down

0 comments on commit b32957b

Please sign in to comment.