rabbitmq-tutorials/dotnet/recompile.sh
kjnilsson a428309600 dotnet: add instructions for running dotnet restore.
Also added restore to the recompile.sh script
2016-12-14 09:01:20 +00:00

7 lines
76 B
Bash
Executable File

#!/bin/sh
for f in */; do \
dotnet restore $f
dotnet build $f
done