Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2016-08-26 21:29:59 +0300
committerStephen Toub <stoub@microsoft.com>2016-08-31 16:59:56 +0300
commit9b6852e140e3149929e00770fd133719d64c61c5 (patch)
tree6a74324877b20b5ca42acaf7aba6c67b68323896 /src/System.Collections.NonGeneric/tests/project.json
parentc8c0529eddaec29f7f7332159973e224d5393034 (diff)
Add collection serialization tests
- Update the remainder of the collections projects to support running tests on 1.7 - Add generic and non-generic collections serialization tests usable by all of the collections projects - Fix a few implementation bugs
Diffstat (limited to 'src/System.Collections.NonGeneric/tests/project.json')
-rw-r--r--src/System.Collections.NonGeneric/tests/project.json24
1 files changed, 22 insertions, 2 deletions
diff --git a/src/System.Collections.NonGeneric/tests/project.json b/src/System.Collections.NonGeneric/tests/project.json
index b5cf70be31..a23a598bab 100644
--- a/src/System.Collections.NonGeneric/tests/project.json
+++ b/src/System.Collections.NonGeneric/tests/project.json
@@ -24,7 +24,11 @@
},
"frameworks": {
"netstandard1.3": {},
- "netstandard1.7": {}
+ "netstandard1.7": {
+ "dependencies": {
+ "System.Runtime.Serialization.Formatters": "4.0.1-beta-devapi-24422-01",
+ }
+ }
},
"supports": {
"coreFx.Test.netcore50": {},
@@ -32,6 +36,22 @@
"coreFx.Test.net46": {},
"coreFx.Test.net461": {},
"coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
+ "coreFx.Test.net463": {},
+ "coreFx.Test.netcoreapp1.1-ns17": {
+ "netstandard1.7": [
+ "win7-x86",
+ "win7-x64",
+ "win10-arm64",
+ "osx.10.10-x64",
+ "centos.7-x64",
+ "debian.8-x64",
+ "rhel.7-x64",
+ "ubuntu.14.04-x64",
+ "ubuntu.16.04-x64",
+ "fedora.23-x64",
+ "linux-x64",
+ "opensuse.13.2-x64"
+ ]
+ }
}
}