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/netcore/build.cmd b/test/netcore/build.cmd
index 88ff20a..e971799 100644
--- a/test/netcore/build.cmd
+++ b/test/netcore/build.cmd
@@ -19,27 +19,12 @@
rem */
setlocal
-cd ThriftTest
-thrift -gen netcore:wcf -r ..\..\ThriftTest.thrift
+cd Interfaces
+thrift -gen netcore:wcf -r ..\..\tutorial.thrift
cd ..
-rem * Due to a known issue with "dotnet restore" the Thrift.dll dependency cannot be resolved from cmdline
-rem * For details see https://github.com/dotnet/cli/issues/3199 and related tickets
-rem * The problem does NOT affect Visual Studio builds.
-
-rem * workaround for "dotnet restore" issue
-xcopy ..\..\lib\netcore\Thrift .\Thrift /YSEI >NUL
-
dotnet --info
dotnet restore
-
-dotnet build **/*/project.json -r win10-x64
-dotnet build **/*/project.json -r osx.10.11-x64
-dotnet build **/*/project.json -r ubuntu.16.04-x64
-
-rem * workaround for "dotnet restore" issue
-del .\Thrift\* /Q /S >NUL
-rd .\Thrift /Q /S >NUL
-
+dotnet build
:eof