Files
GestionIntegralWeb/Backend/GestionIntegral.Api/GestionIntegral.Api.csproj

39 lines
1.6 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2025-06-19 18:20:33 -03:00
<EnableDefaultContentItems>false</EnableDefaultContentItems>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.66" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.4" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.3" />
2025-06-19 14:47:43 -03:00
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.0.2" />
<PackageReference Include="NPOI" Version="2.7.3" />
2025-06-19 14:47:43 -03:00
<PackageReference Include="PuppeteerSharp" Version="20.1.3" />
<PackageReference Include="RazorLight" Version="2.3.1" />
<PackageReference Include="ReportViewerCore.NETCore" Version="15.1.26" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.9.0" />
</ItemGroup>
<ItemGroup>
2025-06-19 17:48:16 -03:00
<!-- Esto le dice a MSBuild que busque todos los archivos .cshtml -->
<Content Include="Controllers\Reportes\Templates\**\*.cshtml">
2025-06-19 17:17:50 -03:00
<!-- Esto asegura que los archivos se copien a la carpeta de publicación -->
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2025-06-19 17:17:50 -03:00
2025-06-19 18:50:24 -03:00
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2025-06-19 17:17:50 -03:00
</Project>