Skip to content

Commit

Permalink
Fix build after move to PackageReferences.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanpalmer committed Apr 6, 2021
1 parent 03eb41a commit 018ef78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ nuget restore QuickTest.sln || exit 1
msbuild /p:Configuration=Release QuickTest/QuickTest.csproj || exit 1
msbuild /p:Configuration=Release Tests/Tests.csproj || exit 1

pushd packages && nuget install Nunit.Runners && popd
pushd Tests && nuget install Nunit.Runners && popd
export MONO_IOMAP=all # this fixes slash, backslash path separator problems within nunit test runner
NUNIT=(packages/NUnit.ConsoleRunner.*/tools/nunit3-console.exe)
NUNIT=(Tests/NUnit.ConsoleRunner.*/tools/nunit3-console.exe)
mono ${NUNIT[0]} --config=Release "Tests/Tests.csproj" || exit 1

createTag
Expand Down

0 comments on commit 018ef78

Please sign in to comment.