añade inicio del back

This commit is contained in:
2025-08-07 13:36:31 +02:00
parent dc68641cfe
commit 9b373d1929
83 changed files with 63060 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Aspire.AppHost.Sdk" Version="9.0.0" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAspireHost>true</IsAspireHost>
<UserSecretsId>aa4cdb69-248d-4f6e-898d-fb3177ba1268</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\back.ApiService\back.ApiService.csproj" />
<ProjectReference Include="..\back.Web\back.Web.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.0.0" />
</ItemGroup>
</Project>