Browse Source

Explicitly list individual NuGet dependencies.

* Rather than use a reference to NETStandard.Library, use individual
  references so that projects consuming the library can be more granular
  about their dependencies


Former-commit-id: 16c745fa59752189479efacabb018d775eeae4a5
Former-commit-id: 2e058cb12ed86ac403462f239ceef03c0306a9c1
Former-commit-id: 4c82d4e7894ce9605eaccfafa38f7823131abd2b
af/merge-core
Eric Mellino 10 years ago
parent
commit
b2a45ce8f5
  1. 24
      src/ImageProcessorCore/project.json

24
src/ImageProcessorCore/project.json

@ -17,16 +17,22 @@
"debugType": "portable"
},
"dependencies": {
"NETStandard.Library": "1.5.0-rc2-24027",
"System.Numerics.Vectors": "4.1.1-rc2-24027"
"System.Collections": "4.0.11-rc2-24027",
"System.Diagnostics.Debug": "4.0.11-rc2-24027",
"System.Diagnostics.Tools": "4.0.1-rc2-24027",
"System.IO": "4.1.0-rc2-24027",
"System.IO.Compression": "4.1.0-rc2-24027",
"System.Linq": "4.1.0-rc2-24027",
"System.Numerics.Vectors": "4.1.1-rc2-24027",
"System.Resources.ResourceManager": "4.0.1-rc2-24027",
"System.Runtime.Extensions": "4.1.0-rc2-24027",
"System.Runtime.InteropServices": "4.1.0-rc2-24027",
"System.Text.Encoding.Extensions": "4.0.11-rc2-24027",
"System.Threading": "4.0.11-rc2-24027",
"System.Threading.Tasks": "4.0.11-rc2-24027",
"System.Threading.Tasks.Parallel": "4.0.1-rc2-24027"
},
"frameworks": {
"netstandard1.1": {
"dependencies": {
"System.Threading": "4.0.11-rc2-24027",
"System.Threading.Tasks": "4.0.11-rc2-24027",
"System.Threading.Tasks.Parallel": "4.0.1-rc2-24027"
}
}
"netstandard1.1": {}
}
}
Loading…
Cancel
Save