Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Brayan Sarmiento
verificacionPrecios
Commits
6344538b
Commit
6344538b
authored
Apr 24, 2024
by
Brayan Sarmiento
Browse files
Initial commit
parents
Changes
388
Show whitespace changes
Inline
Side-by-side
Redsis.Clientes.VerificarPrecios.Manager/Infraestructura/Patrones/DbFactoryBase.cs
0 → 100644
View file @
6344538b
using
Microsoft.Extensions.Configuration
;
using
Npgsql
;
using
Redsis.Clientes.VerificarPrecios.Manager.Infraestructura.Enums
;
using
System
;
using
System.Collections.Generic
;
using
System.Data.SqlClient
;
using
System.Data
;
using
System.Linq
;
using
System.Reflection
;
using
System.Text
;
using
System.Threading.Tasks
;
using
Dapper
;
using
Npgsql
;
namespace
Redsis.Clientes.VerificarPrecios.Manager.Infraestructura.Patrones
{
public
class
DbFactoryBase
{
protected
readonly
IConfiguration
_config
;
public
readonly
string
_connectionString
;
private
TipoBaseDatos
_tipoDB
;
public
DbFactoryBase
(
IConfiguration
config
)
{
_config
=
config
;
_connectionString
=
_config
.
GetConnectionString
(
"DefaultConnection"
);
_tipoDB
=
TipoBaseDatos
.
SqlServer
;
}
public
DbFactoryBase
(
IConfiguration
config
,
string
connectionStringId
)
{
_config
=
config
;
_connectionString
=
config
.
GetConnectionString
(
connectionStringId
);
_tipoDB
=
TipoBaseDatos
.
SqlServer
;
}
public
DbFactoryBase
(
IConfiguration
config
,
string
connectionStringId
,
TipoBaseDatos
tipo
)
{
_config
=
config
;
_connectionString
=
config
.
GetValue
<
string
>(
$"ConnectionStrings:
{
connectionStringId
}
"
);
_tipoDB
=
tipo
;
}
internal
IDbConnection
DbConnection
=>
GetConnection
();
private
IDbConnection
GetConnection
()
{
switch
(
_tipoDB
)
{
case
TipoBaseDatos
.
SqlServer
:
return
new
SqlConnection
(
_connectionString
);
case
TipoBaseDatos
.
Postgresql
:
return
new
NpgsqlConnection
(
_connectionString
);
default
:
return
new
SqlConnection
(
_connectionString
);
}
}
public
virtual
async
Task
<
IEnumerable
<
T
>>
DbQueryAsync
<
T
>(
string
sql
,
object
parameters
=
null
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
if
(
parameters
==
null
)
return
await
dbCon
.
QueryAsync
<
T
>(
sql
,
commandTimeout
:
dbCon
.
ConnectionTimeout
);
return
await
dbCon
.
QueryAsync
<
T
>(
sql
,
parameters
,
commandTimeout
:
dbCon
.
ConnectionTimeout
);
}
public
virtual
async
Task
<
IEnumerable
<
T
>>
DbQueryMultiAsync
<
T
,
TP
>(
string
sql
,
string
_splitOn
,
string
property
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
return
(
await
dbCon
.
QueryAsync
<
T
,
TP
,
T
>(
sql
,
(
t
,
tp
)
=>
{
TrySetProperty
(
t
,
property
,
tp
);
return
t
;
},
splitOn
:
_splitOn
,
commandTimeout
:
dbCon
.
ConnectionTimeout
))
.
Distinct
()
.
ToList
();
}
private
static
void
TrySetProperty
(
object
obj
,
string
property
,
object
value
)
{
var
prop
=
obj
.
GetType
().
GetProperty
(
property
,
BindingFlags
.
Public
|
BindingFlags
.
Instance
);
if
(
prop
?.
CanWrite
==
true
)
prop
.
SetValue
(
obj
,
value
,
null
);
}
public
virtual
async
Task
<
T
>
DbQuerySingleAsync
<
T
>(
string
sql
,
object
parameters
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
return
await
dbCon
.
QueryFirstOrDefaultAsync
<
T
>(
sql
,
parameters
,
commandTimeout
:
dbCon
.
ConnectionTimeout
);
}
public
virtual
bool
DbExecute
<
T
>(
string
sql
,
object
parameters
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
return
dbCon
.
Execute
(
sql
,
parameters
,
commandTimeout
:
dbCon
.
ConnectionTimeout
)
>
0
;
}
public
virtual
async
Task
<
bool
>
DbExecuteAsync
<
T
>(
string
sql
,
object
parameters
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
return
await
dbCon
.
ExecuteAsync
(
sql
,
parameters
,
commandTimeout
:
dbCon
.
ConnectionTimeout
)
>
0
;
}
public
virtual
bool
DbExecute
<
T
>(
string
sql
,
object
parameters
,
int
timeout
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
return
dbCon
.
Execute
(
sql
,
parameters
,
commandTimeout
:
timeout
)
>
0
;
}
public
virtual
async
Task
<
bool
>
DbExecuteAsync
<
T
>(
string
sql
,
object
parameters
,
int
timeout
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
return
await
dbCon
.
ExecuteAsync
(
sql
,
parameters
,
commandTimeout
:
timeout
)
>
0
;
}
public
virtual
async
Task
<
bool
>
DbExecuteScalarAsync
(
string
sql
,
object
parameters
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
return
await
dbCon
.
ExecuteScalarAsync
<
bool
>(
sql
,
parameters
,
commandTimeout
:
dbCon
.
ConnectionTimeout
);
}
public
virtual
async
Task
<
T
>
DbExecuteScalarAsync
<
T
>(
string
sql
,
object
parameters
)
{
using
IDbConnection
dbCon
=
DbConnection
;
dbCon
.
Open
();
return
await
dbCon
.
ExecuteScalarAsync
<
T
>(
sql
,
parameters
,
commandTimeout
:
dbCon
.
ConnectionTimeout
);
}
}
}
Redsis.Clientes.VerificarPrecios.Manager/Redsis.Clientes.VerificarPrecios.Manager.csproj
0 → 100644
View file @
6344538b
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Npgsql" Version="8.0.2" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Redsis.Clientes.VerificacionPrecios.Core\Redsis.Clientes.VerificacionPrecios.Core.csproj" />
</ItemGroup>
</Project>
Redsis.Clientes.VerificarPrecios.Manager/VerificarGondola.cs
0 → 100644
View file @
6344538b
using
Microsoft.Extensions.Configuration
;
using
Microsoft.Extensions.Logging
;
using
Redsis.Clientes.VerificacionPrecios.Core.Contratos
;
using
Redsis.Clientes.VerificacionPrecios.Core.Entidades
;
using
Redsis.Clientes.VerificarPrecios.Manager.Infraestructura.Enums
;
using
Redsis.Clientes.VerificarPrecios.Manager.Infraestructura.Patrones
;
using
System
;
using
System.Collections.Generic
;
using
System.Data.SqlClient
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
Redsis.Clientes.VerificarPrecios.Manager
{
public
class
VerificarGondola
:
DbFactoryBase
,
IVerificarGondola
{
private
readonly
ILogger
<
VerificarPrecio
>
_logger
;
public
VerificarGondola
(
IConfiguration
config
,
ILogger
<
VerificarPrecio
>
logger
)
:
base
(
config
,
"SiesaMiddlewareConnection"
,
TipoBaseDatos
.
Postgresql
)
{
_logger
=
logger
;
}
public
async
Task
<
IEnumerable
<
ResultadoProcesamiento
>>
CrearVerificarPrecio
()
{
_logger
.
LogInformation
(
$"[
{
nameof
(
CrearVerificarPrecio
)}
] Se procede a ingresar a la base de datos de gondola"
);
try
{
const
string
qry
=
@"
select
TO_CHAR(
cast(i.pb_item_plu as int),
'fm0000000'
) id_articulo,
substring(p.pb_item_price_list_code,1,3) cod_precio,
(
case when pil.item_peso_variable = 'Si' then p.pb_item_special_price * 1000 else p.pb_item_price_value end
) pre_venta
from
pb_items i
inner join pb_items_prices p on (
case when p.pb_item_um = 'GRM' then 'UND' else p.pb_item_um end
) = i.pb_item_stock_um
and p.pb_item_plu = i.pb_item_plu
left join pb_items_labels pil on pil.pb_item_plu = i.pb_item_plu
where i.pb_item_plu <> '373'
and p.pb_item_price_list_code = upper(p.pb_item_price_list_code)
--and i.pb_item_plu = '219'"
;
return
await
DbQueryAsync
<
ResultadoProcesamiento
>(
qry
,
null
);
}
catch
(
Exception
ex
)
{
_logger
.
LogError
(
$"Error en CrearVerificarPrecio:
{
ex
.
Message
}
"
);
throw
;
}
}
}
}
Redsis.Clientes.VerificarPrecios.Manager/VerificarPrecio.cs
0 → 100644
View file @
6344538b
using
Microsoft.Extensions.Configuration
;
using
Microsoft.Extensions.Logging
;
using
Redsis.Clientes.VerificacionPrecios.Core.Contratos
;
using
Redsis.Clientes.VerificacionPrecios.Core.Entidades
;
using
Redsis.Clientes.VerificarPrecios.Manager.Infraestructura.Enums
;
using
Redsis.Clientes.VerificarPrecios.Manager.Infraestructura.Patrones
;
using
System.Data.SqlClient
;
namespace
Redsis.Clientes.VerificarPrecios.Manager
{
public
class
VerificarPrecio
:
DbFactoryBase
,
IVerificarPrecio
{
private
readonly
ILogger
<
VerificarPrecio
>
_logger
;
public
VerificarPrecio
(
IConfiguration
config
,
ILogger
<
VerificarPrecio
>
logger
)
:
base
(
config
,
"EvaConnectionString"
)
{
_logger
=
logger
;
}
public
async
Task
<
IEnumerable
<
ResultadoProcesamiento
>>
CrearVerificarPrecioBaseGondola
()
{
const
string
qry
=
@"select * from precios_articulos_vigentes"
;
return
await
DbQueryAsync
<
ResultadoProcesamiento
>(
qry
,
null
);
}
public
async
Task
<
long
>
InsertarPrecioVigenteEspejo
(
IEnumerable
<
ResultadoProcesamiento
>
resultados
)
{
long
registrosInsertados
=
0
;
_logger
.
LogInformation
(
$"[
{
nameof
(
InsertarPrecioVigenteEspejo
)}
] Se procede insertar los registros en la tabla espejo"
);
try
{
foreach
(
var
resultado
in
resultados
)
{
const
string
sqlQuery
=
@"INSERT INTO PreciosEspejo (id_articulo, cod_precio, pre_venta)
VALUES (@id_articulo,@cod_precio,@pre_venta)"
;
// Asignar valores de los resultados a los parámetros de la consulta
var
parametros
=
new
ResultadoProcesamiento
{
id_articulo
=
resultado
.
id_articulo
,
cod_precio
=
resultado
.
cod_precio
,
pre_venta
=
resultado
.
pre_venta
,
};
await
DbExecuteAsync
<
ResultadoProcesamiento
>(
sqlQuery
,
parametros
);
registrosInsertados
++;
}
_logger
.
LogInformation
(
$"[
{
nameof
(
InsertarPrecioVigenteEspejo
)}
] Se insertaron los registros"
);
}
catch
(
Exception
ex
)
{
_logger
.
LogError
(
$"[
{
nameof
(
InsertarPrecioVigenteEspejo
)}
] No se pudo insertar los registros en la tabla espejo
{
ex
}
"
);
}
return
registrosInsertados
;
}
//Eliminar los datos espejo
public
void
EliminarRegistroVerificarPrecioEspejo
()
{
_logger
.
LogInformation
(
$"[
{
nameof
(
EliminarRegistroVerificarPrecioEspejo
)}
] Se procede a eliminar los registros de la tabla espejo"
);
try
{
string
sqlQuery
=
@
$"delete from PreciosEspejo"
;
SqlConnection
conexion
=
new
SqlConnection
(
_config
.
GetConnectionString
(
"EvaConnectionString"
));
conexion
.
Open
();
SqlCommand
comando
=
new
SqlCommand
(
sqlQuery
,
conexion
);
comando
.
CommandTimeout
=
0
;
var
reader
=
comando
.
ExecuteReader
();
_logger
.
LogInformation
(
$"[
{
nameof
(
EliminarRegistroVerificarPrecioEspejo
)}
] Se eliminaron los registros de la tabla espejo"
);
conexion
.
Close
();
comando
.
Dispose
();
conexion
.
Dispose
();
}
catch
(
Exception
ex
)
{
_logger
.
LogError
(
$"[
{
nameof
(
EliminarRegistroVerificarPrecioEspejo
)}
] No se pudo eliminar los registros de la tabla espejo
{
ex
}
"
);
}
}
public
async
Task
<
long
>
ActualizarTablaPrecioEspejo
()
{
_logger
.
LogInformation
(
$"[
{
nameof
(
EliminarRegistroVerificarPrecioEspejo
)}
] Se procede a actualizar los registros de la tabla espejo"
);
const
string
sqlQuery
=
@"UPDATE pve
SET pve.pre_venta = pv.pre_venta,
pve.concuerda_precio = CASE
WHEN pv.pre_venta = pve.pre_venta THEN 'OK'
ELSE 'Error'
END,
pve.pre_venta_vigente = pv.pre_venta
FROM PreciosEspejo pve
INNER JOIN precios_articulos_vigentes pv ON pve.id_articulo = pv.id_articulo AND pve.cod_precio = pv.cod_precio;"
;
return
await
DbQuerySingleAsync
<
long
>(
sqlQuery
,
null
);
}
public
async
Task
<
IEnumerable
<
ResultadoProcesamiento
>>
ComprobarPreciosCentralGondola
()
{
const
string
qry
=
@"SELECT
A.id_articulo,
A.cod_precio,
A.pre_venta AS PreciosEspejo,
B.pre_venta AS Precios
FROM
PreciosEspejo A
JOIN
Precios B ON A.id_articulo = B.id_articulo
GROUP BY
A.id_articulo, A.cod_precio, A.pre_venta, B.pre_venta
HAVING
MIN(A.pre_venta) <> MIN(B.pre_venta);"
;
return
await
DbQueryAsync
<
ResultadoProcesamiento
>(
qry
,
null
);
}
}
}
\ No newline at end of file
Redsis.Clientes.VerificarPrecios.Manager/bin/Debug/net7.0/Redsis.Clientes.VerificacionPrecios.Core.dll
0 → 100644
View file @
6344538b
File added
Redsis.Clientes.VerificarPrecios.Manager/bin/Debug/net7.0/Redsis.Clientes.VerificacionPrecios.Core.pdb
0 → 100644
View file @
6344538b
File added
Redsis.Clientes.VerificarPrecios.Manager/bin/Debug/net7.0/Redsis.Clientes.VerificarPrecios.Manager.deps.json
0 → 100644
View file @
6344538b
{
"runtimeTarget"
:
{
"name"
:
".NETCoreApp,Version=v7.0"
,
"signature"
:
""
},
"compilationOptions"
:
{},
"targets"
:
{
".NETCoreApp,Version=v7.0"
:
{
"Redsis.Clientes.VerificarPrecios.Manager/1.0.0"
:
{
"dependencies"
:
{
"Dapper"
:
"2.1.35"
,
"Npgsql"
:
"8.0.2"
,
"Redsis.Clientes.VerificacionPrecios.Core"
:
"1.0.0"
,
"System.Data.SqlClient"
:
"4.8.6"
},
"runtime"
:
{
"Redsis.Clientes.VerificarPrecios.Manager.dll"
:
{}
}
},
"Dapper/2.1.35"
:
{
"runtime"
:
{
"lib/net7.0/Dapper.dll"
:
{
"assemblyVersion"
:
"2.0.0.0"
,
"fileVersion"
:
"2.1.35.13827"
}
}
},
"Microsoft.Extensions.Configuration/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Configuration.Binder/8.0.1"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.123.58001"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration"
:
"8.0.0"
,
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.FileProviders.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.FileProviders.Physical"
:
"8.0.0"
,
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Configuration.Json/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration"
:
"8.0.0"
,
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Configuration.FileExtensions"
:
"8.0.0"
,
"Microsoft.Extensions.FileProviders.Abstractions"
:
"8.0.0"
,
"System.Text.Json"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.Json.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1"
:
{
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.324.11423"
}
}
},
"Microsoft.Extensions.Diagnostics.Abstractions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.DependencyInjection.Abstractions"
:
"8.0.1"
,
"Microsoft.Extensions.Options"
:
"8.0.0"
,
"System.Diagnostics.DiagnosticSource"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.FileProviders.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.FileSystemGlobbing"
:
"8.0.0"
,
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/8.0.0"
:
{
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Hosting.Abstractions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.DependencyInjection.Abstractions"
:
"8.0.1"
,
"Microsoft.Extensions.Diagnostics.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.FileProviders.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Logging.Abstractions"
:
"8.0.1"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/8.0.1"
:
{
"dependencies"
:
{
"Microsoft.Extensions.DependencyInjection.Abstractions"
:
"8.0.1"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.324.11423"
}
}
},
"Microsoft.Extensions.Options/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.DependencyInjection.Abstractions"
:
"8.0.1"
,
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Options.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Primitives/8.0.0"
:
{
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Primitives.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.NETCore.Platforms/3.1.0"
:
{},
"Microsoft.Win32.Registry/4.7.0"
:
{
"dependencies"
:
{
"System.Security.AccessControl"
:
"4.7.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
}
},
"Npgsql/8.0.2"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Logging.Abstractions"
:
"8.0.1"
},
"runtime"
:
{
"lib/net7.0/Npgsql.dll"
:
{
"assemblyVersion"
:
"8.0.2.0"
,
"fileVersion"
:
"8.0.2.0"
}
}
},
"runtime.native.System.Data.SqlClient.sni/4.7.0"
:
{
"dependencies"
:
{
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni"
:
"4.4.0"
,
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni"
:
"4.4.0"
,
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni"
:
"4.4.0"
}
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"runtimeTargets"
:
{
"runtimes/win-arm64/native/sni.dll"
:
{
"rid"
:
"win-arm64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"4.6.25512.1"
}
}
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"runtimeTargets"
:
{
"runtimes/win-x64/native/sni.dll"
:
{
"rid"
:
"win-x64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"4.6.25512.1"
}
}
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"runtimeTargets"
:
{
"runtimes/win-x86/native/sni.dll"
:
{
"rid"
:
"win-x86"
,
"assetType"
:
"native"
,
"fileVersion"
:
"4.6.25512.1"
}
}
},
"System.Data.SqlClient/4.8.6"
:
{
"dependencies"
:
{
"Microsoft.Win32.Registry"
:
"4.7.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
,
"runtime.native.System.Data.SqlClient.sni"
:
"4.7.0"
},
"runtime"
:
{
"lib/netcoreapp2.1/System.Data.SqlClient.dll"
:
{
"assemblyVersion"
:
"4.6.1.6"
,
"fileVersion"
:
"4.700.23.52603"
}
},
"runtimeTargets"
:
{
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll"
:
{
"rid"
:
"unix"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.6.1.6"
,
"fileVersion"
:
"4.700.23.52603"
},
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll"
:
{
"rid"
:
"win"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.6.1.6"
,
"fileVersion"
:
"4.700.23.52603"
}
}
},
"System.Diagnostics.DiagnosticSource/8.0.0"
:
{
"runtime"
:
{
"lib/net7.0/System.Diagnostics.DiagnosticSource.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"System.Security.AccessControl/4.7.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
}
},
"System.Security.Principal.Windows/4.7.0"
:
{},
"System.Text.Encodings.Web/8.0.0"
:
{
"runtime"
:
{
"lib/net7.0/System.Text.Encodings.Web.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
},
"runtimeTargets"
:
{
"runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll"
:
{
"rid"
:
"browser"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"System.Text.Json/8.0.0"
:
{
"dependencies"
:
{
"System.Text.Encodings.Web"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/System.Text.Json.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Redsis.Clientes.VerificacionPrecios.Core/1.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Configuration.Binder"
:
"8.0.1"
,
"Microsoft.Extensions.Configuration.Json"
:
"8.0.0"
,
"Microsoft.Extensions.Hosting.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Logging.Abstractions"
:
"8.0.1"
},
"runtime"
:
{
"Redsis.Clientes.VerificacionPrecios.Core.dll"
:
{}
}
}
}
},
"libraries"
:
{
"Redsis.Clientes.VerificarPrecios.Manager/1.0.0"
:
{
"type"
:
"project"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Dapper/2.1.35"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-YKRwjVfrG7GYOovlGyQoMvr1/IJdn+7QzNXJxyMh0YfFF5yvDmTYaJOVYWsckreNjGsGSEtrMTpnzxTUq/tZQw=="
,
"path"
:
"dapper/2.1.35"
,
"hashPath"
:
"dapper.2.1.35.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA=="
,
"path"
:
"microsoft.extensions.configuration/8.0.0"
,
"hashPath"
:
"microsoft.extensions.configuration.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ=="
,
"path"
:
"microsoft.extensions.configuration.abstractions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/8.0.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-2UKFJnLiBt7Od6nCnTqP9rTIUNhzmn9Hv1l2FchyKbz8xieB9ULwZTbQZMw+M24Qw3F5dzzH1U9PPleN0LNLOQ=="
,
"path"
:
"microsoft.extensions.configuration.binder/8.0.1"
,
"hashPath"
:
"microsoft.extensions.configuration.binder.8.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w=="
,
"path"
:
"microsoft.extensions.configuration.fileextensions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw=="
,
"path"
:
"microsoft.extensions.configuration.json/8.0.0"
,
"hashPath"
:
"microsoft.extensions.configuration.json.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA=="
,
"path"
:
"microsoft.extensions.dependencyinjection.abstractions/8.0.1"
,
"hashPath"
:
"microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Diagnostics.Abstractions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q=="
,
"path"
:
"microsoft.extensions.diagnostics.abstractions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ=="
,
"path"
:
"microsoft.extensions.fileproviders.abstractions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA=="
,
"path"
:
"microsoft.extensions.fileproviders.physical/8.0.0"
,
"hashPath"
:
"microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ=="
,
"path"
:
"microsoft.extensions.filesystemglobbing/8.0.0"
,
"hashPath"
:
"microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Hosting.Abstractions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg=="
,
"path"
:
"microsoft.extensions.hosting.abstractions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/8.0.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg=="
,
"path"
:
"microsoft.extensions.logging.abstractions/8.0.1"
,
"hashPath"
:
"microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Options/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g=="
,
"path"
:
"microsoft.extensions.options/8.0.0"
,
"hashPath"
:
"microsoft.extensions.options.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g=="
,
"path"
:
"microsoft.extensions.primitives/8.0.0"
,
"hashPath"
:
"microsoft.extensions.primitives.8.0.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/3.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w=="
,
"path"
:
"microsoft.netcore.platforms/3.1.0"
,
"hashPath"
:
"microsoft.netcore.platforms.3.1.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA=="
,
"path"
:
"microsoft.win32.registry/4.7.0"
,
"hashPath"
:
"microsoft.win32.registry.4.7.0.nupkg.sha512"
},
"Npgsql/8.0.2"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-MuJzLoWCaQhQAR3oh66YR0Ir6mxuezncGX3f8wxvAc21g0+9HICktJQlqMoODhxztZKXE5k9GxRxqUAN+vPb4g=="
,
"path"
:
"npgsql/8.0.2"
,
"hashPath"
:
"npgsql.8.0.2.nupkg.sha512"
},
"runtime.native.System.Data.SqlClient.sni/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ=="
,
"path"
:
"runtime.native.system.data.sqlclient.sni/4.7.0"
,
"hashPath"
:
"runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
,
"path"
:
"runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0"
,
"hashPath"
:
"runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
,
"path"
:
"runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0"
,
"hashPath"
:
"runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
,
"path"
:
"runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0"
,
"hashPath"
:
"runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"System.Data.SqlClient/4.8.6"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig=="
,
"path"
:
"system.data.sqlclient/4.8.6"
,
"hashPath"
:
"system.data.sqlclient.4.8.6.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
,
"path"
:
"system.diagnostics.diagnosticsource/8.0.0"
,
"hashPath"
:
"system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512"
},
"System.Security.AccessControl/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg=="
,
"path"
:
"system.security.accesscontrol/4.7.0"
,
"hashPath"
:
"system.security.accesscontrol.4.7.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ=="
,
"path"
:
"system.security.principal.windows/4.7.0"
,
"hashPath"
:
"system.security.principal.windows.4.7.0.nupkg.sha512"
},
"System.Text.Encodings.Web/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ=="
,
"path"
:
"system.text.encodings.web/8.0.0"
,
"hashPath"
:
"system.text.encodings.web.8.0.0.nupkg.sha512"
},
"System.Text.Json/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ=="
,
"path"
:
"system.text.json/8.0.0"
,
"hashPath"
:
"system.text.json.8.0.0.nupkg.sha512"
},
"Redsis.Clientes.VerificacionPrecios.Core/1.0.0"
:
{
"type"
:
"project"
,
"serviceable"
:
false
,
"sha512"
:
""
}
}
}
\ No newline at end of file
Redsis.Clientes.VerificarPrecios.Manager/bin/Debug/net7.0/Redsis.Clientes.VerificarPrecios.Manager.dll
0 → 100644
View file @
6344538b
File added
Redsis.Clientes.VerificarPrecios.Manager/bin/Debug/net7.0/Redsis.Clientes.VerificarPrecios.Manager.pdb
0 → 100644
View file @
6344538b
File added
Redsis.Clientes.VerificarPrecios.Manager/bin/Release/net7.0/Redsis.Clientes.VerificacionPrecios.Core.dll
0 → 100644
View file @
6344538b
File added
Redsis.Clientes.VerificarPrecios.Manager/bin/Release/net7.0/Redsis.Clientes.VerificacionPrecios.Core.pdb
0 → 100644
View file @
6344538b
File added
Redsis.Clientes.VerificarPrecios.Manager/bin/Release/net7.0/Redsis.Clientes.VerificarPrecios.Manager.deps.json
0 → 100644
View file @
6344538b
{
"runtimeTarget"
:
{
"name"
:
".NETCoreApp,Version=v7.0"
,
"signature"
:
""
},
"compilationOptions"
:
{},
"targets"
:
{
".NETCoreApp,Version=v7.0"
:
{
"Redsis.Clientes.VerificarPrecios.Manager/1.0.0"
:
{
"dependencies"
:
{
"Dapper"
:
"2.1.35"
,
"Npgsql"
:
"8.0.2"
,
"Redsis.Clientes.VerificacionPrecios.Core"
:
"1.0.0"
,
"System.Data.SqlClient"
:
"4.8.6"
},
"runtime"
:
{
"Redsis.Clientes.VerificarPrecios.Manager.dll"
:
{}
}
},
"Dapper/2.1.35"
:
{
"runtime"
:
{
"lib/net7.0/Dapper.dll"
:
{
"assemblyVersion"
:
"2.0.0.0"
,
"fileVersion"
:
"2.1.35.13827"
}
}
},
"Microsoft.Extensions.Configuration/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Configuration.Binder/8.0.1"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.123.58001"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration"
:
"8.0.0"
,
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.FileProviders.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.FileProviders.Physical"
:
"8.0.0"
,
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Configuration.Json/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration"
:
"8.0.0"
,
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Configuration.FileExtensions"
:
"8.0.0"
,
"Microsoft.Extensions.FileProviders.Abstractions"
:
"8.0.0"
,
"System.Text.Json"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Configuration.Json.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1"
:
{
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.324.11423"
}
}
},
"Microsoft.Extensions.Diagnostics.Abstractions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.DependencyInjection.Abstractions"
:
"8.0.1"
,
"Microsoft.Extensions.Options"
:
"8.0.0"
,
"System.Diagnostics.DiagnosticSource"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.FileProviders.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.FileSystemGlobbing"
:
"8.0.0"
,
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/8.0.0"
:
{
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Hosting.Abstractions/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.DependencyInjection.Abstractions"
:
"8.0.1"
,
"Microsoft.Extensions.Diagnostics.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.FileProviders.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Logging.Abstractions"
:
"8.0.1"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/8.0.1"
:
{
"dependencies"
:
{
"Microsoft.Extensions.DependencyInjection.Abstractions"
:
"8.0.1"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.324.11423"
}
}
},
"Microsoft.Extensions.Options/8.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.DependencyInjection.Abstractions"
:
"8.0.1"
,
"Microsoft.Extensions.Primitives"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Options.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.Extensions.Primitives/8.0.0"
:
{
"runtime"
:
{
"lib/net7.0/Microsoft.Extensions.Primitives.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Microsoft.NETCore.Platforms/3.1.0"
:
{},
"Microsoft.Win32.Registry/4.7.0"
:
{
"dependencies"
:
{
"System.Security.AccessControl"
:
"4.7.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
}
},
"Npgsql/8.0.2"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Logging.Abstractions"
:
"8.0.1"
},
"runtime"
:
{
"lib/net7.0/Npgsql.dll"
:
{
"assemblyVersion"
:
"8.0.2.0"
,
"fileVersion"
:
"8.0.2.0"
}
}
},
"runtime.native.System.Data.SqlClient.sni/4.7.0"
:
{
"dependencies"
:
{
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni"
:
"4.4.0"
,
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni"
:
"4.4.0"
,
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni"
:
"4.4.0"
}
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"runtimeTargets"
:
{
"runtimes/win-arm64/native/sni.dll"
:
{
"rid"
:
"win-arm64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"4.6.25512.1"
}
}
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"runtimeTargets"
:
{
"runtimes/win-x64/native/sni.dll"
:
{
"rid"
:
"win-x64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"4.6.25512.1"
}
}
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"runtimeTargets"
:
{
"runtimes/win-x86/native/sni.dll"
:
{
"rid"
:
"win-x86"
,
"assetType"
:
"native"
,
"fileVersion"
:
"4.6.25512.1"
}
}
},
"System.Data.SqlClient/4.8.6"
:
{
"dependencies"
:
{
"Microsoft.Win32.Registry"
:
"4.7.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
,
"runtime.native.System.Data.SqlClient.sni"
:
"4.7.0"
},
"runtime"
:
{
"lib/netcoreapp2.1/System.Data.SqlClient.dll"
:
{
"assemblyVersion"
:
"4.6.1.6"
,
"fileVersion"
:
"4.700.23.52603"
}
},
"runtimeTargets"
:
{
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll"
:
{
"rid"
:
"unix"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.6.1.6"
,
"fileVersion"
:
"4.700.23.52603"
},
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll"
:
{
"rid"
:
"win"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.6.1.6"
,
"fileVersion"
:
"4.700.23.52603"
}
}
},
"System.Diagnostics.DiagnosticSource/8.0.0"
:
{
"runtime"
:
{
"lib/net7.0/System.Diagnostics.DiagnosticSource.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"System.Security.AccessControl/4.7.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
}
},
"System.Security.Principal.Windows/4.7.0"
:
{},
"System.Text.Encodings.Web/8.0.0"
:
{
"runtime"
:
{
"lib/net7.0/System.Text.Encodings.Web.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
},
"runtimeTargets"
:
{
"runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll"
:
{
"rid"
:
"browser"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"System.Text.Json/8.0.0"
:
{
"dependencies"
:
{
"System.Text.Encodings.Web"
:
"8.0.0"
},
"runtime"
:
{
"lib/net7.0/System.Text.Json.dll"
:
{
"assemblyVersion"
:
"8.0.0.0"
,
"fileVersion"
:
"8.0.23.53103"
}
}
},
"Redsis.Clientes.VerificacionPrecios.Core/1.0.0"
:
{
"dependencies"
:
{
"Microsoft.Extensions.Configuration.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Configuration.Binder"
:
"8.0.1"
,
"Microsoft.Extensions.Configuration.Json"
:
"8.0.0"
,
"Microsoft.Extensions.Hosting.Abstractions"
:
"8.0.0"
,
"Microsoft.Extensions.Logging.Abstractions"
:
"8.0.1"
},
"runtime"
:
{
"Redsis.Clientes.VerificacionPrecios.Core.dll"
:
{}
}
}
}
},
"libraries"
:
{
"Redsis.Clientes.VerificarPrecios.Manager/1.0.0"
:
{
"type"
:
"project"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Dapper/2.1.35"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-YKRwjVfrG7GYOovlGyQoMvr1/IJdn+7QzNXJxyMh0YfFF5yvDmTYaJOVYWsckreNjGsGSEtrMTpnzxTUq/tZQw=="
,
"path"
:
"dapper/2.1.35"
,
"hashPath"
:
"dapper.2.1.35.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA=="
,
"path"
:
"microsoft.extensions.configuration/8.0.0"
,
"hashPath"
:
"microsoft.extensions.configuration.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ=="
,
"path"
:
"microsoft.extensions.configuration.abstractions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/8.0.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-2UKFJnLiBt7Od6nCnTqP9rTIUNhzmn9Hv1l2FchyKbz8xieB9ULwZTbQZMw+M24Qw3F5dzzH1U9PPleN0LNLOQ=="
,
"path"
:
"microsoft.extensions.configuration.binder/8.0.1"
,
"hashPath"
:
"microsoft.extensions.configuration.binder.8.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w=="
,
"path"
:
"microsoft.extensions.configuration.fileextensions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw=="
,
"path"
:
"microsoft.extensions.configuration.json/8.0.0"
,
"hashPath"
:
"microsoft.extensions.configuration.json.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA=="
,
"path"
:
"microsoft.extensions.dependencyinjection.abstractions/8.0.1"
,
"hashPath"
:
"microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Diagnostics.Abstractions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q=="
,
"path"
:
"microsoft.extensions.diagnostics.abstractions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ=="
,
"path"
:
"microsoft.extensions.fileproviders.abstractions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA=="
,
"path"
:
"microsoft.extensions.fileproviders.physical/8.0.0"
,
"hashPath"
:
"microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ=="
,
"path"
:
"microsoft.extensions.filesystemglobbing/8.0.0"
,
"hashPath"
:
"microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Hosting.Abstractions/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg=="
,
"path"
:
"microsoft.extensions.hosting.abstractions/8.0.0"
,
"hashPath"
:
"microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/8.0.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg=="
,
"path"
:
"microsoft.extensions.logging.abstractions/8.0.1"
,
"hashPath"
:
"microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Options/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g=="
,
"path"
:
"microsoft.extensions.options/8.0.0"
,
"hashPath"
:
"microsoft.extensions.options.8.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g=="
,
"path"
:
"microsoft.extensions.primitives/8.0.0"
,
"hashPath"
:
"microsoft.extensions.primitives.8.0.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/3.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w=="
,
"path"
:
"microsoft.netcore.platforms/3.1.0"
,
"hashPath"
:
"microsoft.netcore.platforms.3.1.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA=="
,
"path"
:
"microsoft.win32.registry/4.7.0"
,
"hashPath"
:
"microsoft.win32.registry.4.7.0.nupkg.sha512"
},
"Npgsql/8.0.2"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-MuJzLoWCaQhQAR3oh66YR0Ir6mxuezncGX3f8wxvAc21g0+9HICktJQlqMoODhxztZKXE5k9GxRxqUAN+vPb4g=="
,
"path"
:
"npgsql/8.0.2"
,
"hashPath"
:
"npgsql.8.0.2.nupkg.sha512"
},
"runtime.native.System.Data.SqlClient.sni/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ=="
,
"path"
:
"runtime.native.system.data.sqlclient.sni/4.7.0"
,
"hashPath"
:
"runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
,
"path"
:
"runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0"
,
"hashPath"
:
"runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
,
"path"
:
"runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0"
,
"hashPath"
:
"runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
,
"path"
:
"runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0"
,
"hashPath"
:
"runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"System.Data.SqlClient/4.8.6"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig=="
,
"path"
:
"system.data.sqlclient/4.8.6"
,
"hashPath"
:
"system.data.sqlclient.4.8.6.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
,
"path"
:
"system.diagnostics.diagnosticsource/8.0.0"
,
"hashPath"
:
"system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512"
},
"System.Security.AccessControl/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg=="
,
"path"
:
"system.security.accesscontrol/4.7.0"
,
"hashPath"
:
"system.security.accesscontrol.4.7.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ=="
,
"path"
:
"system.security.principal.windows/4.7.0"
,
"hashPath"
:
"system.security.principal.windows.4.7.0.nupkg.sha512"
},
"System.Text.Encodings.Web/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ=="
,
"path"
:
"system.text.encodings.web/8.0.0"
,
"hashPath"
:
"system.text.encodings.web.8.0.0.nupkg.sha512"
},
"System.Text.Json/8.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ=="
,
"path"
:
"system.text.json/8.0.0"
,
"hashPath"
:
"system.text.json.8.0.0.nupkg.sha512"
},
"Redsis.Clientes.VerificacionPrecios.Core/1.0.0"
:
{
"type"
:
"project"
,
"serviceable"
:
false
,
"sha512"
:
""
}
}
}
\ No newline at end of file
Redsis.Clientes.VerificarPrecios.Manager/bin/Release/net7.0/Redsis.Clientes.VerificarPrecios.Manager.dll
0 → 100644
View file @
6344538b
File added
Redsis.Clientes.VerificarPrecios.Manager/bin/Release/net7.0/Redsis.Clientes.VerificarPrecios.Manager.pdb
0 → 100644
View file @
6344538b
File added
Redsis.Clientes.VerificarPrecios.Manager/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
0 → 100644
View file @
6344538b
// <autogenerated />
using
System
;
using
System.Reflection
;
[
assembly
:
global
::
System
.
Runtime
.
Versioning
.
TargetFrameworkAttribute
(
".NETCoreApp,Version=v7.0"
,
FrameworkDisplayName
=
".NET 7.0"
)]
Redsis.Clientes.VerificarPrecios.Manager/obj/Debug/net7.0/Redsis.Clientes.VerificarPrecios.Manager.AssemblyInfo.cs
0 → 100644
View file @
6344538b
//------------------------------------------------------------------------------
// <auto-generated>
// Este código fue generado por una herramienta.
// Versión de runtime:4.0.30319.42000
//
// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
// se vuelve a generar el código.
// </auto-generated>
//------------------------------------------------------------------------------
using
System
;
using
System.Reflection
;
[
assembly
:
System
.
Reflection
.
AssemblyCompanyAttribute
(
"Redsis.Clientes.VerificarPrecios.Manager"
)]
[
assembly
:
System
.
Reflection
.
AssemblyConfigurationAttribute
(
"Debug"
)]
[
assembly
:
System
.
Reflection
.
AssemblyFileVersionAttribute
(
"1.0.0.0"
)]
[
assembly
:
System
.
Reflection
.
AssemblyInformationalVersionAttribute
(
"1.0.0"
)]
[
assembly
:
System
.
Reflection
.
AssemblyProductAttribute
(
"Redsis.Clientes.VerificarPrecios.Manager"
)]
[
assembly
:
System
.
Reflection
.
AssemblyTitleAttribute
(
"Redsis.Clientes.VerificarPrecios.Manager"
)]
[
assembly
:
System
.
Reflection
.
AssemblyVersionAttribute
(
"1.0.0.0"
)]
// Generado por la clase WriteCodeFragment de MSBuild.
Redsis.Clientes.VerificarPrecios.Manager/obj/Debug/net7.0/Redsis.Clientes.VerificarPrecios.Manager.AssemblyInfoInputs.cache
0 → 100644
View file @
6344538b
330647c376f6eeda99dbd5d97ee4322edc72c251
Redsis.Clientes.VerificarPrecios.Manager/obj/Debug/net7.0/Redsis.Clientes.VerificarPrecios.Manager.GeneratedMSBuildEditorConfig.editorconfig
0 → 100644
View file @
6344538b
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Redsis.Clientes.VerificarPrecios.Manager
build_property.ProjectDir = C:\Discod\Aplicaciones Eva\Verificacion de precios\Redsis.Clientes.VerifiacionPrecios\Redsis.Clientes.VerificarPrecios.Manager\
Redsis.Clientes.VerificarPrecios.Manager/obj/Debug/net7.0/Redsis.Clientes.VerificarPrecios.Manager.GlobalUsings.g.cs
0 → 100644
View file @
6344538b
// <auto-generated/>
global
using
global
::
System
;
global
using
global
::
System
.
Collections
.
Generic
;
global
using
global
::
System
.
IO
;
global
using
global
::
System
.
Linq
;
global
using
global
::
System
.
Net
.
Http
;
global
using
global
::
System
.
Threading
;
global
using
global
::
System
.
Threading
.
Tasks
;
Redsis.Clientes.VerificarPrecios.Manager/obj/Debug/net7.0/Redsis.Clientes.VerificarPrecios.Manager.assets.cache
0 → 100644
View file @
6344538b
File added
Prev
1
…
14
15
16
17
18
19
20
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment