feat: Initial project structure setup with solution and projects

This commit is contained in:
2025-07-01 10:46:13 -03:00
parent 3170aa4010
commit 76635a0da9
19 changed files with 327 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Mercados.Infrastructure\Mercados.Infrastructure.csproj" />
</ItemGroup>
</Project>