Browse Source

Fix project.json files

Former-commit-id: 64ca2df82c876e3804f55ce5c3a524339e672631
Former-commit-id: f8be613634c7a90080618196f73dbd8bce223875
Former-commit-id: dda5186e2e954a2abe2f65f465acb75c4d2a615c
af/merge-core
Dennis Fischer 10 years ago
parent
commit
cb2be98d02
  1. 13
      src/ImageProcessorCore/project.json
  2. 15
      tests/ImageProcessorCore.Benchmarks/project.json
  3. 25
      tests/ImageProcessorCore.Tests/project.json

13
src/ImageProcessorCore/project.json

@ -13,27 +13,20 @@
]
},
"buildOptions": {
"allowUnsafe": true
"allowUnsafe": true,
"debugType": "portable"
},
"dependencies": {
"NETStandard.Library": "1.5.0-rc2-24027",
"System.Numerics.Vectors": "4.1.1-rc2-24027"
},
"frameworks": {
"netstandard1.5": {
"imports": "dnxcore50",
"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"
}
},
"net4.5.1": {
"frameworkAssemblies": {
"System.Threading": "4.0.0",
"System.Threading.Tasks": "4.0.0",
"System.Threading.Tasks.Parallel": "4.0.0"
}
}
}
}

15
tests/ImageProcessorCore.Benchmarks/project.json

@ -20,10 +20,15 @@
"ImageProcessorCore.Benchmarks": "ImageProcessorCore.Benchmarks"
},
"frameworks": {
"net4.5.1": {
"frameworkAssemblies": {
"System.Drawing": "4.0.0.0"
}
}
"net451": {
"dependencies": {
},
"imports": [
"dnx451"
],
"frameworkAssemblies": {
"System.Drawing":"4.0.0.0"
}
}
}
}

25
tests/ImageProcessorCore.Tests/project.json

@ -9,16 +9,27 @@
"Image Resize Crop Quality Gif Jpg Jpeg Bitmap Png Fluent Animated"
]
},
"buildOptions": {
"debugType": "portable"
},
"dependencies": {
"ImageProcessorCore": "1.0.0-*",
"xunit": "2.2.0-beta1-build3239",
"xunit.runner.dnx": "2.1.0-rc1-build204"
"System.Diagnostics.TraceSource": "4.0.0-rc2-24027",
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-build10015"
},
"frameworks": {
"dnx451": {
}
},
"commands": {
"test": "xunit.runner.dnx"
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc2-3002702"
}
},
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
}
}
Loading…
Cancel
Save