From f35e29ae493d7432b12881731230dace0441f5df Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 25 Nov 2025 00:31:34 +0100 Subject: [PATCH] Add ReC.Infrastructure project to the solution A new project, `ReC.Infrastructure`, has been added to the solution. The project is configured to target `.NET 8.0` and includes modern features such as implicit global usings and nullable reference types. It has been integrated into the solution's build configurations (Debug/Release for Any CPU) and nested under the `src` folder. --- ReC.sln | 7 +++++++ src/ReC.Infrastructure/ReC.Infrastructure.csproj | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/ReC.Infrastructure/ReC.Infrastructure.csproj diff --git a/ReC.sln b/ReC.sln index 81fc4c5..b761f6a 100644 --- a/ReC.sln +++ b/ReC.sln @@ -9,6 +9,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{02EA681E-C7D EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReC.Domain", "src\ReC.Domain\ReC.Domain.csproj", "{2917BEA4-6C70-40CD-BD46-57D4ADB40296}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReC.Infrastructure", "src\ReC.Infrastructure\ReC.Infrastructure.csproj", "{587A4D14-EFDA-4BE3-8912-D3AF84743079}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -23,6 +25,10 @@ Global {2917BEA4-6C70-40CD-BD46-57D4ADB40296}.Debug|Any CPU.Build.0 = Debug|Any CPU {2917BEA4-6C70-40CD-BD46-57D4ADB40296}.Release|Any CPU.ActiveCfg = Release|Any CPU {2917BEA4-6C70-40CD-BD46-57D4ADB40296}.Release|Any CPU.Build.0 = Release|Any CPU + {587A4D14-EFDA-4BE3-8912-D3AF84743079}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {587A4D14-EFDA-4BE3-8912-D3AF84743079}.Debug|Any CPU.Build.0 = Debug|Any CPU + {587A4D14-EFDA-4BE3-8912-D3AF84743079}.Release|Any CPU.ActiveCfg = Release|Any CPU + {587A4D14-EFDA-4BE3-8912-D3AF84743079}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -30,6 +36,7 @@ Global GlobalSection(NestedProjects) = preSolution {420218AD-3C27-4003-9A84-36C92352F175} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} {2917BEA4-6C70-40CD-BD46-57D4ADB40296} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} + {587A4D14-EFDA-4BE3-8912-D3AF84743079} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {F7B09104-4072-4635-9492-9C7C68D96ABD} diff --git a/src/ReC.Infrastructure/ReC.Infrastructure.csproj b/src/ReC.Infrastructure/ReC.Infrastructure.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/src/ReC.Infrastructure/ReC.Infrastructure.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + +