Add EnvelopeGenerator.Dto project to the solution
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.
This commit is contained in:
9
EnvelopeGenerator.Dto/EnvelopeGenerator.Dto.csproj
Normal file
9
EnvelopeGenerator.Dto/EnvelopeGenerator.Dto.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user