Browse Source

Merge pull request #409 from mellinoe/explicit-dependencies [skip ci]

Explicitly list individual NuGet dependencies

Former-commit-id: ab7d4286cf1c0b80b67a62288e95cc894aa06fc2
Former-commit-id: 41ff8543d904c9ada97e6d6cb66a6e29e061a078
Former-commit-id: e7f0466803264f5046413ecfc0cef729d1b5ecc1
pull/1/head
James Jackson-South 10 years ago
committed by GitHub
parent
commit
0cb86b93d5
  1. 24
      src/ImageProcessorCore/project.json

24
src/ImageProcessorCore/project.json

@ -17,16 +17,22 @@
"debugType": "portable" "debugType": "portable"
}, },
"dependencies": { "dependencies": {
"NETStandard.Library": "1.5.0-rc2-24027", "System.Collections": "4.0.11-rc2-24027",
"System.Numerics.Vectors": "4.1.1-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": { "frameworks": {
"netstandard1.1": { "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"
}
}
} }
} }
Loading…
Cancel
Save