Ocelot/Makefile
TomPallister 6e1dc3fd58 wip
2020-11-25 17:16:50 +00:00

23 lines
460 B
Makefile

NAME ?= ocelot
build:
dotnet tool restore --tool-manifest ./.config/dotnet-tools.json && dotnet cake --verbosity=diagnostic
build_and_run_tests:
./build.sh --target=RunTests
release:
./build.sh --target=Release
run_acceptance_tests:
./build.sh --target=RunAcceptanceTests
run_benchmarks:
./build.sh --target=RunBenchmarkTests
run_unit_tests:
./build.sh --target=RunUnitTests
release_notes:
./build.sh --target=ReleaseNotes