oh hell no
This commit is contained in:
@@ -38,6 +38,7 @@ namespace Vista
|
||||
private void InicializarFormulario()
|
||||
{
|
||||
numId.Value = nuevoproducto.Id;
|
||||
nuevoproducto = ControladoraProductos.Instance.MostrarPorId(nuevoproducto);
|
||||
numId.Enabled = false;
|
||||
txtNombre.Text = nuevoproducto.Nombre;
|
||||
numPrecio.Value = (decimal)nuevoproducto.Precio;
|
||||
@@ -52,30 +53,26 @@ namespace Vista
|
||||
numConsumoPreferente.Value = Prodperc.MesesHastaConsumoPreferente;
|
||||
numvencimiento.Value = Prodperc.MesesHastaVencimiento;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
private void CargarTabla()
|
||||
{
|
||||
dgvProveedor.DataSource = null;
|
||||
dgvProveedor.DataSource = ControladoraProductos.Instance.ListarProveedores();
|
||||
if (mod)
|
||||
{
|
||||
dgvProveedorAñadido.DataSource = ControladoraProductos.Instance.ListarProveedores(nuevoproducto);
|
||||
|
||||
}
|
||||
|
||||
|
||||
dgvCategoria.DataSource = null;
|
||||
dgvCategoria.DataSource = ControladoraCategorias.Instance.Listar();
|
||||
|
||||
if (mod)
|
||||
{
|
||||
dgvCategoriaAñadida.DataSource = ControladoraProductos.Instance.ListarCategorias(nuevoproducto);
|
||||
|
||||
dgvProveedorAñadido.DataSource = nuevoproducto.proveedores.AsReadOnly();
|
||||
|
||||
dgvCategoriaAñadida.DataSource = null;
|
||||
dgvCategoriaAñadida.DataSource = nuevoproducto.categorias.AsReadOnly();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void CargarNumid()
|
||||
|
||||
@@ -67,7 +67,7 @@ namespace Vista
|
||||
|
||||
var remito = new Remito
|
||||
{
|
||||
Proveedor = orden.Proveedor
|
||||
Proveedor = orden.Proveedor,
|
||||
};
|
||||
foreach (var detalle in ControladoraRemito.Instance.ListarDetallesOrdenesDeCompra(orden))
|
||||
{
|
||||
@@ -76,7 +76,6 @@ namespace Vista
|
||||
Cantidad = detalle.Cantidad,
|
||||
Fecha = DateTime.Now,
|
||||
Habilitado = true,
|
||||
IdRemito = remito.Id,
|
||||
Producto = detalle.Producto,
|
||||
};
|
||||
remito.AñadirLote(lote);
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace Vista
|
||||
dgvRemito.DataSource = ControladoraRemito.Instance.Listar();
|
||||
foreach (DataGridViewColumn column in dgvRemito.Columns)
|
||||
{
|
||||
column.Visible = column.Name == "Id" || column.Name == "NombreProveedor";
|
||||
column.Visible = column.Name == "Id" || column.Name == "NombreProveedor";
|
||||
}
|
||||
}
|
||||
private void BtnAdd_Click(object sender, EventArgs e)
|
||||
@@ -51,9 +51,9 @@ namespace Vista
|
||||
|
||||
var rem = new Remito { Id = ordenid };
|
||||
|
||||
var detallesrem = ControladoraRemito.Instance.ListarLotesPorRemito(rem);
|
||||
rem = ControladoraRemito.Instance.MostrarRemitoPorId(rem);
|
||||
dgvDetallesRemito.DataSource = null;
|
||||
dgvDetallesRemito.DataSource = detallesrem;
|
||||
dgvDetallesRemito.DataSource = rem.Lotes;
|
||||
foreach (DataGridViewColumn column in dgvDetallesRemito.Columns)
|
||||
{
|
||||
column.Visible = column.Name == "Id" || column.Name == "Fecha"
|
||||
|
||||
BIN
Vista/daslug.db
Normal file
BIN
Vista/daslug.db
Normal file
Binary file not shown.
@@ -255,6 +255,10 @@
|
||||
"target": "Package",
|
||||
"version": "[8.0.8, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Sqlite": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.8, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)system.text.json\8.0.4\buildTransitive\net6.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\8.0.4\buildTransitive\net6.0\System.Text.Json.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.6\buildTransitive\net8.0\SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.6\buildTransitive\net8.0\SQLitePCLRaw.lib.e_sqlite3.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Options.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
</ImportGroup>
|
||||
|
||||
@@ -386,6 +386,22 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Data.Sqlite.Core/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"SQLitePCLRaw.core": "2.1.6"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.Data.Sqlite.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Data.Sqlite.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -470,6 +486,37 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Sqlite/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.8",
|
||||
"SQLitePCLRaw.bundle_e_sqlite3": "2.1.6"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/_._": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Data.Sqlite.Core": "8.0.8",
|
||||
"Microsoft.EntityFrameworkCore.Relational": "8.0.8",
|
||||
"Microsoft.Extensions.DependencyModel": "8.0.1"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -590,7 +637,7 @@
|
||||
"System.Text.Json": "8.0.4"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/_._": {
|
||||
"lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
@@ -948,6 +995,137 @@
|
||||
"lib/netstandard2.0/Mono.TextTemplating.dll": {}
|
||||
}
|
||||
},
|
||||
"SQLitePCLRaw.bundle_e_sqlite3/2.1.6": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"SQLitePCLRaw.lib.e_sqlite3": "2.1.6",
|
||||
"SQLitePCLRaw.provider.e_sqlite3": "2.1.6"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
|
||||
}
|
||||
},
|
||||
"SQLitePCLRaw.core/2.1.6": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.Memory": "4.5.3"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
|
||||
}
|
||||
},
|
||||
"SQLitePCLRaw.lib.e_sqlite3/2.1.6": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/_._": {}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": {
|
||||
"assetType": "native",
|
||||
"rid": "browser-wasm"
|
||||
},
|
||||
"runtimes/linux-arm/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-arm"
|
||||
},
|
||||
"runtimes/linux-arm64/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-arm64"
|
||||
},
|
||||
"runtimes/linux-armel/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-armel"
|
||||
},
|
||||
"runtimes/linux-mips64/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-mips64"
|
||||
},
|
||||
"runtimes/linux-musl-arm/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-musl-arm"
|
||||
},
|
||||
"runtimes/linux-musl-arm64/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-musl-arm64"
|
||||
},
|
||||
"runtimes/linux-musl-x64/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-musl-x64"
|
||||
},
|
||||
"runtimes/linux-ppc64le/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-ppc64le"
|
||||
},
|
||||
"runtimes/linux-s390x/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-s390x"
|
||||
},
|
||||
"runtimes/linux-x64/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-x64"
|
||||
},
|
||||
"runtimes/linux-x86/native/libe_sqlite3.so": {
|
||||
"assetType": "native",
|
||||
"rid": "linux-x86"
|
||||
},
|
||||
"runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": {
|
||||
"assetType": "native",
|
||||
"rid": "maccatalyst-arm64"
|
||||
},
|
||||
"runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": {
|
||||
"assetType": "native",
|
||||
"rid": "maccatalyst-x64"
|
||||
},
|
||||
"runtimes/osx-arm64/native/libe_sqlite3.dylib": {
|
||||
"assetType": "native",
|
||||
"rid": "osx-arm64"
|
||||
},
|
||||
"runtimes/osx-x64/native/libe_sqlite3.dylib": {
|
||||
"assetType": "native",
|
||||
"rid": "osx-x64"
|
||||
},
|
||||
"runtimes/win-arm/native/e_sqlite3.dll": {
|
||||
"assetType": "native",
|
||||
"rid": "win-arm"
|
||||
},
|
||||
"runtimes/win-arm64/native/e_sqlite3.dll": {
|
||||
"assetType": "native",
|
||||
"rid": "win-arm64"
|
||||
},
|
||||
"runtimes/win-x64/native/e_sqlite3.dll": {
|
||||
"assetType": "native",
|
||||
"rid": "win-x64"
|
||||
},
|
||||
"runtimes/win-x86/native/e_sqlite3.dll": {
|
||||
"assetType": "native",
|
||||
"rid": "win-x86"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SQLitePCLRaw.provider.e_sqlite3/2.1.6": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"SQLitePCLRaw.core": "2.1.6"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
|
||||
}
|
||||
},
|
||||
"System.CodeDom/4.4.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
@@ -1605,7 +1783,8 @@
|
||||
"dependencies": {
|
||||
"Entidades": "1.0.0",
|
||||
"Microsoft.EntityFrameworkCore": "8.0.8",
|
||||
"Microsoft.EntityFrameworkCore.SqlServer": "8.0.8"
|
||||
"Microsoft.EntityFrameworkCore.SqlServer": "8.0.8",
|
||||
"Microsoft.EntityFrameworkCore.Sqlite": "8.0.8"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/Modelo.dll": {}
|
||||
@@ -2274,6 +2453,25 @@
|
||||
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
|
||||
]
|
||||
},
|
||||
"Microsoft.Data.Sqlite.Core/8.0.8": {
|
||||
"sha512": "qHInO2EvOcPhjgboP0TGnXM7rASdvWXrw6jAH8Yuz5YP82VTje7d/NKiX1i+dVbE3+G3JuW1kqNVB8yLvsqgYA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.data.sqlite.core/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"PACKAGE.md",
|
||||
"lib/net6.0/Microsoft.Data.Sqlite.dll",
|
||||
"lib/net6.0/Microsoft.Data.Sqlite.xml",
|
||||
"lib/net8.0/Microsoft.Data.Sqlite.dll",
|
||||
"lib/net8.0/Microsoft.Data.Sqlite.xml",
|
||||
"lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
|
||||
"lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
|
||||
"microsoft.data.sqlite.core.8.0.8.nupkg.sha512",
|
||||
"microsoft.data.sqlite.core.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore/8.0.8": {
|
||||
"sha512": "iK+jrJzkfbIxutB7or808BPmJtjUEi5O+eSM7cLDwsyde6+3iOujCSfWnrHrLxY3u+EQrJD+aD8DJ6ogPA2Rtw==",
|
||||
"type": "package",
|
||||
@@ -2351,6 +2549,35 @@
|
||||
"microsoft.entityframeworkcore.relational.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Sqlite/8.0.8": {
|
||||
"sha512": "IDB7Xs16hN/3VkWFCCa4r3fqoJxMVezwq418gr8dBkRBO0pxH+BX/Kjk/U3PYXDvzVLkXqUgJsHv1XoFrJbZPQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.sqlite/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"PACKAGE.md",
|
||||
"lib/net8.0/_._",
|
||||
"microsoft.entityframeworkcore.sqlite.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.sqlite.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.8": {
|
||||
"sha512": "w5k/ENj3+BPbmggqh83RRuPhhKcJmW7CmdJuGwdX1eFrmptJwnzKiHfQCPkJAu9df16PSs5YFeWrDgepfqnltA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.sqlite.core/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"PACKAGE.md",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.xml",
|
||||
"microsoft.entityframeworkcore.sqlite.core.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.sqlite.core.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.8": {
|
||||
"sha512": "A2F52W+hnGqvprx37HcAnYnJv4QoFFdc9cxd/QGNSd1vCu1I0eAEKRd0r9KS3E5I5RRj/m9XJfYCyTdy1cdn5Q==",
|
||||
"type": "package",
|
||||
@@ -3072,6 +3299,95 @@
|
||||
"mono.texttemplating.nuspec"
|
||||
]
|
||||
},
|
||||
"SQLitePCLRaw.bundle_e_sqlite3/2.1.6": {
|
||||
"sha512": "BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==",
|
||||
"type": "package",
|
||||
"path": "sqlitepclraw.bundle_e_sqlite3/2.1.6",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll",
|
||||
"lib/net461/SQLitePCLRaw.batteries_v2.dll",
|
||||
"lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll",
|
||||
"lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml",
|
||||
"lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll",
|
||||
"lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll",
|
||||
"lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll",
|
||||
"lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
|
||||
"lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll",
|
||||
"sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"sqlitepclraw.bundle_e_sqlite3.nuspec"
|
||||
]
|
||||
},
|
||||
"SQLitePCLRaw.core/2.1.6": {
|
||||
"sha512": "wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==",
|
||||
"type": "package",
|
||||
"path": "sqlitepclraw.core/2.1.6",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/netstandard2.0/SQLitePCLRaw.core.dll",
|
||||
"sqlitepclraw.core.2.1.6.nupkg.sha512",
|
||||
"sqlitepclraw.core.nuspec"
|
||||
]
|
||||
},
|
||||
"SQLitePCLRaw.lib.e_sqlite3/2.1.6": {
|
||||
"sha512": "2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==",
|
||||
"type": "package",
|
||||
"path": "sqlitepclraw.lib.e_sqlite3/2.1.6",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
|
||||
"buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets",
|
||||
"buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets",
|
||||
"buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets",
|
||||
"lib/net461/_._",
|
||||
"lib/netstandard2.0/_._",
|
||||
"runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a",
|
||||
"runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a",
|
||||
"runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a",
|
||||
"runtimes/linux-arm/native/libe_sqlite3.so",
|
||||
"runtimes/linux-arm64/native/libe_sqlite3.so",
|
||||
"runtimes/linux-armel/native/libe_sqlite3.so",
|
||||
"runtimes/linux-mips64/native/libe_sqlite3.so",
|
||||
"runtimes/linux-musl-arm/native/libe_sqlite3.so",
|
||||
"runtimes/linux-musl-arm64/native/libe_sqlite3.so",
|
||||
"runtimes/linux-musl-x64/native/libe_sqlite3.so",
|
||||
"runtimes/linux-ppc64le/native/libe_sqlite3.so",
|
||||
"runtimes/linux-s390x/native/libe_sqlite3.so",
|
||||
"runtimes/linux-x64/native/libe_sqlite3.so",
|
||||
"runtimes/linux-x86/native/libe_sqlite3.so",
|
||||
"runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib",
|
||||
"runtimes/maccatalyst-x64/native/libe_sqlite3.dylib",
|
||||
"runtimes/osx-arm64/native/libe_sqlite3.dylib",
|
||||
"runtimes/osx-x64/native/libe_sqlite3.dylib",
|
||||
"runtimes/win-arm/native/e_sqlite3.dll",
|
||||
"runtimes/win-arm64/native/e_sqlite3.dll",
|
||||
"runtimes/win-x64/native/e_sqlite3.dll",
|
||||
"runtimes/win-x86/native/e_sqlite3.dll",
|
||||
"runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
|
||||
"runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
|
||||
"runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
|
||||
"runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
|
||||
"sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"sqlitepclraw.lib.e_sqlite3.nuspec"
|
||||
]
|
||||
},
|
||||
"SQLitePCLRaw.provider.e_sqlite3/2.1.6": {
|
||||
"sha512": "PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==",
|
||||
"type": "package",
|
||||
"path": "sqlitepclraw.provider.e_sqlite3/2.1.6",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll",
|
||||
"lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll",
|
||||
"lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll",
|
||||
"sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"sqlitepclraw.provider.e_sqlite3.nuspec"
|
||||
]
|
||||
},
|
||||
"System.CodeDom/4.4.0": {
|
||||
"sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
|
||||
"type": "package",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "RZQdbCeghbw=",
|
||||
"dgSpecHash": "gLAiGl4EbGM=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\fedpo\\source\\repos\\Final_Das\\Vista\\Vista.csproj",
|
||||
"expectedPackageFiles": [
|
||||
@@ -16,11 +16,14 @@
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.5\\microsoft.data.sqlclient.5.1.5.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.8\\microsoft.data.sqlite.core.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.8\\microsoft.entityframeworkcore.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.8\\microsoft.entityframeworkcore.abstractions.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.8\\microsoft.entityframeworkcore.analyzers.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.8\\microsoft.entityframeworkcore.design.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.8\\microsoft.entityframeworkcore.relational.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\8.0.8\\microsoft.entityframeworkcore.sqlite.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\8.0.8\\microsoft.entityframeworkcore.sqlite.core.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\8.0.8\\microsoft.entityframeworkcore.sqlserver.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
|
||||
@@ -47,6 +50,10 @@
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.web.webview2\\1.0.864.35\\microsoft.web.webview2.1.0.864.35.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\fedpo\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512",
|
||||
|
||||
Reference in New Issue
Block a user