hechos un par de cambios
This commit is contained in:
Binary file not shown.
@@ -1,4 +1,5 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Reflection.Metadata.Ecma335;
|
||||
using Entidades;
|
||||
using Modelo;
|
||||
|
||||
@@ -6,11 +7,16 @@ namespace Controladora
|
||||
{
|
||||
public class ControladoraCategorias : Singleton<ControladoraCategorias>
|
||||
{
|
||||
private RepositorioCategoria repositorioCategoria;
|
||||
public ControladoraCategorias()
|
||||
{
|
||||
repositorioCategoria = new(new Context());
|
||||
}
|
||||
// Método para verificar si una categoría con un ID ya existe
|
||||
private bool CategoriaExiste(int id)
|
||||
{
|
||||
var categorias = RepositorioCategoria.Instance.Listar();
|
||||
return categorias.Any(c => c.Id == id);
|
||||
var cat = repositorioCategoria.ObtenerPorId(id);
|
||||
return (cat.Id == id);
|
||||
}
|
||||
|
||||
public string Añadir(Categoria t)
|
||||
@@ -22,18 +28,16 @@ namespace Controladora
|
||||
return $"Ya existe una categoría con el ID {t.Id}";
|
||||
}
|
||||
|
||||
return (RepositorioCategoria.Instance.Add(t)) ?
|
||||
$"La categoría {t.Descripcion} se cargó correctamente" :
|
||||
$"Falló la carga de la categoría {t.Descripcion}";
|
||||
repositorioCategoria.Add(t);
|
||||
return $"La categoría {t.Descripcion} se cargó correctamente";
|
||||
}
|
||||
|
||||
public string Eliminar(Categoria t)
|
||||
{
|
||||
if (t == null) return "La categoría es nula, fallo la carga";
|
||||
|
||||
return (RepositorioCategoria.Instance.Del(t)) ?
|
||||
$"La categoría {t.Descripcion} se eliminó correctamente" :
|
||||
$"Falló la eliminación de la categoría {t.Descripcion}";
|
||||
repositorioCategoria.Del(t);
|
||||
return $"La categoría {t.Descripcion} se eliminó correctamente";
|
||||
}
|
||||
|
||||
public string Modificar(Categoria t)
|
||||
@@ -45,14 +49,13 @@ namespace Controladora
|
||||
return $"No se encontró una categoría con el ID {t.Id}";
|
||||
}
|
||||
|
||||
return (RepositorioCategoria.Instance.Mod(t)) ?
|
||||
$"La categoría {t.Descripcion} se modificó correctamente" :
|
||||
$"Falló la modificación de la categoría {t.Descripcion}";
|
||||
repositorioCategoria.Mod(t);
|
||||
return $"La categoría {t.Descripcion} se modificó correctamente";
|
||||
}
|
||||
|
||||
public ReadOnlyCollection<Categoria> Listar()
|
||||
{
|
||||
return RepositorioCategoria.Instance.Listar();
|
||||
return repositorioCategoria.Listar().ToList().AsReadOnly();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj": {}
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"projectName": "Controladora",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -33,14 +33,14 @@
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj"
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -79,14 +79,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectName": "Entidades",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -144,14 +144,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectName": "Informes",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -173,8 +173,8 @@
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -213,14 +213,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectName": "Modelo",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -242,8 +242,8 @@
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -265,23 +265,17 @@
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Design": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.1</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Navegador\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.7\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.7\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.8\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.8\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -1,22 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Controladora")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d11016fe50f731cc9fc7ccc12e78610c74ea7248")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Controladora")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Controladora")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generado por la clase WriteCodeFragment de MSBuild.
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
75ec560685bbc0bd982ed7c58ee9f6706e56f8184dc1c60627aee305719bd5c9
|
||||
@@ -1,13 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.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 = Controladora
|
||||
build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Controladora/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
b339fbe0c06d5a646f4ea7d7022193c0919788dee5d47f294410285b8e801df2
|
||||
@@ -1,147 +0,0 @@
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/bin/Debug/net6.0/Controladora.deps.json
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/bin/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/bin/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/bin/Debug/net6.0/Modelo.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/bin/Debug/net6.0/Modelo.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.CopyComplete
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/refint/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Controladora/obj/Debug/net6.0/ref/Controladora.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/bin/Debug/net6.0/Controladora.deps.json
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/bin/Debug/net6.0/Controladora.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/bin/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/bin/Debug/net6.0/Modelo.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/bin/Debug/net6.0/Modelo.pdb
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/Controla.1EE7A4DA.Up2Date
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/Controladora.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/refint/Controladora.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/Nacho/Desktop/Final actual/Controladora/obj/Debug/net6.0/ref/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/bin/Debug/net6.0/Controladora.deps.json
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/bin/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/bin/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/bin/Debug/net6.0/Modelo.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/bin/Debug/net6.0/Modelo.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.CopyComplete
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/refint/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/Controladora/obj/Debug/net6.0/ref/Controladora.dll
|
||||
<<<<<<< HEAD
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/bin/Debug/net6.0/Controladora.deps.json
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/bin/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/bin/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/bin/Debug/net6.0/Modelo.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/bin/Debug/net6.0/Modelo.pdb
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/Controladora.csproj.CopyComplete
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/refint/Controladora.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Desktop/final actual/Controladora/obj/Debug/net6.0/ref/Controladora.dll
|
||||
=======
|
||||
>>>>>>> a9ebcff (añadida ¿Reactividad? a que se elija entre percedero o no)
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/bin/Debug/net6.0/Controladora.deps.json
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/bin/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/bin/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/bin/Debug/net6.0/Modelo.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/bin/Debug/net6.0/Modelo.pdb
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/Controladora.csproj.CopyComplete
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/refint/Controladora.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Controladora/obj/Debug/net6.0/ref/Controladora.dll
|
||||
>>>>>>> 855ce7c (AAAAAAAAAAA)
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Controladora.deps.json
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Controladora.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Modelo.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Modelo.pdb
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controla.1EE7A4DA.Up2Date
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/refint/Controladora.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/obj/Debug/net6.0/ref/Controladora.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Controladora/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Controladora.deps.json
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Modelo.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Modelo.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.csproj.CopyComplete
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/refint/Controladora.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/Controladora.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Controladora/obj/Debug/net6.0/ref/Controladora.dll
|
||||
>>>>>>> 18c1215 (infromes y solucionado error chistoso en repoLote)
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/Controladora.dll
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/refint/Controladora.dll
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/Controladora.pdb
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Controladora.deps.json
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Controladora.dll
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Controladora.pdb
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Entidades.dll
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Informes.dll
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Modelo.dll
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Informes.pdb
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Modelo.pdb
|
||||
/home/fede/proyectos/Final_OOP/Controladora/bin/Debug/net6.0/Entidades.pdb
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/Controladora.csproj.CopyComplete
|
||||
/home/fede/proyectos/Final_OOP/Controladora/obj/Debug/net6.0/ref/Controladora.dll
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -125,11 +125,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore.Abstractions": "8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.Analyzers": "8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.Abstractions": "8.0.8",
|
||||
"Microsoft.EntityFrameworkCore.Analyzers": "8.0.8",
|
||||
"Microsoft.Extensions.Caching.Memory": "8.0.0",
|
||||
"Microsoft.Extensions.Logging": "8.0.0"
|
||||
},
|
||||
@@ -147,7 +147,7 @@
|
||||
"buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/8.0.8": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
|
||||
@@ -160,7 +160,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/8.0.8": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/_._": {}
|
||||
@@ -169,10 +169,10 @@
|
||||
"lib/netstandard2.0/_._": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Relational/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.Relational/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore": "8.0.7",
|
||||
"Microsoft.EntityFrameworkCore": "8.0.8",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
|
||||
},
|
||||
"compile": {
|
||||
@@ -186,11 +186,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Data.SqlClient": "5.1.5",
|
||||
"Microsoft.EntityFrameworkCore.Relational": "8.0.7"
|
||||
"Microsoft.EntityFrameworkCore.Relational": "8.0.8"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
|
||||
@@ -1015,8 +1015,8 @@
|
||||
"framework": ".NETCoreApp,Version=v8.0",
|
||||
"dependencies": {
|
||||
"Entidades": "1.0.0",
|
||||
"Microsoft.EntityFrameworkCore": "8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.SqlServer": "8.0.7"
|
||||
"Microsoft.EntityFrameworkCore": "8.0.8",
|
||||
"Microsoft.EntityFrameworkCore.SqlServer": "8.0.8"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/Modelo.dll": {}
|
||||
@@ -1240,10 +1240,10 @@
|
||||
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore/8.0.7": {
|
||||
"sha512": "UOyPNAgyzw/E4hUCurqvZxi0WWVLQAGZuntFPzkTXtvJLTqRjKvokvhv+XazAUSODLsU1DZ67GjZ4mT9d82+0g==",
|
||||
"Microsoft.EntityFrameworkCore/8.0.8": {
|
||||
"sha512": "iK+jrJzkfbIxutB7or808BPmJtjUEi5O+eSM7cLDwsyde6+3iOujCSfWnrHrLxY3u+EQrJD+aD8DJ6ogPA2Rtw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -1252,14 +1252,14 @@
|
||||
"buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.xml",
|
||||
"microsoft.entityframeworkcore.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/8.0.7": {
|
||||
"sha512": "DHX6nxcg4/tpWfTjAleKrXveDiNFY/OGOK6nm27GipUXNI2Uofev9cH5SYXmtGIgHWxlvfn754TXN4WnrixOwg==",
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/8.0.8": {
|
||||
"sha512": "9mMQkZsfL1c2iifBD8MWRmwy59rvsVtR9NOezJj7+g1j4P7g49MJHd8k8faC/v7d5KuHkQ6KOQiSItvoRt9PXA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.abstractions/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.abstractions/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -1267,14 +1267,14 @@
|
||||
"PACKAGE.md",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
|
||||
"microsoft.entityframeworkcore.abstractions.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.abstractions.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.abstractions.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/8.0.7": {
|
||||
"sha512": "nerD0vEOYJVhVapamRVH9DrUYbDNMJ5bPfWze4SibDDaDaekzgwQqBht97/tV+8pgdKoPAXmtiJsB+lDajwVrQ==",
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/8.0.8": {
|
||||
"sha512": "OlAXMU+VQgLz5y5/SBkLvAa9VeiR3dlJqgIebEEH2M2NGA3evm68/Tv7SLWmSxwnEAtA3nmDEZF2pacK6eXh4Q==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.analyzers/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.analyzers/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -1282,14 +1282,14 @@
|
||||
"analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
|
||||
"docs/PACKAGE.md",
|
||||
"lib/netstandard2.0/_._",
|
||||
"microsoft.entityframeworkcore.analyzers.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.analyzers.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.analyzers.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Relational/8.0.7": {
|
||||
"sha512": "Hn86yScnW+VXb+A2LGrVGkGmjsQ9KLWR0T8GQBEcESWk8u9JYhBiRtdxz76Aq0ir82Ei48sLEZTN4VE0sJ3yIg==",
|
||||
"Microsoft.EntityFrameworkCore.Relational/8.0.8": {
|
||||
"sha512": "3WnrwdXxKg4L98cDx0lNEEau8U2lsfuBJCs0Yzht+5XVTmahboM7MukKfQHAzVsHUPszm6ci929S7Qas0WfVHA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.relational/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.relational/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -1297,14 +1297,14 @@
|
||||
"PACKAGE.md",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
|
||||
"microsoft.entityframeworkcore.relational.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.relational.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.relational.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.7": {
|
||||
"sha512": "6gwbwmXkCb+IGxTQ81KqwGjN15r3bv7PLlb4Ox/cYDqdPFbHXMsk0zgtKyPCiXqkFH2LG7KpvVYUBlu4PyTKZQ==",
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.8": {
|
||||
"sha512": "A2F52W+hnGqvprx37HcAnYnJv4QoFFdc9cxd/QGNSd1vCu1I0eAEKRd0r9KS3E5I5RRj/m9XJfYCyTdy1cdn5Q==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.sqlserver/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.sqlserver/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -1312,7 +1312,7 @@
|
||||
"PACKAGE.md",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
|
||||
"microsoft.entityframeworkcore.sqlserver.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.sqlserver.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.sqlserver.nuspec"
|
||||
]
|
||||
},
|
||||
@@ -2809,11 +2809,11 @@
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"projectName": "Controladora",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -2835,14 +2835,14 @@
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj"
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "/V+VpTOAZ1I=",
|
||||
"dgSpecHash": "J/IgK8PX4ac=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"projectFilePath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\azure.core\\1.35.0\\azure.core.1.35.0.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\azure.identity\\1.10.3\\azure.identity.1.10.3.nupkg.sha512",
|
||||
@@ -10,11 +10,11 @@
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.5\\microsoft.data.sqlclient.5.1.5.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.7\\microsoft.entityframeworkcore.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.7\\microsoft.entityframeworkcore.abstractions.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.7\\microsoft.entityframeworkcore.analyzers.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.7\\microsoft.entityframeworkcore.relational.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\8.0.7\\microsoft.entityframeworkcore.sqlserver.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.8\\microsoft.entityframeworkcore.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.8\\microsoft.entityframeworkcore.abstractions.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.8\\microsoft.entityframeworkcore.analyzers.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.8\\microsoft.entityframeworkcore.relational.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\8.0.8\\microsoft.entityframeworkcore.sqlserver.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
|
||||
|
||||
@@ -8,7 +8,8 @@ namespace Entidades
|
||||
public double Total { get; set; }
|
||||
public DateTime Fecha { get; set; }
|
||||
public Cliente Cliente { get; set; }
|
||||
private List<DetalleFactura> detalles = new List<DetalleFactura>();
|
||||
public List<DetalleFactura> detalles = new List<DetalleFactura>();
|
||||
|
||||
|
||||
public void AñadirDetalle(DetalleFactura detalle)
|
||||
{
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Entidades")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d11016fe50f731cc9fc7ccc12e78610c74ea7248")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Entidades")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Entidades")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generado por la clase WriteCodeFragment de MSBuild.
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
3b03da26f28f96f0323fa94148a70c2466afcf8504bb48681ee28c0bd3312ab4
|
||||
@@ -1,8 +0,0 @@
|
||||
// <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;
|
||||
Binary file not shown.
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {}
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectName": "Entidades",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.1</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Navegador\.nuget\packages\" />
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -1,23 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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("Entidades")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+abfd18e86f40a98925507ec03c2e8832ee47a3eb")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Entidades")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Entidades")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generado por la clase WriteCodeFragment de MSBuild.
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
0f23a71dabcab7104ee2511db3de6cc1ef434f03702a8d033e7694541758b7dd
|
||||
@@ -1,13 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.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 = Entidades
|
||||
build_property.ProjectDir = C:\Users\Nacho\source\repos\Final\Entidades\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
@@ -1,8 +0,0 @@
|
||||
// <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;
|
||||
Binary file not shown.
@@ -14,11 +14,11 @@
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectName": "Entidades",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "yxtg1JmnRdI=",
|
||||
"dgSpecHash": "i5qm2NSzGaw=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectFilePath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
BIN
Informes/bin/Debug/net8.0/Entidades.dll
Normal file
BIN
Informes/bin/Debug/net8.0/Entidades.dll
Normal file
Binary file not shown.
BIN
Informes/bin/Debug/net8.0/Entidades.pdb
Normal file
BIN
Informes/bin/Debug/net8.0/Entidades.pdb
Normal file
Binary file not shown.
36
Informes/bin/Debug/net8.0/Informes.deps.json
Normal file
36
Informes/bin/Debug/net8.0/Informes.deps.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"Informes/1.0.0": {
|
||||
"dependencies": {
|
||||
"Entidades": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Informes.dll": {}
|
||||
}
|
||||
},
|
||||
"Entidades/1.0.0": {
|
||||
"runtime": {
|
||||
"Entidades.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Informes/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Entidades/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Informes/bin/Debug/net8.0/Informes.dll
Normal file
BIN
Informes/bin/Debug/net8.0/Informes.dll
Normal file
Binary file not shown.
BIN
Informes/bin/Debug/net8.0/Informes.pdb
Normal file
BIN
Informes/bin/Debug/net8.0/Informes.pdb
Normal file
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -1 +0,0 @@
|
||||
d7c554bdf147478bbc3b788a6c9f2e2fbb1248125625611bcde6ae37d8fd9f9b
|
||||
@@ -1,13 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.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 = Informes
|
||||
build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Informes/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
@@ -1,8 +0,0 @@
|
||||
// <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;
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
831ed014d7709fa34aba4faa4c71009d42238c3bf5a4862fe42724d244fc7825
|
||||
@@ -1,125 +0,0 @@
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/bin/Debug/net6.0/Informes.deps.json
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/Informes.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/Informes.csproj.CopyComplete
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/refint/Informes.dll
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/final actual/Informes/obj/Debug/net6.0/ref/Informes.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/bin/Debug/net6.0/Informes.deps.json
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/Informes.AssemblyInfo.cs
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/Informes.csproj.Up2Date
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/Informes.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/refint/Informes.dll
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/Informes.pdb
|
||||
C:/Users/Nacho/Desktop/Final actual/Informes/obj/Debug/net6.0/ref/Informes.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/bin/Debug/net6.0/Informes.deps.json
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/Informes.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/Informes.csproj.CopyComplete
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/refint/Informes.dll
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Downloads/final actual/Informes/obj/Debug/net6.0/ref/Informes.dll
|
||||
<<<<<<< HEAD
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/bin/Debug/net6.0/Informes.deps.json
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/Informes.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/Informes.csproj.CopyComplete
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/refint/Informes.dll
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Desktop/final actual/Informes/obj/Debug/net6.0/ref/Informes.dll
|
||||
=======
|
||||
>>>>>>> a9ebcff (añadida ¿Reactividad? a que se elija entre percedero o no)
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/bin/Debug/net6.0/Informes.deps.json
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/Informes.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/Informes.csproj.CopyComplete
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/refint/Informes.dll
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Downloads/Final_OOP-master/final_oop/Informes/obj/Debug/net6.0/ref/Informes.dll
|
||||
>>>>>>> 855ce7c (AAAAAAAAAAA)
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/bin/Debug/net6.0/Informes.deps.json
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.AssemblyInfo.cs
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.csproj.Up2Date
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/refint/Informes.dll
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.pdb
|
||||
C:/Users/Nacho/Desktop/FINAL/Informes/obj/Debug/net6.0/ref/Informes.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/bin/Debug/net6.0/Informes.deps.json
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/bin/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/bin/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/bin/Debug/net6.0/Entidades.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/bin/Debug/net6.0/Entidades.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.AssemblyInfo.cs
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.csproj.CopyComplete
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/refint/Informes.dll
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/Informes.pdb
|
||||
C:/Users/fedpo/Desktop/FINAL/Informes/obj/Debug/net6.0/ref/Informes.dll
|
||||
>>>>>>> 18c1215 (infromes y solucionado error chistoso en repoLote)
|
||||
/home/fede/proyectos/Final_OOP/Informes/bin/Debug/net6.0/Informes.deps.json
|
||||
/home/fede/proyectos/Final_OOP/Informes/bin/Debug/net6.0/Informes.dll
|
||||
/home/fede/proyectos/Final_OOP/Informes/bin/Debug/net6.0/Informes.pdb
|
||||
/home/fede/proyectos/Final_OOP/Informes/bin/Debug/net6.0/Entidades.dll
|
||||
/home/fede/proyectos/Final_OOP/Informes/bin/Debug/net6.0/Entidades.pdb
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/Informes.AssemblyInfo.cs
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/Informes.csproj.CopyComplete
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/Informes.dll
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/refint/Informes.dll
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/Informes.pdb
|
||||
/home/fede/proyectos/Final_OOP/Informes/obj/Debug/net6.0/ref/Informes.dll
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,9 +1,10 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Este código fue generado por una herramienta.
|
||||
// Versión de runtime:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// 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>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
@@ -13,7 +14,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Informes")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1d23af8e9376b41ff6da577baf667654769a1236")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+063be0588edf7ab191cf17c0de8dd625131697d7")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Informes")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Informes")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
f6eaae8315b08ed85135788692b95ffa2be34b3c61e49b0e89abeb700edac62f
|
||||
be31fe192a36db7117c612313fe2d62f48eb4fc996ce43773cf7cb34452223ec
|
||||
|
||||
@@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Informes
|
||||
build_property.ProjectDir = C:\Users\Navegador\Source\Repos\Final_Das\Informes\
|
||||
build_property.ProjectDir = C:\Users\Navegador\source\repos\Final_Das\Informes\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
63b2f7d13bf91394a559ef5cfbb11050dfe08c97d96ddd5751f7b9529166925b
|
||||
@@ -0,0 +1,15 @@
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\bin\Debug\net8.0\Informes.deps.json
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\bin\Debug\net8.0\Informes.dll
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\bin\Debug\net8.0\Informes.pdb
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\bin\Debug\net8.0\Entidades.dll
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\bin\Debug\net8.0\Entidades.pdb
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\Informes.csproj.AssemblyReference.cache
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\Informes.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\Informes.AssemblyInfoInputs.cache
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\Informes.AssemblyInfo.cs
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\Informes.csproj.CoreCompileInputs.cache
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\Informes.csproj.Up2Date
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\Informes.dll
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\refint\Informes.dll
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\Informes.pdb
|
||||
C:\Users\Navegador\source\repos\Final_Das\Informes\obj\Debug\net8.0\ref\Informes.dll
|
||||
BIN
Informes/obj/Debug/net8.0/Informes.dll
Normal file
BIN
Informes/obj/Debug/net8.0/Informes.dll
Normal file
Binary file not shown.
BIN
Informes/obj/Debug/net8.0/Informes.pdb
Normal file
BIN
Informes/obj/Debug/net8.0/Informes.pdb
Normal file
Binary file not shown.
BIN
Informes/obj/Debug/net8.0/ref/Informes.dll
Normal file
BIN
Informes/obj/Debug/net8.0/ref/Informes.dll
Normal file
Binary file not shown.
BIN
Informes/obj/Debug/net8.0/refint/Informes.dll
Normal file
BIN
Informes/obj/Debug/net8.0/refint/Informes.dll
Normal file
Binary file not shown.
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj": {}
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectName": "Entidades",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -69,14 +69,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectName": "Informes",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -98,8 +98,8 @@
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.1</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Navegador\.nuget\packages\" />
|
||||
|
||||
@@ -33,11 +33,11 @@
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectName": "Informes",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -59,8 +59,8 @@
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "12rvoWT8d8o=",
|
||||
"dgSpecHash": "l6LhdFShQ10=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"projectFilePath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Informes\\Informes.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
@@ -70,9 +70,9 @@ public class Context : Microsoft.EntityFrameworkCore.DbContext
|
||||
.HasKey(f => f.Id);
|
||||
|
||||
modelBuilder.Entity<Factura>()
|
||||
.HasMany(f => f.Detalles)
|
||||
.HasMany(f => f.detalles)
|
||||
.WithOne()
|
||||
.HasForeignKey(df => df.FacturaId);
|
||||
.HasForeignKey(df => df.IdFactura);
|
||||
|
||||
modelBuilder.Entity<DetalleFactura>()
|
||||
.ToTable("DetallesFacturas")
|
||||
|
||||
@@ -1,20 +1,16 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Entidades\Entidades.csproj" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.8">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.7" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.7">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.7" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.7">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<ProjectReference Include="..\Entidades\Entidades.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Target Name="GetEFProjectMetadata">
|
||||
<MSBuild Condition=" '$(TargetFramework)' == '' "
|
||||
Projects="$(MSBuildProjectFile)"
|
||||
Targets="GetEFProjectMetadata"
|
||||
Properties="TargetFramework=$(TargetFrameworks.Split(';')[0]);EFProjectMetadataFile=$(EFProjectMetadataFile)" />
|
||||
<ItemGroup Condition=" '$(TargetFramework)' != '' ">
|
||||
<EFProjectMetadata Include="AssemblyName: $(AssemblyName)" />
|
||||
<EFProjectMetadata Include="Language: $(Language)" />
|
||||
<EFProjectMetadata Include="OutputPath: $(OutputPath)" />
|
||||
<EFProjectMetadata Include="Platform: $(Platform)" />
|
||||
<EFProjectMetadata Include="PlatformTarget: $(PlatformTarget)" />
|
||||
<EFProjectMetadata Include="ProjectAssetsFile: $(ProjectAssetsFile)" />
|
||||
<EFProjectMetadata Include="ProjectDir: $(ProjectDir)" />
|
||||
<EFProjectMetadata Include="RootNamespace: $(RootNamespace)" />
|
||||
<EFProjectMetadata Include="RuntimeFrameworkVersion: $(RuntimeFrameworkVersion)" />
|
||||
<EFProjectMetadata Include="TargetFileName: $(TargetFileName)" />
|
||||
<EFProjectMetadata Include="TargetFrameworkMoniker: $(TargetFrameworkMoniker)" />
|
||||
<EFProjectMetadata Include="Nullable: $(Nullable)" />
|
||||
<EFProjectMetadata Include="TargetFramework: $(TargetFramework)" />
|
||||
<EFProjectMetadata Include="TargetPlatformIdentifier: $(TargetPlatformIdentifier)" />
|
||||
</ItemGroup>
|
||||
<WriteLinesToFile Condition=" '$(TargetFramework)' != '' "
|
||||
File="$(EFProjectMetadataFile)"
|
||||
Lines="@(EFProjectMetadata)" />
|
||||
</Target>
|
||||
</Project>
|
||||
@@ -20,7 +20,7 @@ namespace Modelo
|
||||
|
||||
public override Categoria ObtenerPorId(int Tid)
|
||||
{
|
||||
Categoria cat = context.Categorias.Find(Tid);
|
||||
Categoria cat = context.Categorias.First(x => x.Id == Tid);
|
||||
return cat ?? new Categoria();
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace Modelo
|
||||
|
||||
public override void Del(Categoria t)
|
||||
{
|
||||
Categoria cat = context.Categorias.Find(t.Id);
|
||||
Categoria cat = context.Categorias.First(x => x.Id == t.Id);
|
||||
if (cat == null) return;
|
||||
context.Categorias.Remove(cat);
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace Modelo
|
||||
|
||||
public override void Mod(Cliente t)
|
||||
{
|
||||
context.Categorias.Update(t);
|
||||
context.Clientes.Update(t);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,89 +0,0 @@
|
||||
using Entidades;
|
||||
|
||||
namespace Modelo
|
||||
{
|
||||
public sealed class RepositorioProductos : Repositorio<ProductoPercedero>, Repositorio<ProductoNoPercedero>
|
||||
{
|
||||
private Context context;
|
||||
|
||||
public RepositorioProductos(Context context)
|
||||
{
|
||||
this.context = context;
|
||||
}
|
||||
|
||||
public override IEnumerable<Producto> Listar()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
ProductoNoPercedero Repositorio<ProductoNoPercedero>.ObtenerPorId(int Tid)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Add(ProductoNoPercedero t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Del(ProductoNoPercedero t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Mod(ProductoNoPercedero t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
IEnumerable<ProductoNoPercedero> Repositorio<ProductoNoPercedero>.Listar()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
ProductoPercedero Repositorio<ProductoPercedero>.ObtenerPorId(int Tid)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Add(ProductoPercedero t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Del(ProductoPercedero t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void Mod(ProductoPercedero t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
IEnumerable<ProductoPercedero> Repositorio<ProductoPercedero>.Listar()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override Producto ObtenerPorId(int Tid)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Add(Producto t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Del(Producto t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Mod(Producto t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
41
Modelo/RepositorioProductosPercedero.cs
Normal file
41
Modelo/RepositorioProductosPercedero.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using Entidades;
|
||||
|
||||
namespace Modelo
|
||||
{
|
||||
public sealed class RepositorioProductosPercedero : Repositorio<ProductoPercedero>
|
||||
{
|
||||
|
||||
public RepositorioProductosPercedero(Context context)
|
||||
{
|
||||
this.context = context;
|
||||
}
|
||||
|
||||
public override IEnumerable<ProductoPercedero> Listar()
|
||||
{
|
||||
return context.ProductoPercederos.ToList();
|
||||
}
|
||||
|
||||
public override ProductoPercedero ObtenerPorId(int Tid)
|
||||
{
|
||||
ProductoPercedero pro = context.ProductoPercederos.First(x => x.Id == Tid);
|
||||
return pro ?? new ProductoPercedero();
|
||||
}
|
||||
|
||||
public override void Add(ProductoPercedero t)
|
||||
{
|
||||
context.ProductoPercederos.Add(t);
|
||||
}
|
||||
|
||||
public override void Del(ProductoPercedero t)
|
||||
{
|
||||
ProductoPercedero pro = context.ProductoPercederos.First(x => x.Id == t.Id);
|
||||
if (pro == null) return;
|
||||
context.ProductoPercederos.Remove(pro);
|
||||
}
|
||||
|
||||
public override void Mod(ProductoPercedero t)
|
||||
{
|
||||
context.ProductoPercederos.Update(t);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -1,22 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Modelo")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d11016fe50f731cc9fc7ccc12e78610c74ea7248")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Modelo")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Modelo")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generado por la clase WriteCodeFragment de MSBuild.
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
0bd1191dea479777ed8a0ff9a03fc7d9bd03d44f30c310a50911f912ebc8fc3e
|
||||
@@ -1,13 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.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 = Modelo
|
||||
build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Modelo/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
@@ -1,8 +0,0 @@
|
||||
// <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;
|
||||
Binary file not shown.
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj": {}
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectName": "Entidades",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -69,14 +69,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj": {
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectName": "Modelo",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -98,8 +98,8 @@
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -121,23 +121,17 @@
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Design": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
|
||||
@@ -7,18 +7,18 @@
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.1</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Navegador\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.7\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.7\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\8.0.7\build\net8.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\8.0.7\build\net8.0\Microsoft.EntityFrameworkCore.Design.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.8\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.8\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\8.0.8\build\net8.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\8.0.8\build\net8.0\Microsoft.EntityFrameworkCore.Design.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\Navegador\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
|
||||
<PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\Navegador\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.7</PkgMicrosoft_EntityFrameworkCore_Tools>
|
||||
<PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\Navegador\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.8</PkgMicrosoft_EntityFrameworkCore_Tools>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -1 +0,0 @@
|
||||
3e36c8c77cd831cf7c05eae84ca674fcaae78b66286858be7486e7662b80b494
|
||||
@@ -1,13 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.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 = Modelo
|
||||
build_property.ProjectDir = C:\Users\Nacho\source\repos\Final\Modelo\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
@@ -1,8 +0,0 @@
|
||||
// <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;
|
||||
Binary file not shown.
@@ -386,11 +386,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore.Abstractions": "8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.Analyzers": "8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.Abstractions": "8.0.8",
|
||||
"Microsoft.EntityFrameworkCore.Analyzers": "8.0.8",
|
||||
"Microsoft.Extensions.Caching.Memory": "8.0.0",
|
||||
"Microsoft.Extensions.Logging": "8.0.0"
|
||||
},
|
||||
@@ -408,7 +408,7 @@
|
||||
"buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/8.0.8": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
|
||||
@@ -421,7 +421,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/8.0.8": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/_._": {}
|
||||
@@ -430,12 +430,12 @@
|
||||
"lib/netstandard2.0/_._": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Design/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.Design/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Humanizer.Core": "2.14.1",
|
||||
"Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
|
||||
"Microsoft.EntityFrameworkCore.Relational": "8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.Relational": "8.0.8",
|
||||
"Microsoft.Extensions.DependencyModel": "8.0.1",
|
||||
"Mono.TextTemplating": "2.2.1"
|
||||
},
|
||||
@@ -453,10 +453,10 @@
|
||||
"build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Relational/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.Relational/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore": "8.0.7",
|
||||
"Microsoft.EntityFrameworkCore": "8.0.8",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
|
||||
},
|
||||
"compile": {
|
||||
@@ -470,11 +470,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Data.SqlClient": "5.1.5",
|
||||
"Microsoft.EntityFrameworkCore.Relational": "8.0.7"
|
||||
"Microsoft.EntityFrameworkCore.Relational": "8.0.8"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
|
||||
@@ -487,10 +487,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools/8.0.7": {
|
||||
"Microsoft.EntityFrameworkCore.Tools/8.0.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore.Design": "8.0.7"
|
||||
"Microsoft.EntityFrameworkCore.Design": "8.0.8"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/_._": {}
|
||||
@@ -2173,10 +2173,10 @@
|
||||
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore/8.0.7": {
|
||||
"sha512": "UOyPNAgyzw/E4hUCurqvZxi0WWVLQAGZuntFPzkTXtvJLTqRjKvokvhv+XazAUSODLsU1DZ67GjZ4mT9d82+0g==",
|
||||
"Microsoft.EntityFrameworkCore/8.0.8": {
|
||||
"sha512": "iK+jrJzkfbIxutB7or808BPmJtjUEi5O+eSM7cLDwsyde6+3iOujCSfWnrHrLxY3u+EQrJD+aD8DJ6ogPA2Rtw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -2185,14 +2185,14 @@
|
||||
"buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.xml",
|
||||
"microsoft.entityframeworkcore.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/8.0.7": {
|
||||
"sha512": "DHX6nxcg4/tpWfTjAleKrXveDiNFY/OGOK6nm27GipUXNI2Uofev9cH5SYXmtGIgHWxlvfn754TXN4WnrixOwg==",
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/8.0.8": {
|
||||
"sha512": "9mMQkZsfL1c2iifBD8MWRmwy59rvsVtR9NOezJj7+g1j4P7g49MJHd8k8faC/v7d5KuHkQ6KOQiSItvoRt9PXA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.abstractions/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.abstractions/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -2200,14 +2200,14 @@
|
||||
"PACKAGE.md",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
|
||||
"microsoft.entityframeworkcore.abstractions.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.abstractions.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.abstractions.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/8.0.7": {
|
||||
"sha512": "nerD0vEOYJVhVapamRVH9DrUYbDNMJ5bPfWze4SibDDaDaekzgwQqBht97/tV+8pgdKoPAXmtiJsB+lDajwVrQ==",
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/8.0.8": {
|
||||
"sha512": "OlAXMU+VQgLz5y5/SBkLvAa9VeiR3dlJqgIebEEH2M2NGA3evm68/Tv7SLWmSxwnEAtA3nmDEZF2pacK6eXh4Q==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.analyzers/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.analyzers/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -2215,14 +2215,14 @@
|
||||
"analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
|
||||
"docs/PACKAGE.md",
|
||||
"lib/netstandard2.0/_._",
|
||||
"microsoft.entityframeworkcore.analyzers.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.analyzers.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.analyzers.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Design/8.0.7": {
|
||||
"sha512": "EUPY49Hi5BbpnkiX9ik/2fD9GPEbvKx6wvDmDNZTHZGlXAg1kcR9vt2QA2af1mIoa7gG1wqEvyQRWf9/A8gWqQ==",
|
||||
"Microsoft.EntityFrameworkCore.Design/8.0.8": {
|
||||
"sha512": "MmQAMHdjZR8Iyn/FVQrh9weJQTn0HqtKa3vELS9ffQJat/qXgnTam9M9jqvePphjkYp5Scee+Hy+EJR4nmWmOA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.design/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.design/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -2231,14 +2231,14 @@
|
||||
"build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
|
||||
"microsoft.entityframeworkcore.design.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.design.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.design.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Relational/8.0.7": {
|
||||
"sha512": "Hn86yScnW+VXb+A2LGrVGkGmjsQ9KLWR0T8GQBEcESWk8u9JYhBiRtdxz76Aq0ir82Ei48sLEZTN4VE0sJ3yIg==",
|
||||
"Microsoft.EntityFrameworkCore.Relational/8.0.8": {
|
||||
"sha512": "3WnrwdXxKg4L98cDx0lNEEau8U2lsfuBJCs0Yzht+5XVTmahboM7MukKfQHAzVsHUPszm6ci929S7Qas0WfVHA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.relational/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.relational/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -2246,14 +2246,14 @@
|
||||
"PACKAGE.md",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
|
||||
"microsoft.entityframeworkcore.relational.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.relational.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.relational.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.7": {
|
||||
"sha512": "6gwbwmXkCb+IGxTQ81KqwGjN15r3bv7PLlb4Ox/cYDqdPFbHXMsk0zgtKyPCiXqkFH2LG7KpvVYUBlu4PyTKZQ==",
|
||||
"Microsoft.EntityFrameworkCore.SqlServer/8.0.8": {
|
||||
"sha512": "A2F52W+hnGqvprx37HcAnYnJv4QoFFdc9cxd/QGNSd1vCu1I0eAEKRd0r9KS3E5I5RRj/m9XJfYCyTdy1cdn5Q==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.sqlserver/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.sqlserver/8.0.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
@@ -2261,14 +2261,14 @@
|
||||
"PACKAGE.md",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
|
||||
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
|
||||
"microsoft.entityframeworkcore.sqlserver.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.sqlserver.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.sqlserver.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools/8.0.7": {
|
||||
"sha512": "i85BNsjYGjAkvvga9uALKREHq/hsp/y7QOGuliczDSnUN6YIQXgx989XBg8iSkb5tZJqU/NLev1mU4XmirAvOw==",
|
||||
"Microsoft.EntityFrameworkCore.Tools/8.0.8": {
|
||||
"sha512": "wjDNbLJk86QpZt2JxJuNVzpBKIbEQsgcJYHGeIFTBuK6NEgvJvyxgneg059HfSJmTVdInZ61lTO4sJGCfFr7+w==",
|
||||
"type": "package",
|
||||
"path": "microsoft.entityframeworkcore.tools/8.0.7",
|
||||
"path": "microsoft.entityframeworkcore.tools/8.0.8",
|
||||
"hasTools": true,
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
@@ -2276,7 +2276,7 @@
|
||||
"Icon.png",
|
||||
"docs/PACKAGE.md",
|
||||
"lib/net8.0/_._",
|
||||
"microsoft.entityframeworkcore.tools.8.0.7.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.tools.8.0.8.nupkg.sha512",
|
||||
"microsoft.entityframeworkcore.tools.nuspec",
|
||||
"tools/EntityFrameworkCore.PS2.psd1",
|
||||
"tools/EntityFrameworkCore.PS2.psm1",
|
||||
@@ -4116,10 +4116,9 @@
|
||||
"projectFileDependencyGroups": {
|
||||
"net8.0": [
|
||||
"Entidades >= 1.0.0",
|
||||
"Microsoft.EntityFrameworkCore >= 8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.Design >= 8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.SqlServer >= 8.0.7",
|
||||
"Microsoft.EntityFrameworkCore.Tools >= 8.0.7"
|
||||
"Microsoft.EntityFrameworkCore >= 8.0.8",
|
||||
"Microsoft.EntityFrameworkCore.SqlServer >= 8.0.8",
|
||||
"Microsoft.EntityFrameworkCore.Tools >= 8.0.8"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
@@ -4129,11 +4128,11 @@
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectName": "Modelo",
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\obj\\",
|
||||
"outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
@@ -4155,8 +4154,8 @@
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
"C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj": {
|
||||
"projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Entidades\\Entidades.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4178,23 +4177,17 @@
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Design": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.SqlServer": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[8.0.7, )"
|
||||
"version": "[8.0.8, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "rseReTJNK28=",
|
||||
"dgSpecHash": "iE9DaIcdhss=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"projectFilePath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\azure.core\\1.35.0\\azure.core.1.35.0.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\azure.identity\\1.10.3\\azure.identity.1.10.3.nupkg.sha512",
|
||||
@@ -16,13 +16,13 @@
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.5\\microsoft.data.sqlclient.5.1.5.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.7\\microsoft.entityframeworkcore.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.7\\microsoft.entityframeworkcore.abstractions.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.7\\microsoft.entityframeworkcore.analyzers.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.7\\microsoft.entityframeworkcore.design.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.7\\microsoft.entityframeworkcore.relational.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\8.0.7\\microsoft.entityframeworkcore.sqlserver.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\8.0.7\\microsoft.entityframeworkcore.tools.8.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.8\\microsoft.entityframeworkcore.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.8\\microsoft.entityframeworkcore.abstractions.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.8\\microsoft.entityframeworkcore.analyzers.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.8\\microsoft.entityframeworkcore.design.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.8\\microsoft.entityframeworkcore.relational.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\8.0.8\\microsoft.entityframeworkcore.sqlserver.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\8.0.8\\microsoft.entityframeworkcore.tools.8.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -1,24 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Vista")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d11016fe50f731cc9fc7ccc12e78610c74ea7248")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Vista")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Vista")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// Generado por la clase WriteCodeFragment de MSBuild.
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
68b37920a857df0494412815764d529909a7287acae26b0b60f8952343269af2
|
||||
@@ -1,13 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Vista
|
||||
build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Vista/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
@@ -1,8 +0,0 @@
|
||||
// <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;
|
||||
Binary file not shown.
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {}
|
||||
},
|
||||
"libraries": {}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
],
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\fedpo\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
<<<<<<< HEAD
|
||||
"C:\\Users\\Nacho\\.nuget\\packages"
|
||||
=======
|
||||
"C:\\Users\\fedpo\\.nuget\\packages"
|
||||
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
|
||||
],
|
||||
"configProperties": {
|
||||
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -1,25 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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("Vista")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+abfd18e86f40a98925507ec03c2e8832ee47a3eb")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Vista")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Vista")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// Generado por la clase WriteCodeFragment de MSBuild.
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
281e45d05d567e56bd25031aebcd2e38799f1146d63fd738a708cca7c575e649
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user