iTec.Package.Integrations.Lufe
1.0.13
dotnet add package iTec.Package.Integrations.Lufe --version 1.0.13
NuGet\Install-Package iTec.Package.Integrations.Lufe -Version 1.0.13
<PackageReference Include="iTec.Package.Integrations.Lufe" Version="1.0.13" />
<PackageVersion Include="iTec.Package.Integrations.Lufe" Version="1.0.13" />
<PackageReference Include="iTec.Package.Integrations.Lufe" />
paket add iTec.Package.Integrations.Lufe --version 1.0.13
#r "nuget: iTec.Package.Integrations.Lufe, 1.0.13"
#:package iTec.Package.Integrations.Lufe@1.0.13
#addin nuget:?package=iTec.Package.Integrations.Lufe&version=1.0.13
#tool nuget:?package=iTec.Package.Integrations.Lufe&version=1.0.13
Pasos para configurar las credenciales de autenticaci�n en Google Cloud:
1. Crear una cuenta de servicio:
- Ve a la consola de Google Cloud: Google Cloud Console.
- Navega a IAM & Admin > Cuentas de servicio.
- Crea una nueva cuenta de servicio con permisos de BigQuery Admin (esto le permitir� a tu aplicaci�n insertar datos en BigQuery).
2. Generar claves para la cuenta de servicio:
- Una vez que la cuenta de servicio est� creada, selecciona la cuenta y haz clic en Administrar claves.
- Crea una clave nueva en formato JSON y desc�rgala a tu m�quina.
3. Configurar la variable de entorno:
- El archivo JSON que descargaste contiene las credenciales que tu aplicaci�n utilizar� para autenticarse con Google Cloud.
- Establece la variable de entorno
GOOGLE_APPLICATION_CREDENTIALSen tu sistema para que apunte a la ruta del archivo de claves JSON.
4. Leer archivo de configuracion:
GoogleCredential credential;
using (var stream = new FileStream("path-to-your-service-account-file.json", FileMode.Open, FileAccess.Read))
{
credential = GoogleCredential.FromStream(stream);
}
_client = BigQueryClient.Create(projectId, credential);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- iTec.Core (>= 1.0.6)
- itext7 (>= 9.1.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.13 | 418 | 7/25/2025 |
| 1.0.12 | 212 | 5/27/2025 |
| 1.0.11 | 235 | 5/6/2025 |
| 1.0.10 | 199 | 5/5/2025 |
| 1.0.9 | 230 | 4/21/2025 |
| 1.0.8 | 248 | 4/10/2025 |
| 1.0.7 | 216 | 3/31/2025 |
| 1.0.6 | 195 | 3/27/2025 |
| 1.0.5 | 200 | 3/27/2025 |
| 1.0.4 | 189 | 11/5/2024 |
| 1.0.3 | 177 | 10/23/2024 |
| 1.0.2 | 186 | 10/16/2024 |
| 1.0.1 | 167 | 10/15/2024 |
| 1.0.0 | 160 | 10/7/2024 |
v1.0.2 - Todos los indicadores son de tipo float y corregimos bug que traia periodos nulls
v1.0.3 - Fix bug en parseo de fecha de presentacion
v1.0.4 - Se agregan indicadores Post Balance y método para obtener consulta por Id
v1.0.5 - Correcciones en tipo de datos de Indicadores y se agregar DTOs con respectivos Mappers
v1.0.6 - Se agrega posibilidad de esperar guardado de Consulta para poder obtener su Id
v1.0.7
- feat: Se agregan descripciones de Impuestos y Actividades
- fix: corrección en consultas de Indicadores por período, para no consultar dos veces al actual
- fix: corrección de nomenclatura de Accionistas
v1.0.8
- fix: se permiten nulos en valores de Indicadores Financieros
- fix: se modifica parser de fechas para permitir diferentes formatos
v1.0.9
- feat: se agregan descripciones de estados dentro de Impuestos y Actividades
v1.0.10
- feat: soporte para balances de lufe con pdfs anexados adentro
v1.0.11
- fix: corrijo error al procesar pdfs sin anotaciones embebidas
v1.0.12
- fix: corrijo error al intentar procesar pdfs contenido
v1.0.13
- build: se actualiza por version net8 y iTec.Core (v1.0.6)