To get the most out of this book
In order to get the most out of this book, it is worth bearing the following in mind:
- This book covers many subjects. View it as a guide that you may want to revisit many times for different circumstances.
- Do not forget to have Visual Studio Community 2022 or higher installed.
- Be sure that you understand C# .NET principles.
Download the example code files
The code bundle for the book is hosted on GitHub at https://github.com/PacktPublishing/Software-Architecture-with-C-10-and-.NET-6-3E. We also have other code bundles from our rich catalog of books and videos available at https://github.com/PacktPublishing/. Check them out!
Download the color images
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. You can download it here: https://static.packt-cdn.com/downloads/9781803235257_ColorImages.pdf.
Conventions used
There are a number of text conventions used throughout this book.
CodeInText
: Indicates code words in the text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. For example: “The IServiceCollection
interface implemented by builder.Services
defines all services that can be injected into object constructors through DI.”
A block of code is set as follows:
[Fact]
public void Test1()
{
var myInstanceToTest = new ClassToTest();
Assert.Equal(5, myInstanceToTest.MethodToTest(1));
}
Any command-line input or output is written as follows:
kubectl apply -f myClusterConfiguration.yaml
Bold: Indicates a new term, an important word, or words that you see on the screen, for example, in menus or dialog boxes, also appear in the text like this. For example: “In the Git Changes tab, click the Create Git Repository button.”
Warnings or important notes appear like this.
Tips and tricks appear like this.