-
Book Overview & Buying
-
Table Of Contents
Apps and Services with .NET 10 - Third Edition
By :
How should you structure your projects? In this book, we will build multiple projects using different technologies that work together to provide a single solution. With large, complex solutions, you will often have many projects that need the same packages, and updating their versions every time a new version is released is a pain. Let’s review how we can manage this.
If you complete all the coding tasks in this book, then you will end up with dozens of projects. Many of those will be websites and services that require port numbers for hosting on the localhost domain.
With large, complex solutions, it can be difficult to navigate the entire code. So, a good reason to structure your projects well is to make it easier to find components. It is good to have an overall name for your solution that reflects the application or solution.
In the 1990s, Microsoft registered Northwind as a fictional company name for use in database and code samples. It was first used as the sample database for their Access product and then also used in SQL Server. We will build multiple projects for this fictional company, so we will use the name Northwind as a prefix for all the project names.
Good practice: There are many ways to structure and name projects and solutions, for example, using a folder hierarchy as well as a naming convention. If you work in a team, make sure you know how your team does it.
It is good to have a naming convention for your projects in a solution so that any developer can tell what each one does instantly. A common choice is to use the type of project, for example, class library, console app, website, and so on, as shown in Table 1.8:
|
Name |
Description |
|
|
A class library project for common types like interfaces, enums, classes, records, and structs, used across multiple projects. |
|
|
A class library project for common EF Core entity models. Entity models are often used on both the server and client side, so it is best to separate dependencies on specific database providers. |
|
|
A class library project for the EF Core database context with dependencies on specific database providers. |
|
|
An ASP.NET Core project for an HTTP API service. A good choice for integrating with websites because it can use any JavaScript library or Blazor to interact with the service. |
|
|
A client to a web service. The last part of the name indicates that it is a console app. |
|
|
An ASP.NET Core project for a gRPC service. |
Table 1.8: Example naming conventions for common project types
To enable you to run any of these projects simultaneously, we must make sure that we do not configure duplicated port numbers. I have used the following convention:
https://localhost:5[chapternumber]1/
http://localhost:5[chapternumber]2/
For example, for the encrypted connection to the website built in Chapter 10, Building and Securing Minimal API Web Services, I used port 5101, as shown in the following link:
The folder structure that we will use in this book is shown in Figure 1.3:

