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:
@@ -43,6 +43,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnvelopeGenerator.Dependenc
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnvelopeGenerator.ReceiverUI", "EnvelopeGenerator.ReceiverUI\EnvelopeGenerator.ReceiverUI.csproj", "{FB2D306B-1042-4A70-31ED-F991A1599371}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnvelopeGenerator.Dto", "EnvelopeGenerator.Dto\EnvelopeGenerator.Dto.csproj", "{94470CB8-1BFA-4639-8DEA-8D8470837E0E}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@@ -101,6 +103,10 @@ Global
|
||||
{FB2D306B-1042-4A70-31ED-F991A1599371}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FB2D306B-1042-4A70-31ED-F991A1599371}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB2D306B-1042-4A70-31ED-F991A1599371}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{94470CB8-1BFA-4639-8DEA-8D8470837E0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{94470CB8-1BFA-4639-8DEA-8D8470837E0E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{94470CB8-1BFA-4639-8DEA-8D8470837E0E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{94470CB8-1BFA-4639-8DEA-8D8470837E0E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
@@ -122,6 +128,7 @@ Global
|
||||
{EC768913-6270-14F4-1DD3-69C87A659462} = {E3C758DC-914D-4B7E-8457-0813F1FDB0CB}
|
||||
{5DCCF9A1-C03F-90E6-87D3-E96DB25250C2} = {E3C758DC-914D-4B7E-8457-0813F1FDB0CB}
|
||||
{FB2D306B-1042-4A70-31ED-F991A1599371} = {E3C758DC-914D-4B7E-8457-0813F1FDB0CB}
|
||||
{94470CB8-1BFA-4639-8DEA-8D8470837E0E} = {9943209E-1744-4944-B1BA-4F87FC1A0EEB}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {73E60370-756D-45AD-A19A-C40A02DACCC7}
|
||||
|
||||
Reference in New Issue
Block a user