From 2d476189d9469c68622a2cb5dee93e285799d0c7 Mon Sep 17 00:00:00 2001 From: Seabass Date: Sat, 5 Oct 2019 13:26:54 -0400 Subject: [PATCH] build.* runs the tests Brings the scripts in line with what the readme says they do. --- build.bat | 2 +- build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.bat b/build.bat index e644c22..2dce465 100644 --- a/build.bat +++ b/build.bat @@ -1,3 +1,3 @@ dotnet restore src/Server dotnet build src/Server - +dotnet test src/GameTest diff --git a/build.sh b/build.sh index 8e835f2..1c44130 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ #!/bin/sh dotnet restore src/Server dotnet build src/Server - +dotnet test src/GameTest