Figure 1.3: Folder structure for all the solutions and projects created in this book
By default, with the .NET SDK CLI and most code editor-created projects, if you need to reference a NuGet package, you add the reference to the package name and version directly in the project file, as shown in the following markup:
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer"
Version="10.0.0" />
...
</ItemGroup>
Central Package Management (CPM) is a feature that simplifies the management of NuGet package versions across multiple projects and solutions within a directory hierarchy. This is particularly useful for large solutions with many projects, where managing package versions individually can become cumbersome and error-prone.
The key features and benefits of CPM include:
Directory.Packages.props, which is placed in the root directory of a directory hierarchy that contains all your solutions and projects. This file centralizes the version information for all NuGet packages used across the projects in your solutions..csproj). This makes project files cleaner and easier to manage, as they no longer contain repetitive version information.Good practice: It is important to regularly update NuGet packages and their dependencies to address security vulnerabilities.
Microsoft packages usually have the same number each month, like 10.0.2 in February, 10.0.3 in March, and so on. You can define properties at the top of your Directory.Packages.props file and then reference these properties throughout the file. This approach keeps package versions consistent and makes updates easy.
For example, at the top of the Directory.Packages.props file, within a <ProjectGroup> tag, define your custom property and then reference it for the package version, as shown in the following markup:
<Project>
<PropertyGroup>
<MicrosoftPackageVersion>10.0.2</MicrosoftPackageVersion>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.EntityFrameworkCore"
Version="$(MicrosoftPackageVersion)" />
<PackageVersion Include="Microsoft.Extensions.Logging"
Version="$(MicrosoftPackageVersion)" />
<!-- Add more Microsoft packages as needed. -->
</ItemGroup>
<!-- Other packages with specific versions. -->
<ItemGroup>
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
</Project>
Note the following about the preceding configuration:
<PropertyGroup> element, the line <MicrosoftPackageVersion>10.0.2</MicrosoftPackageVersion> defines the property. This value can be changed once at the top of the file, and all references will update automatically.$(PropertyName) to reference the defined property. All occurrences of $(MicrosoftPackageVersion) will resolve to the version number that you set.When the monthly update rolls around, for example, from 10.0.2 to 10.0.3, you only have to update this number once.
You might want separate properties for related packages if they differ in version number, such as:
<AspNetCorePackageVersion>10.0.3</AspNetCorePackageVersion>
<EFCorePackageVersion>10.1.2</EFCorePackageVersion>
This allows independent updates if packages later diverge in their release cycles or versions.
After making changes, at the terminal or command prompt, run the following command:
dotnet restore
This will verify the correctness of your references and quickly alert you if you’ve introduced errors. By adopting this pattern combined with CPM, you simplify version management, reduce redundancy, and make your projects easier to maintain over time.
Good practice: Choose clear and consistent property names, like MicrosoftPackageVersion or AspNetCorePackageVersion, to easily distinguish between different package ecosystems. Check your Directory.Packages.props file into source control. Regularly update and test after changing versions to ensure compatibility.
Let’s set up Central Package Management for a solution that we will use throughout the rest of the chapters in this book. Let’s go:
apps-services-net10 that we will use for all the code in this book. For example, on Windows, create a folder: C:\apps-services-net10.Good practice: For all the projects that you create for this book, keep your root path short and avoid using # in your folder and file names, or you might see compiler errors like RSG002: TargetPath not specified for additional file. For example, do not use C:\My C# projects\ as your root path!
apps-services-net10 folder, create a new file named Directory.Packages.props. At the command prompt or terminal, you can use the following command: dotnet new packagesprops
To save you time manually typing this large file, you can download it at the following link: https://github.com/markjprice/apps-services-net10/blob/main/code/Directory.Packages.props.
Directory.Packages.props, modify its contents, as shown in the following markup:
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true
</ManagePackageVersionsCentrally>
<Net10>10.0.2</Net10>
<Avalonia>11.3.11</Avalonia>
<AI>10.2.0-preview.1.26063.2</AI>
<Hangfire>1.8.22</Hangfire>
<HotChocolate>15.1.11</HotChocolate>
</PropertyGroup>
<ItemGroup Label="Common packages in multiple chapters.">
<!--For binding configuration from appsettings.json and environment variables-->
<PackageVersion
Include="Microsoft.Extensions.Configuration.Binder"
Version="$(Net10)" />
<PackageVersion
Include="Microsoft.Extensions.Configuration.Json"
Version="$(Net10)" />
<PackageVersion Include=
"Microsoft.Extensions.Configuration.EnvironmentVariables"
Version="$(Net10)" />
<!--For HTTP hosting and resilience.-->
<PackageVersion
Include="Microsoft.Extensions.Hosting"
Version="$(Net10)" />
<PackageVersion
Include="Microsoft.Extensions.DependencyInjection"
Version="$(Net10)" />
<PackageVersion
Include="Microsoft.Extensions.Http"
Version="$(Net10)" />
<PackageVersion
Include="Microsoft.Extensions.Http.Resilience"
Version="10.2.0" />
<!--For logging to console.-->
<PackageVersion
Include="Microsoft.Extensions.Logging.Console"
Version="$(Net10)" />
<PackageVersion
Include="Microsoft.Extensions.Logging.Debug"
Version="$(Net10)" />
<PackageVersion
Include="Spectre.Console"
Version="0.54.0" />
<!--For unit testing.-->
<PackageVersion
Include="coverlet.collector" Version="6.0.4" />
<PackageVersion
Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio"
Version="3.1.5" />
<!--For JSON processing.-->
<PackageVersion Include="Newtonsoft.Json"
Version="13.0.4" />
</ItemGroup>
<ItemGroup Label=
"Chapter 1 Introducing Apps and Services with .NET">
<PackageVersion Include="BenchmarkDotNet" Version="0.15.8" />
</ItemGroup>
<ItemGroup Label=
"Chapter 2 Building Mobile Apps Using .NET MAUI.">
<PackageVersion Include="Microsoft.Maui.Controls"
Version="10.0.20" />
<PackageVersion Include="CommunityToolkit.Mvvm"
Version="8.4.0" />
<PackageVersion Include="CommunityToolkit.Maui"
Version="13.0.0" />
</ItemGroup>
<ItemGroup Label=
"Chapter 3 Building Desktop Apps Using Avalonia.">
<PackageVersion Include="Avalonia" Version="$(Avalonia)" />
<PackageVersion Include="Avalonia.Desktop"
Version="$(Avalonia)" />
<PackageVersion Include="Avalonia.Themes.Fluent"
Version="$(Avalonia)" />
<PackageVersion Include="Avalonia.Fonts.Inter"
Version="$(Avalonia)" />
<PackageVersion Include="Avalonia.Diagnostics"
Version="$(Avalonia)" />
</ItemGroup>
<ItemGroup Label="Chapter 4 Building Web Apps Using Blazor.">
<PackageVersion Include=
"Microsoft.AspNetCore.Components.WebAssembly.Server"
Version="$(Net10)" />
<PackageVersion Include=
"Microsoft.AspNetCore.Components.WebAssembly"
Version="$(Net10)" />
<PackageVersion Include=
"Microsoft.AspNetCore.Components.WebAssembly.DevServer"
Version="$(Net10)" />
<PackageVersion
Include="Microsoft.AspNetCore.Components.QuickGrid"
Version="$(Net10)" />
<PackageVersion Include="Radzen.Blazor" Version="8.6.0" />
</ItemGroup>
<ItemGroup Label=
"Chapter 5 Using Popular Third-Party Libraries">
<PackageVersion Include="SixLabors.ImageSharp"
Version="3.1.12" />
<PackageVersion Include="Humanizer"
Version="3.0.1" />
<PackageVersion Include="Serilog" Version="4.3.0" />
<PackageVersion Include="Serilog.Sinks.Console"
Version="6.1.1" />
<PackageVersion Include="Serilog.Sinks.File"
Version="7.0.0" />
<PackageVersion Include="Serilog.Sinks.Async"
Version="2.1.0" />
<!-- AutoMapper 15 or later requires a licence. -->
<PackageVersion Include="AutoMapper" Version="14.0.0" />
<PackageVersion Include="Mapster" Version="7.4.0" />
<!--FluentAssertions 8.0.0 and later have restricted the licence.-->
<!--Minimum 7.2.0 (inclusive) up to maximum 8.0.0 (exclusive).-->
<PackageVersion Include="FluentAssertions"
Version="[7.2.0,8.0.0)" />
<PackageVersion Include="FluentValidation" Version="12.1.1" />
<!-- The newest version with an MIT license (07/02/2024). -->
<PackageVersion Include="QuestPDF" Version="2022.12.15" />
<!-- A 2023.* or later version requires setting the Settings.License property. -->
<!--
<PackageReference Include="QuestPDF" Version="2025.7.1" />
-->
</ItemGroup>
<ItemGroup Label=
"Chapter 6 Handling Dates, Times, and Internationalization">
<!-- The newest version before the controversy. -->
<PackageVersion Include="Moq" Version="4.18.4" />
<PackageVersion
Include="Microsoft.Extensions.Localization"
Version="$(Net10)" />
<PackageVersion Include="NodaTime" Version="3.3.0" />
</ItemGroup>
<ItemGroup Label=
"Chapter 7 Managing Relational Data Using SQL">
<PackageVersion Include="Microsoft.Data.SqlClient"
Version="6.1.3" />
<PackageVersion Include="Npgsql" Version="10.0.1" />
<PackageVersion Include="Dapper" Version="2.1.66" />
</ItemGroup>
<ItemGroup Label=
"Chapter 8 Building Entity Models Using EF Core">
<PackageVersion
Include="Microsoft.EntityFrameworkCore.Design"
Version="$(Net10)" />
<PackageVersion
Include="Microsoft.EntityFrameworkCore.SqlServer"
Version="$(Net10)" />
<PackageVersion
Include="Npgsql.EntityFrameworkCore.PostgreSQL"
Version="10.0.0" />
</ItemGroup>
<ItemGroup Label=
"Chapter 9 Building an LLM-Based Chat Service">
<PackageVersion
Include="Microsoft.Extensions.AI.OpenAI"
Version="$(AI)" />
<PackageVersion
Include="Microsoft.Extensions.AI"
Version="10.1.1" />
<PackageVersion
Include="Microsoft.Extensions.DataIngestion"
Version="$(AI)" />
<PackageVersion
Include="Microsoft.Extensions.DataIngestion.Markdig"
Version="$(AI)" />
<PackageVersion Include="PdfPig" Version="0.1.13" />
<PackageVersion
Include="Microsoft.ML.Tokenizers.Data.Cl100kBase"
Version="1.0.1" />
<PackageVersion
Include="Microsoft.ML.Tokenizers.Data.O200kBase"
Version="1.0.1" />
<PackageVersion Include=
"Microsoft.SemanticKernel.Connectors.SqliteVec"
Version="1.67.1-preview" />
<PackageVersion Include="ModelContextProtocol"
Version="0.5.0-preview.1" />
<PackageVersion Include="OllamaSharp" Version="5.4.12" />
</ItemGroup>
<ItemGroup Label=
"Chapter 10 Building and Securing Minimal API Web Services">
<PackageVersion
Include="Microsoft.AspNetCore.OpenApi"
Version="$(Net10)" />
<PackageVersion Include="Scalar.AspNetCore"
Version="2.12.6" />
<PackageVersion Include="AspNetCoreRateLimit"
Version="5.0.0" />
<PackageVersion
Include="Microsoft.AspNetCore.Authentication.JwtBearer"
Version="$(Net10)" />
</ItemGroup>
<ItemGroup Label="Chapter 11 Caching, Queuing, and Resilient Background Services">
<PackageVersion
Include="Microsoft.Extensions.Caching.Hybrid"
Version="10.2.0" />
<PackageVersion
Include="Microsoft.Extensions.Http.Polly"
Version="$(Net10)" />
<PackageVersion
Include="Polly.Contrib.WaitAndRetry"
Version="1.1.1" />
<PackageVersion Include="RabbitMQ.Client"
Version="7.2.0" />
<PackageVersion Include="Hangfire.Core"
Version="$(Hangfire)" />
<PackageVersion Include="Hangfire.SqlServer"
Version="$(Hangfire)" />
<PackageVersion Include="Hangfire.AspNetCore"
Version="$(Hangfire)" />
</ItemGroup>
<ItemGroup Label="Chapter 12 Broadcasting Real-Time Communication Using SignalR">
<PackageVersion
Include="Microsoft.AspNetCore.SignalR.Client"
Version="$(Net10)" />
</ItemGroup>
<ItemGroup Label=
"Chapter 13 Combining Data Sources Using GraphQL">
<PackageVersion
Include="HotChocolate.AspNetCore"
Version="$(HotChocolate)" />
<PackageVersion
Include="HotChocolate.Data.EntityFramework"
Version="$(HotChocolate)" />
<PackageVersion
Include="StrawberryShake.Server"
Version="$(HotChocolate)" />
</ItemGroup>
<ItemGroup Label=
"Chapter 14 Building Efficient Microservices Using gRPC">
<PackageVersion Include="Google.Protobuf"
Version="3.33.4" />
<PackageVersion Include="Grpc.AspNetCore"
Version="2.76.0" />
<PackageVersion Include="Grpc.Net.ClientFactory"
Version="2.76.0" />
<PackageVersion Include="Grpc.Tools"
Version="2.76.0" />
<PackageVersion
Include="Microsoft.AspNetCore.Grpc.JsonTranscoding"
Version="$(Net10)" />
</ItemGroup>
<ItemGroup Label=
"Chapter X1 Managing NoSQL Data Using Azure Cosmos DB">
<PackageVersion Include="Microsoft.Azure.Cosmos"
Version="3.53.1" />
<PackageVersion Include="Gremlin.net"
Version="3.7.4" />
</ItemGroup>
<ItemGroup Label="Chapter X2 Building Serverless Nanoservices Using Azure Functions">
<PackageVersion Include="NCrontab.Signed"
Version="3.4.0" />
<PackageVersion
Include="Microsoft.Azure.Functions.Extensions"
Version="1.1.0" />
<PackageVersion
Include="Microsoft.Azure.Functions.Worker"
Version="2.1.0" />
<PackageVersion
Include="Microsoft.Azure.Functions.Worker.Sdk"
Version="2.0.5" />
<PackageVersion Include=
"Microsoft.Azure.Functions.Worker.Extensions.Http"
Version="3.3.0" />
<PackageVersion Include=
"Microsoft.Azure.Functions.Worker.Extensions.Timer"
Version="4.3.1" />
<PackageVersion Include=
"Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues"
Version="5.5.3" />
<PackageVersion Include=
"Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs"
Version="6.8.0" />
<PackageVersion Include="SixLabors.ImageSharp.Drawing"
Version="2.1.7" />
</ItemGroup>
</Project>
Warning! The <ManagePackageVersionsCentrally> element and its true value must go all on one line. Also, you cannot use floating wildcard version numbers like 10.0-* as you can in an individual project. Wildcards are useful to automatically get the latest patch version, for example, monthly package updates on Patch Tuesday. But with CPM you must manually update the versions.
For any projects that we add underneath the folder containing this file, we can reference the packages without explicitly specifying the version, as shown in the following markup:
<ItemGroup>
<PackageReference
Include="Microsoft.EntityFrameworkCore.SqlServer" />
<PackageReference
Include="Microsoft.EntityFrameworkCore.Design" />
</ItemGroup>
You should regularly review and update the package versions in the Directory.Packages.props file to ensure that you are using the latest stable releases with important bug fixes and performance improvements.
Good practice: I recommend that you set a monthly event in your calendar for the second Wednesday of each month. This will occur after the second Tuesday of each month, which is Patch Tuesday when Microsoft releases bug fixes and patches for .NET and related packages.
For example, throughout 2026 there are likely to be new versions each month, so you can go to the NuGet page for each of your packages. You can then update individual package versions if necessary, for example, as shown in the following markup:
<ItemGroup Label="For EF Core.">
<PackageVersion
Include="Microsoft.EntityFrameworkCore.SqlServer"
Version="10.0.3" />
Or, if you have defined custom properties referenced by multiple packages, update those version numbers, as shown highlighted in the following markup:
<PropertyGroup>
<ManagePackageVersionsCentrally>true
</ManagePackageVersionsCentrally>
<Net10>10.0.3</Net10>
Before updating package versions, check for any breaking changes in the release notes of the packages. Test your solution thoroughly after updating to ensure compatibility.
Educate your team and document the purpose and usage of the Directory.Packages.props file to ensure everyone understands how to manage package versions centrally.
In each individual project file you can override an individual package version by using the VersionOverride attribute on a <PackageReference /> element, as shown highlighted in the following markup:
<PackageReference
Include="Microsoft.EntityFrameworkCore.SqlServer"
VersionOverride="10.0.0" />
This can be useful if a newer version introduces a regression bug so you can force the use of an older version without the bug until the bug is fixed in a later patch version.
Warning! If you see error NU1008 The following PackageReference items cannot define a value for Version: PackageName. Projects using Central Package Management must define a Version value on a PackageVersion item., then remove the version attribute from the package reference in your project file. You can learn more at the following link: https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu1008.
You can learn more about CPM at the following link: https://learn.microsoft.com/en-us/nuget/consume-packages/central-package-management.
If you use CPM and you have more than one package source configured for your code editor, as shown in Figure 1.4, then you will see NuGet Warning NU1507. For example, if you have both the default package source (https://api.nuget.org/v3/index.json) and a custom package source configured:
There are 2 package sources defined in your configuration. When using central package management, please map your package sources with package source mapping (https://aka.ms/nuget-package-source-mapping) or specify a single package source. The following sources are defined: https://api.nuget.org/v3/index.json, https://contoso.myget.org/F/development/.

Figure 1.4: Visual Studio with two NuGet package sources configured
NU1507 warning reference page can be found at the following link: https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu1507.
Package Source Mapping (PSM) can help safeguard your software supply chain if you use a mix of public and private package sources as in the preceding example.
By default, NuGet will search all configured package sources when it needs to download a package. When a package exists on multiple sources, it may not be deterministic which source the package will be downloaded from. With PSM, you can filter, per package, which source(s) NuGet will search.
PSM is supported by Visual Studio 2022, .NET 6 and later, and NuGet 6 and later. Older tooling will ignore the PSM configuration.
Now let’s see how to enable PSM.
To enable PSM, you must have a nuget.config file.
Good practice: Create a nuget.config file at the root of your source code directory hierarchy.
In a PSM file, there are two parts: defining package sources, and mapping package sources to packages. All requested packages must map to one or more sources by matching a defined package pattern. In other words, once you have defined a packageSourceMapping element, you must explicitly define which sources every package – including transitive packages – will be restored from.
For example, if you want most packages to be sourced from the default nuget.org site, but there are some private packages that must be sourced from your organization’s website, you would define the two package sources, and set the mapping (assuming all your private packages are named Northwind.Something), as shown in the following markup:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- <clear /> ensures no additional sources are inherited from
another config file. -->
<clear />
<!-- key can be any identifier for your source. -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="Northwind" value="https://northwind.com/packages" />
</packageSources>
<!-- All packages sourced from nuget.org except Northwind packages. -->
<packageSourceMapping>
<!-- key value for <packageSource> should match key values
from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="Northwind">
<package pattern="Northwind.*" />
</packageSource>
</packageSourceMapping>
</configuration>
Let’s create a nuget.config for all the solutions and projects in this book that will use nuget.org as the source for all packages:
apps-services-net10 folder, create a new file named nuget.config.nuget.config, modify its contents, as shown in the following markup:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- <clear /> ensures no additional sources are inherited from another config file. -->
<packageSources>
<clear />
<!-- key can be any identifier for your source. -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<!-- All packages sourced from nuget.org. -->
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>
You can learn more about nuget.config at the following link: https://learn.microsoft.com/en-us/nuget/reference/nuget-config-file.
You can learn more about PSM at the following link: https://learn.microsoft.com/en-us/nuget/consume-packages/package-source-mapping.
By default, compiler warnings may appear if there are potential problems with your code when you first build a project, but they do not prevent compilation, and they are hidden if you rebuild. Warnings are given for a reason, so ignoring warnings encourages poor development practices.
Some developers would prefer to be forced to fix warnings, so .NET provides a project setting to do this, as shown highlighted in the following markup:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
I have enabled the option to treat warnings as errors in (almost) all the solutions in the GitHub repository.
The exceptions are the gRPC projects. This is due to a combination of factors. In .NET 7 or later, the compiler will warn if you compile source files that contain only lowercase letters in the name of a type. For example, if you define a person class, as shown in the following code:
public class person
{
}
This compiler warning has been introduced so that a future version of C# can safely add a new keyword knowing it will not conflict with the name of a type that you have used, because only C# keywords should contain only lowercase letters.
Unfortunately, the Google tools for generating C# source files from .proto files generate aliases for class names that only contain lowercase letters, as shown in the following code:
#region Designer generated code
using pb = global::Google.Protobuf;
If you treat warnings as errors, then the compiler complains and refuses to compile the source code, as shown in the following output:
Error CS8981 The type name 'pb' only contains lower-cased ascii characters. Such names may become reserved for the language. Northwind.Grpc.Service C:\apps-services-net10\Chapter14\Northwind.Grpc.Service\obj\Debug\net10.0\Protos\Greet.cs
Good Practice: Always treat warnings as errors in your .NET projects (except for gRPC projects until Google updates their code generation tools).
If you find that you get too many errors after enabling this, you can disable specific warnings by using the <WarningsNotAsErrors> element with a comma-separated list of warning codes, as shown in the following markup:
<WarningsNotAsErrors>0219,CS8981</WarningsNotAsErrors>
The warning codes may include their prefix or not, for example, CS8981 or 8991.
You can learn more about controlling warnings as errors at the following link: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/errors-warnings#warningsaserrors-and-warningsnotaserrors.
Now that you have set up your development environment and configured central package management for your projects, let’s build an entity model for use in the rest of the book to provide data for the apps that you will build.
Change the font size
Change margin width
Change background colour