THRIFT-4350: enable dotnet-2.0.0-sdk in ubuntu xenial, update netcore
projects, get them running with make cross
Client: netcore
This closes #1379
diff --git a/test/tests.json b/test/tests.json
index a926486..fdd725c 100644
--- a/test/tests.json
+++ b/test/tests.json
@@ -397,15 +397,25 @@
"compact",
"json"
],
- "server": {
+ "server-disabled": {
"command": [
- "dotnet restore && dotnet run server"
+ "dotnet",
+ "run",
+ "--no-build",
+ "--no-restore",
+ "--",
+ "server"
]
},
"client": {
"timeout": 10,
"command": [
- "dotnet run client"
+ "dotnet",
+ "run",
+ "--no-build",
+ "--no-restore",
+ "--",
+ "client"
]
},
"workdir": "netcore/ThriftTest"