-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
51 lines (39 loc) · 1.27 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Run the show command
show:
dotnet run --project src/MyCalendar.fsproj show
# Run the todo add command
todo-add:
dotnet run --project src/MyCalendar.fsproj todo add
# Run the todo edit command
todo-edit:
dotnet run --project src/MyCalendar.fsproj todo edit
# Run the todo done command
todo-done:
dotnet run --project src/MyCalendar.fsproj todo done
# Run the todo undone command
todo-undone:
dotnet run --project src/MyCalendar.fsproj todo undone
# Run the todo delete command
todo-delete:
dotnet run --project src/MyCalendar.fsproj todo delete
# Run the event add command
event-add:
dotnet run --project src/MyCalendar.fsproj event add
# Run the event edit command
event-edit:
dotnet run --project src/MyCalendar.fsproj event edit
# Run the event delete command
event-delete:
dotnet run --project src/MyCalendar.fsproj event delete
# Run the recurring-event add command
recurring-event-add:
dotnet run --project src/MyCalendar.fsproj recurring-event add
# Run the recurring-event edit command
recurring-event-edit:
dotnet run --project src/MyCalendar.fsproj recurring-event edit
# Run the recurring-event delete command
recurring-event-delete:
dotnet run --project src/MyCalendar.fsproj recurring-event delete
# Format all the project
format:
dotnet tool run fantomas . -r