chore(infrastructure): create DigitalData.DEX.Infrastructure project for database and RabbitMQ connections

This commit is contained in:
tekh 2025-07-18 10:54:04 +02:00
parent e64ca8a868
commit dabf7cfa86
2 changed files with 16 additions and 0 deletions

View File

@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DigitalData.DEX.Domain", "s
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DigitalData.DEX.Infrastructure", "src\DigitalData.DEX.Infrastructure\DigitalData.DEX.Infrastructure\DigitalData.DEX.Infrastructure.csproj", "{A5FA2526-54E9-4888-8C86-D41158F43EA0}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -17,12 +19,17 @@ Global
{AD06090D-AE41-73AA-BB77-1E95E10042E3}.Debug|Any CPU.Build.0 = Debug|Any CPU {AD06090D-AE41-73AA-BB77-1E95E10042E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AD06090D-AE41-73AA-BB77-1E95E10042E3}.Release|Any CPU.ActiveCfg = Release|Any CPU {AD06090D-AE41-73AA-BB77-1E95E10042E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AD06090D-AE41-73AA-BB77-1E95E10042E3}.Release|Any CPU.Build.0 = Release|Any CPU {AD06090D-AE41-73AA-BB77-1E95E10042E3}.Release|Any CPU.Build.0 = Release|Any CPU
{A5FA2526-54E9-4888-8C86-D41158F43EA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A5FA2526-54E9-4888-8C86-D41158F43EA0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5FA2526-54E9-4888-8C86-D41158F43EA0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5FA2526-54E9-4888-8C86-D41158F43EA0}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
EndGlobalSection EndGlobalSection
GlobalSection(NestedProjects) = preSolution GlobalSection(NestedProjects) = preSolution
{AD06090D-AE41-73AA-BB77-1E95E10042E3} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} {AD06090D-AE41-73AA-BB77-1E95E10042E3} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
{A5FA2526-54E9-4888-8C86-D41158F43EA0} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
EndGlobalSection EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {302A2F1C-9D6F-4BA7-9796-598CA4E4B43E} SolutionGuid = {302A2F1C-9D6F-4BA7-9796-598CA4E4B43E}

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>