THRIFT-4434: fixes to delegate all dependency responsibility from make to the dotnet build
Client: dotnet

This closes #1469
diff --git a/test/netcore/Makefile.am b/test/netcore/Makefile.am
index 65833b9..376ffb7 100644
--- a/test/netcore/Makefile.am
+++ b/test/netcore/Makefile.am
@@ -19,17 +19,11 @@
 
 SUBDIRS = . 
 
-THRIFTCODE = \
-			ThriftTest.sln 
-
-all-local: \
-	ThriftTest/stage/binaries
-
-ThriftTest/stage/binaries: $(THRIFTCODE)
+all-local:
 	$(DOTNETCORE) build
 
-precross: \
-	ThriftTest/stage/binaries
+precross:
+	$(DOTNETCORE) build
 
 clean-local:
 	$(RM) -r Client/bin
@@ -39,8 +33,9 @@
 	$(RM) -r ThriftTest/ThriftTest
 
 EXTRA_DIST = \
-			 ThriftTest.sln \
-			 Server \
-			 Client \
-			 README.md
-			 
+	Client \
+	README.md \
+	Server \
+	ThriftTest.sln \
+	build.cmd \
+	build.sh