summaryrefslogtreecommitdiff
path: root/tests/src/Interop
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/Interop')
-rw-r--r--tests/src/Interop/ArrayMarshalling/BoolArray/project.json9
-rw-r--r--tests/src/Interop/ArrayMarshalling/ByValArray/project.json9
-rwxr-xr-xtests/src/Interop/BestFitMapping/project.json11
-rw-r--r--tests/src/Interop/FuncPtrAsDelegateParam/project.json13
-rw-r--r--tests/src/Interop/ICastable/project.json14
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/project.json9
-rw-r--r--tests/src/Interop/MarshalAPI/FunctionPointer/project.json9
-rw-r--r--tests/src/Interop/MarshalAPI/GetExceptionForHR/project.json9
-rw-r--r--tests/src/Interop/MarshalAPI/GetNativeVariantForObject/project.json11
-rw-r--r--tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/project.json11
-rw-r--r--tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/project.json11
-rw-r--r--tests/src/Interop/MarshalAPI/IUnknown/project.json11
-rw-r--r--tests/src/Interop/MarshalAPI/Miscellaneous/project.json11
-rw-r--r--tests/src/Interop/MarshalAPI/OffsetOf/project.json9
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/project.json11
-rw-r--r--tests/src/Interop/MarshalAPI/String/project.json9
-rw-r--r--tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/project.json9
-rw-r--r--tests/src/Interop/NativeCallable/project.json14
-rw-r--r--tests/src/Interop/PrimitiveMarshalling/Bool/project.json9
-rw-r--r--tests/src/Interop/PrimitiveMarshalling/EnumMarshalling/project.json13
-rw-r--r--tests/src/Interop/PrimitiveMarshalling/UIntPtr/project.json9
-rwxr-xr-xtests/src/Interop/RefCharArray/project.json9
-rwxr-xr-xtests/src/Interop/RefInt/project.json9
-rw-r--r--tests/src/Interop/SimpleStruct/project.json13
-rwxr-xr-xtests/src/Interop/StringMarshalling/LPSTR/project.json9
-rwxr-xr-xtests/src/Interop/StringMarshalling/LPTSTR/project.json9
-rw-r--r--tests/src/Interop/StructMarshalling/PInvoke/project.json11
27 files changed, 261 insertions, 20 deletions
diff --git a/tests/src/Interop/ArrayMarshalling/BoolArray/project.json b/tests/src/Interop/ArrayMarshalling/BoolArray/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/ArrayMarshalling/BoolArray/project.json
+++ b/tests/src/Interop/ArrayMarshalling/BoolArray/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/ArrayMarshalling/ByValArray/project.json b/tests/src/Interop/ArrayMarshalling/ByValArray/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/ArrayMarshalling/ByValArray/project.json
+++ b/tests/src/Interop/ArrayMarshalling/ByValArray/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/BestFitMapping/project.json b/tests/src/Interop/BestFitMapping/project.json
index 7fb31a64ba..fc8ccb4cc2 100755
--- a/tests/src/Interop/BestFitMapping/project.json
+++ b/tests/src/Interop/BestFitMapping/project.json
@@ -1,4 +1,4 @@
-{
+{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/FuncPtrAsDelegateParam/project.json b/tests/src/Interop/FuncPtrAsDelegateParam/project.json
index d0bba5fe35..fc8ccb4cc2 100644
--- a/tests/src/Interop/FuncPtrAsDelegateParam/project.json
+++ b/tests/src/Interop/FuncPtrAsDelegateParam/project.json
@@ -1,4 +1,4 @@
-{
+{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
-} \ No newline at end of file
+}
diff --git a/tests/src/Interop/ICastable/project.json b/tests/src/Interop/ICastable/project.json
index b04d32fae3..fc3f0262a9 100644
--- a/tests/src/Interop/ICastable/project.json
+++ b/tests/src/Interop/ICastable/project.json
@@ -1,7 +1,15 @@
-{
- "dependencies": {
- },
+{
+ "dependencies": {},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/Copy/project.json b/tests/src/Interop/MarshalAPI/Copy/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/Copy/project.json
+++ b/tests/src/Interop/MarshalAPI/Copy/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/FunctionPointer/project.json b/tests/src/Interop/MarshalAPI/FunctionPointer/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/FunctionPointer/project.json
+++ b/tests/src/Interop/MarshalAPI/FunctionPointer/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/GetExceptionForHR/project.json b/tests/src/Interop/MarshalAPI/GetExceptionForHR/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/GetExceptionForHR/project.json
+++ b/tests/src/Interop/MarshalAPI/GetExceptionForHR/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/GetNativeVariantForObject/project.json b/tests/src/Interop/MarshalAPI/GetNativeVariantForObject/project.json
index f1fce28499..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/GetNativeVariantForObject/project.json
+++ b/tests/src/Interop/MarshalAPI/GetNativeVariantForObject/project.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
+ "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
"System.Collections.NonGeneric": "4.0.1-rc2-23816",
"System.Collections.Specialized": "4.0.1-rc2-23816",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/project.json b/tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/project.json
index f1fce28499..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/project.json
+++ b/tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/project.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
+ "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
"System.Collections.NonGeneric": "4.0.1-rc2-23816",
"System.Collections.Specialized": "4.0.1-rc2-23816",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/project.json b/tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/project.json
index f1fce28499..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/project.json
+++ b/tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/project.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
+ "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
"System.Collections.NonGeneric": "4.0.1-rc2-23816",
"System.Collections.Specialized": "4.0.1-rc2-23816",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/IUnknown/project.json b/tests/src/Interop/MarshalAPI/IUnknown/project.json
index f1fce28499..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/IUnknown/project.json
+++ b/tests/src/Interop/MarshalAPI/IUnknown/project.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
+ "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
"System.Collections.NonGeneric": "4.0.1-rc2-23816",
"System.Collections.Specialized": "4.0.1-rc2-23816",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/Miscellaneous/project.json b/tests/src/Interop/MarshalAPI/Miscellaneous/project.json
index f1fce28499..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/Miscellaneous/project.json
+++ b/tests/src/Interop/MarshalAPI/Miscellaneous/project.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
+ "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
"System.Collections.NonGeneric": "4.0.1-rc2-23816",
"System.Collections.Specialized": "4.0.1-rc2-23816",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/OffsetOf/project.json b/tests/src/Interop/MarshalAPI/OffsetOf/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/OffsetOf/project.json
+++ b/tests/src/Interop/MarshalAPI/OffsetOf/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/project.json b/tests/src/Interop/MarshalAPI/ReadWrite/project.json
index f1fce28499..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/project.json
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/project.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
+ "Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
"System.Collections.NonGeneric": "4.0.1-rc2-23816",
"System.Collections.Specialized": "4.0.1-rc2-23816",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/String/project.json b/tests/src/Interop/MarshalAPI/String/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/String/project.json
+++ b/tests/src/Interop/MarshalAPI/String/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/project.json b/tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/project.json
+++ b/tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/NativeCallable/project.json b/tests/src/Interop/NativeCallable/project.json
index b04d32fae3..fc3f0262a9 100644
--- a/tests/src/Interop/NativeCallable/project.json
+++ b/tests/src/Interop/NativeCallable/project.json
@@ -1,7 +1,15 @@
-{
- "dependencies": {
- },
+{
+ "dependencies": {},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/PrimitiveMarshalling/Bool/project.json b/tests/src/Interop/PrimitiveMarshalling/Bool/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/PrimitiveMarshalling/Bool/project.json
+++ b/tests/src/Interop/PrimitiveMarshalling/Bool/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/PrimitiveMarshalling/EnumMarshalling/project.json b/tests/src/Interop/PrimitiveMarshalling/EnumMarshalling/project.json
index d0bba5fe35..fc8ccb4cc2 100644
--- a/tests/src/Interop/PrimitiveMarshalling/EnumMarshalling/project.json
+++ b/tests/src/Interop/PrimitiveMarshalling/EnumMarshalling/project.json
@@ -1,4 +1,4 @@
-{
+{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
-} \ No newline at end of file
+}
diff --git a/tests/src/Interop/PrimitiveMarshalling/UIntPtr/project.json b/tests/src/Interop/PrimitiveMarshalling/UIntPtr/project.json
index a2e84dc340..fc8ccb4cc2 100644
--- a/tests/src/Interop/PrimitiveMarshalling/UIntPtr/project.json
+++ b/tests/src/Interop/PrimitiveMarshalling/UIntPtr/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/RefCharArray/project.json b/tests/src/Interop/RefCharArray/project.json
index a2e84dc340..fc8ccb4cc2 100755
--- a/tests/src/Interop/RefCharArray/project.json
+++ b/tests/src/Interop/RefCharArray/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/RefInt/project.json b/tests/src/Interop/RefInt/project.json
index a2e84dc340..fc8ccb4cc2 100755
--- a/tests/src/Interop/RefInt/project.json
+++ b/tests/src/Interop/RefInt/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/SimpleStruct/project.json b/tests/src/Interop/SimpleStruct/project.json
index d0bba5fe35..fc8ccb4cc2 100644
--- a/tests/src/Interop/SimpleStruct/project.json
+++ b/tests/src/Interop/SimpleStruct/project.json
@@ -1,4 +1,4 @@
-{
+{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-rc2-23816",
"System.Collections": "4.0.10",
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
-} \ No newline at end of file
+}
diff --git a/tests/src/Interop/StringMarshalling/LPSTR/project.json b/tests/src/Interop/StringMarshalling/LPSTR/project.json
index a2e84dc340..fc8ccb4cc2 100755
--- a/tests/src/Interop/StringMarshalling/LPSTR/project.json
+++ b/tests/src/Interop/StringMarshalling/LPSTR/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/StringMarshalling/LPTSTR/project.json b/tests/src/Interop/StringMarshalling/LPTSTR/project.json
index a2e84dc340..fc8ccb4cc2 100755
--- a/tests/src/Interop/StringMarshalling/LPTSTR/project.json
+++ b/tests/src/Interop/StringMarshalling/LPTSTR/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
}
diff --git a/tests/src/Interop/StructMarshalling/PInvoke/project.json b/tests/src/Interop/StructMarshalling/PInvoke/project.json
index 21a7fa4381..fc8ccb4cc2 100644
--- a/tests/src/Interop/StructMarshalling/PInvoke/project.json
+++ b/tests/src/Interop/StructMarshalling/PInvoke/project.json
@@ -31,5 +31,14 @@
},
"frameworks": {
"dnxcore50": {}
+ },
+ "runtimes": {
+ "win7-x86": {},
+ "win7-x64": {},
+ "ubuntu.14.04-x64": {},
+ "osx.10.10-x64": {},
+ "centos.7-x64": {},
+ "rhel.7-x64": {},
+ "debian.8.2-x64": {}
}
-} \ No newline at end of file
+}