forked from pawelsawicz/devWarsztaty-ScoreService
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
24 lines (19 loc) · 896 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
all: cleanup restore build run
run-tests: cleanup restore build tests
cleanup:
dotnet clean src/devWarsztaty-ScoringService
dotnet clean test/devWarsztaty-ScoringService.Tests
dotnet clean test/devWarsztaty-ScoringService.IntegrationTests
restore:
dotnet restore src/devWarsztaty-ScoringService
dotnet restore test/devWarsztaty-ScoringService.Tests
dotnet restore test/devWarsztaty-ScoringService.IntegrationTests
build:
dotnet build src/devWarsztaty-ScoringService
dotnet build test/devWarsztaty-ScoringService.Tests
dotnet build test/devWarsztaty-ScoringService.IntegrationTests
run:
dotnet run -p src/devWarsztaty-ScoringService/devWarsztaty-ScoringService.csproj
tests:
dotnet test test/devWarsztaty-ScoringService.Tests/devWarsztaty-ScoringService.Tests.csproj
dotnet test test/devWarsztaty-ScoringService.IntegrationTests/devWarsztaty-ScoringService.IntegrationTests.csproj