2025-05-05 12:37:42 -03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Dapper" Version="2.1.66" />
|
2025-05-05 15:49:01 -03:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.4" />
|
2025-05-05 12:37:42 -03:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.0.2" />
|
2025-05-23 15:47:39 -03:00
|
|
|
<PackageReference Include="NPOI" Version="2.7.3" />
|
2025-05-27 11:21:00 -03:00
|
|
|
<PackageReference Include="ReportViewerCore.NETCore" Version="15.1.26" />
|
2025-05-05 15:49:01 -03:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.1" />
|
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.9.0" />
|
2025-05-05 12:37:42 -03:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-06-18 12:15:41 -03:00
|
|
|
<ItemGroup>
|
|
|
|
|
<!-- Esto le dice a MSBuild que busque todos los archivos .rdlc -->
|
|
|
|
|
<Content Include="Controllers\Reportes\RDLC\**\*.rdlc">
|
|
|
|
|
<!-- Esto asegura que los archivos se copien a la carpeta de publicación -->
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-05-05 12:37:42 -03:00
|
|
|
</Project>
|