forked from VladislavAntonyuk/MauiSamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.mdpp
41 lines (25 loc) · 1.31 KB
/
README.mdpp
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
# KanbanBoard
!INCLUDE "./md/header.mdpp"
Article: https://vladislavantonyuk.github.io/articles/Creating-Kanban-Board-using-Xamarin-Forms-5
## Build
```pwsh
dotnet ef dbcontext optimize -o Models\Optimized -c KanbanBoardDbContext -n KanbanBoard
dotnet build KanbanBoard.csproj -t:Run -f net8.0-android
xcrun simctl list devices
dotnet build KanbanBoard.csproj -t:Run -f net8.0-ios -p:_DeviceName=:v2:udid=XXX
dotnet build KanbanBoard.csproj -t:Run -f net8.0-maccatalyst
dotnet build KanbanBoard.csproj -t:Run -f net8.0-windows10.0.19041.0
dotnet build KanbanBoard.csproj -t:Run -f net8.0-tizen
```
## Images
### Add columns and cards
![kanban1](https://user-images.githubusercontent.com/33021114/109400008-ddc4bc00-794e-11eb-9909-58e6403b29e1.png)
### Draw & Drop cards
![Drag & Drop](https://user-images.githubusercontent.com/33021114/109400009-de5d5280-794e-11eb-97a9-cc980dd74a93.png)
### Check WIP limit
![WIP is reached](https://user-images.githubusercontent.com/33021114/109400010-de5d5280-794e-11eb-8600-643220c150d7.png)
### Delete cards
![Delete card](https://user-images.githubusercontent.com/33021114/109400005-dc938f00-794e-11eb-8fce-3c8ac6f12502.png)
### Delete columns
![Delete column](https://user-images.githubusercontent.com/33021114/109400007-ddc4bc00-794e-11eb-94a4-ebf858198c6d.png)
!INCLUDE "./md/footer.mdpp"