Skip to content

Commit df6760b

Browse files
authored
📝 Permalink doc images (#17)
1 parent bfe6ce5 commit df6760b

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Spend less time over-engineering, and more time coding. The template has a focus
1414
Want to see what a vertical slice looks like? [Jump to the code snippet!](#full-code-snippet)
1515

1616
<p align="center">
17-
<img src="docs/divider-primary.png" />
17+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-primary.png?raw=true" />
1818
</p>
1919

2020
> [!IMPORTANT]
@@ -27,13 +27,13 @@ Want to see what a vertical slice looks like? [Jump to the code snippet!](#full-
2727
> If you would like updates, feel free to 'Watch' the repo, that way you'll see the release in your GitHub home feed.
2828
2929
<p align="center">
30-
<img src="docs/divider-primary.png" />
30+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-primary.png?raw=true" />
3131
</p>
3232

3333
<h3 align="center"><strong>Getting started ⚡</strong></h3>
3434

3535
<p align="center">
36-
<img src="docs/divider-primary.png" />
36+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-primary.png?raw=true" />
3737
</p>
3838

3939
#### dotnet CLI
@@ -73,7 +73,7 @@ then create:
7373
<h3 align="center"><strong>Features ✨</strong></h3>
7474

7575
<p align="center">
76-
<img src="docs/divider-primary.png" />
76+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-primary.png?raw=true" />
7777
</p>
7878

7979
### A compelling example with the TikTacToe game! 🎮
@@ -85,7 +85,7 @@ game.MakeMove(0, 1, Tile.Y);
8585
```
8686

8787
<p align="center">
88-
<img src="docs/divider-secondary.png" />
88+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-secondary.png?raw=true" />
8989
</p>
9090

9191
### Rich Domain (thank you DDD!)
@@ -106,7 +106,7 @@ public class Game
106106
```
107107

108108
<p align="center">
109-
<img src="docs/divider-secondary.png" />
109+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-secondary.png?raw=true" />
110110
</p>
111111

112112
### Quick to write feature slices
@@ -152,7 +152,7 @@ internal sealed class MyQuery(AppDbContext db)
152152
```
153153

154154
<p align="center">
155-
<img src="docs/divider-secondary.png" />
155+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-secondary.png?raw=true" />
156156
</p>
157157

158158
### EF Core
@@ -187,7 +187,7 @@ public class MyEntityConfiguration : IEntityTypeConfiguration<MyEntity>
187187
```
188188

189189
<p align="center">
190-
<img src="docs/divider-secondary.png" />
190+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-secondary.png?raw=true" />
191191
</p>
192192

193193
### Architecture Tests via NuGet package
@@ -210,7 +210,7 @@ public class VerticalSliceArchitectureTests
210210
```
211211

212212
<p align="center">
213-
<img src="docs/divider-secondary.png" />
213+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-secondary.png?raw=true" />
214214
</p>
215215

216216
### Cross Cutting Concerns
@@ -222,7 +222,7 @@ public class VerticalSliceArchitectureTests
222222
## Automated Testing
223223

224224
<p align="center">
225-
<img src="docs/divider-tertiary.png" />
225+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-tertiary.png?raw=true" />
226226
</p>
227227

228228
### Domain - Unit Tested
@@ -246,7 +246,7 @@ public void Game_MakeMove_BindsTile()
246246
```
247247

248248
<p align="center">
249-
<img src="docs/divider-secondary.png" />
249+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-secondary.png?raw=true" />
250250
</p>
251251

252252
### Application - Integration Tested
@@ -260,7 +260,7 @@ TODO
260260
```
261261

262262
<p align="center">
263-
<img src="docs/divider-secondary.png" />
263+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-secondary.png?raw=true" />
264264
</p>
265265

266266
### Code - Architecture Tested
@@ -318,7 +318,7 @@ internal sealed class PlayTurnCommand(AppDbContext db)
318318
If you read it this far, why not give it a star? ;)
319319

320320
<p align="center">
321-
<img src="docs/divider-tertiary.png" />
321+
<img src="https://github.com/Hona/VerticalSliceArchitecture/blob/main/docs/divider-tertiary.png?raw=true" />
322322
</p>
323323

324324

template/VerticalSliceArchitecture.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44

55
<id>Hona.VerticalSliceArchitecture.Template</id>
6-
<version>2.0.0-rc4</version>
6+
<version>2.0.0-rc5</version>
77
<title>Vertical Slice Architecture Template</title>
88
<authors>Luke Parker (Hona)</authors>
99
<description>Spend less time over-engineering, and more time coding. The template has a focus on convenience, and developer confidence.</description>

0 commit comments

Comments
 (0)