Introduce a new project, `EnvelopeGenerator.Dto`, targeting .NET 8.0. The project is configured with implicit `using` directives and nullable reference types enabled. Update the solution file to include the new project, its build configurations (Debug/Release for Any CPU), and its hierarchical relationship in the `NestedProjects` section.
10 lines
209 B
XML
10 lines
209 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|