Initial commit

This commit is contained in:
Mark J Price 2022-10-19 10:00:19 +01:00
parent aa4b5073bf
commit 1fc0197897
8 changed files with 27 additions and 1 deletions

View file

@ -43,7 +43,7 @@ The appendix is available to download as a PDF:
- Appendix A, Answers to the Test Your Knowledge Questions (coming November 2022)
Supplementary print book materials available to download:
- Color images of the screenshots/diagrams used in this book (coming November 2022)
- Color images of the screenshots/diagrams used in this book: https://static.packt-cdn.com/downloads/9781803237800_ColorImages.pdf
## Important
Corrections for typos and other mistakes and improvements like refactoring code. Useful links to other related material.

8
docs/bonus/README.md Normal file
View file

@ -0,0 +1,8 @@
# Bonus book content
- Chapter 1, [Exploring code using .NET Interactive Notebooks](notebooks.md)
- Chapter 8, [Working with network resources](network-resources.md)
- Chapter 10, [Code First EF Core models](code-first-models.md)
- Chapter 11, [Using multiple threads with parallel LINQ](plinq.md)
- Chapter 15, [Implementing advanced features for web services](advanced-features.md)
- Chapter 16, [Improving Blazor WebAssembly apps](improving-wasm-apps.md)

View file

@ -0,0 +1,3 @@
# Implementing advanced features for web services
This is a bonus section for Chapter 15.

View file

@ -0,0 +1,3 @@
# Code First EF Core models
This is a bonus section for Chapter 10.

View file

@ -0,0 +1,3 @@
# Improving Blazor WebAssembly apps
This is a bonus section for Chapter 16.

View file

@ -0,0 +1,3 @@
# Working with network resources
This is a bonus section for Chapter 8.

3
docs/bonus/notebooks.md Normal file
View file

@ -0,0 +1,3 @@
# Exploring code using .NET Interactive Notebooks
This is a bonus section for Chapter 1.

3
docs/bonus/plinq.md Normal file
View file

@ -0,0 +1,3 @@
# Using multiple threads with parallel LINQ
This is a bonus section for Chapter 11.