diff --git a/Build.sh b/Build.sh index 4bddf0d..8488e6c 100755 --- a/Build.sh +++ b/Build.sh @@ -1,5 +1,6 @@ -#/usr/bin/bash +#!/bin/bash PROJ=ServerHost.sln nuget restore $PROJ && msbuild $PROJ + diff --git a/Test.sh b/Test.sh index 295d76b..8a36778 100755 --- a/Test.sh +++ b/Test.sh @@ -1,6 +1,7 @@ -#/usr/bin/bash +#!/bin/bash xunit_version=2.4.1 dotnet_version=net461 mono ~/.nuget/packages/xunit.runner.console/$xunit_version/tools/$dotnet_version/xunit.console.exe Tests/Tests.Net46/bin/Debug/ServerHost.Tests.dll +