From 3f5d3a8c08b8008266206958e3f2a4d9551f37ff Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 25 Nov 2025 00:40:59 +0100 Subject: [PATCH] Add new ReC.Client project to solution A new project, ReC.Client, has been added to the solution file (ReC.sln). The project supports two target frameworks: net462 and net8.0. Build configurations for Debug and Release have been added, and the project has been nested under the same parent as other projects. The ReC.Client.csproj file uses the Microsoft.NET.Sdk SDK and includes conditional properties for frameworks other than net462, enabling implicit global usings and nullable reference types. --- ReC.sln | 7 +++++++ src/ReC.Client/ReC.Client.csproj | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 src/ReC.Client/ReC.Client.csproj diff --git a/ReC.sln b/ReC.sln index d12d1ea..2f6d98d 100644 --- a/ReC.sln +++ b/ReC.sln @@ -13,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReC.Infrastructure", "src\R EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReC.Application", "src\ReC.Application\ReC.Application.csproj", "{109645F5-441D-476B-B7D2-FBEAA8EBAE14}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReC.Client", "src\ReC.Client\ReC.Client.csproj", "{DA3A6BDD-8045-478F-860B-D1F0EB97F02B}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -35,6 +37,10 @@ Global {109645F5-441D-476B-B7D2-FBEAA8EBAE14}.Debug|Any CPU.Build.0 = Debug|Any CPU {109645F5-441D-476B-B7D2-FBEAA8EBAE14}.Release|Any CPU.ActiveCfg = Release|Any CPU {109645F5-441D-476B-B7D2-FBEAA8EBAE14}.Release|Any CPU.Build.0 = Release|Any CPU + {DA3A6BDD-8045-478F-860B-D1F0EB97F02B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DA3A6BDD-8045-478F-860B-D1F0EB97F02B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DA3A6BDD-8045-478F-860B-D1F0EB97F02B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DA3A6BDD-8045-478F-860B-D1F0EB97F02B}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -44,6 +50,7 @@ Global {2917BEA4-6C70-40CD-BD46-57D4ADB40296} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} {587A4D14-EFDA-4BE3-8912-D3AF84743079} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} {109645F5-441D-476B-B7D2-FBEAA8EBAE14} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} + {DA3A6BDD-8045-478F-860B-D1F0EB97F02B} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {F7B09104-4072-4635-9492-9C7C68D96ABD} diff --git a/src/ReC.Client/ReC.Client.csproj b/src/ReC.Client/ReC.Client.csproj new file mode 100644 index 0000000..983eb2b --- /dev/null +++ b/src/ReC.Client/ReC.Client.csproj @@ -0,0 +1,11 @@ + + + + net462;net8.0 + + + + enable + enable + +