diff --git a/.vs/Final_OOP/v17/.suo b/.vs/Final_OOP/v17/.suo index 1c9f0bb..3af5033 100644 Binary files a/.vs/Final_OOP/v17/.suo and b/.vs/Final_OOP/v17/.suo differ diff --git a/Controladora/ControladoraCategorias.cs b/Controladora/ControladoraCategorias.cs index 29e990f..138f134 100644 --- a/Controladora/ControladoraCategorias.cs +++ b/Controladora/ControladoraCategorias.cs @@ -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 { + 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 Listar() { - return RepositorioCategoria.Instance.Listar(); + return repositorioCategoria.Listar().ToList().AsReadOnly(); } } } diff --git a/Controladora/obj/Controladora.csproj.nuget.dgspec.json b/Controladora/obj/Controladora.csproj.nuget.dgspec.json index 1d14fe4..daeab9f 100644 --- a/Controladora/obj/Controladora.csproj.nuget.dgspec.json +++ b/Controladora/obj/Controladora.csproj.nuget.dgspec.json @@ -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": [ diff --git a/Controladora/obj/Controladora.csproj.nuget.g.props b/Controladora/obj/Controladora.csproj.nuget.g.props index cc8715f..4e09205 100644 --- a/Controladora/obj/Controladora.csproj.nuget.g.props +++ b/Controladora/obj/Controladora.csproj.nuget.g.props @@ -7,13 +7,13 @@ $(UserProfile)\.nuget\packages\ C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.10.1 + 6.10.0 - + \ No newline at end of file diff --git a/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs b/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs deleted file mode 100644 index a34aa1d..0000000 --- a/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -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. - diff --git a/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache b/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache deleted file mode 100644 index aafff9b..0000000 --- a/Controladora/obj/Debug/net6.0/Controladora.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -75ec560685bbc0bd982ed7c58ee9f6706e56f8184dc1c60627aee305719bd5c9 diff --git a/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig b/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5b69504..0000000 --- a/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -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 = diff --git a/Controladora/obj/Debug/net6.0/Controladora.assets.cache b/Controladora/obj/Debug/net6.0/Controladora.assets.cache deleted file mode 100644 index 1a9f332..0000000 Binary files a/Controladora/obj/Debug/net6.0/Controladora.assets.cache and /dev/null differ diff --git a/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache b/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache deleted file mode 100644 index 229a568..0000000 Binary files a/Controladora/obj/Debug/net6.0/Controladora.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache b/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache deleted file mode 100644 index d3cf161..0000000 --- a/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b339fbe0c06d5a646f4ea7d7022193c0919788dee5d47f294410285b8e801df2 diff --git a/Controladora/obj/Debug/net6.0/Controladora.csproj.FileListAbsolute.txt b/Controladora/obj/Debug/net6.0/Controladora.csproj.FileListAbsolute.txt deleted file mode 100644 index 98fbd27..0000000 --- a/Controladora/obj/Debug/net6.0/Controladora.csproj.FileListAbsolute.txt +++ /dev/null @@ -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 diff --git a/Controladora/obj/Debug/net6.0/Controladora.dll b/Controladora/obj/Debug/net6.0/Controladora.dll deleted file mode 100644 index fd64fe0..0000000 Binary files a/Controladora/obj/Debug/net6.0/Controladora.dll and /dev/null differ diff --git a/Controladora/obj/Debug/net6.0/Controladora.pdb b/Controladora/obj/Debug/net6.0/Controladora.pdb deleted file mode 100644 index f0dd469..0000000 Binary files a/Controladora/obj/Debug/net6.0/Controladora.pdb and /dev/null differ diff --git a/Controladora/obj/Debug/net6.0/ref/Controladora.dll b/Controladora/obj/Debug/net6.0/ref/Controladora.dll deleted file mode 100644 index 82e1f3e..0000000 Binary files a/Controladora/obj/Debug/net6.0/ref/Controladora.dll and /dev/null differ diff --git a/Controladora/obj/Debug/net6.0/refint/Controladora.dll b/Controladora/obj/Debug/net6.0/refint/Controladora.dll deleted file mode 100644 index 82e1f3e..0000000 Binary files a/Controladora/obj/Debug/net6.0/refint/Controladora.dll and /dev/null differ diff --git a/Controladora/obj/project.assets.json b/Controladora/obj/project.assets.json index 02e32ec..164109c 100644 --- a/Controladora/obj/project.assets.json +++ b/Controladora/obj/project.assets.json @@ -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" } } } diff --git a/Controladora/obj/project.nuget.cache b/Controladora/obj/project.nuget.cache index 27c08a9..7dc83ae 100644 --- a/Controladora/obj/project.nuget.cache +++ b/Controladora/obj/project.nuget.cache @@ -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", diff --git a/Entidades/Factura.cs b/Entidades/Factura.cs index 45fa80a..1c7f393 100644 --- a/Entidades/Factura.cs +++ b/Entidades/Factura.cs @@ -8,7 +8,8 @@ namespace Entidades public double Total { get; set; } public DateTime Fecha { get; set; } public Cliente Cliente { get; set; } - private List detalles = new List(); + public List detalles = new List(); + public void AñadirDetalle(DetalleFactura detalle) { diff --git a/Entidades/obj/Debug/net6.0/Entidades.AssemblyInfo.cs b/Entidades/obj/Debug/net6.0/Entidades.AssemblyInfo.cs deleted file mode 100644 index b7ac0c4..0000000 --- a/Entidades/obj/Debug/net6.0/Entidades.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -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. - diff --git a/Entidades/obj/Debug/net6.0/Entidades.AssemblyInfoInputs.cache b/Entidades/obj/Debug/net6.0/Entidades.AssemblyInfoInputs.cache deleted file mode 100644 index 577cfe7..0000000 --- a/Entidades/obj/Debug/net6.0/Entidades.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -3b03da26f28f96f0323fa94148a70c2466afcf8504bb48681ee28c0bd3312ab4 diff --git a/Entidades/obj/Debug/net6.0/Entidades.GlobalUsings.g.cs b/Entidades/obj/Debug/net6.0/Entidades.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Entidades/obj/Debug/net6.0/Entidades.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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; diff --git a/Entidades/obj/Debug/net6.0/Entidades.assets.cache b/Entidades/obj/Debug/net6.0/Entidades.assets.cache deleted file mode 100644 index d88f37a..0000000 Binary files a/Entidades/obj/Debug/net6.0/Entidades.assets.cache and /dev/null differ diff --git a/Entidades/obj/Entidades.csproj.nuget.dgspec.json b/Entidades/obj/Entidades.csproj.nuget.dgspec.json index 23c23ad..1a00126 100644 --- a/Entidades/obj/Entidades.csproj.nuget.dgspec.json +++ b/Entidades/obj/Entidades.csproj.nuget.dgspec.json @@ -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" diff --git a/Entidades/obj/Entidades.csproj.nuget.g.props b/Entidades/obj/Entidades.csproj.nuget.g.props index 9400ad7..82d4e99 100644 --- a/Entidades/obj/Entidades.csproj.nuget.g.props +++ b/Entidades/obj/Entidades.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.10.1 + 6.10.0 diff --git a/Entidades/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Entidades/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/Entidades/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/Entidades/obj/Release/net6.0/Entidades.AssemblyInfo.cs b/Entidades/obj/Release/net6.0/Entidades.AssemblyInfo.cs deleted file mode 100644 index c502b58..0000000 --- a/Entidades/obj/Release/net6.0/Entidades.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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. -// -//------------------------------------------------------------------------------ - -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. - diff --git a/Entidades/obj/Release/net6.0/Entidades.AssemblyInfoInputs.cache b/Entidades/obj/Release/net6.0/Entidades.AssemblyInfoInputs.cache deleted file mode 100644 index f1e8231..0000000 --- a/Entidades/obj/Release/net6.0/Entidades.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0f23a71dabcab7104ee2511db3de6cc1ef434f03702a8d033e7694541758b7dd diff --git a/Entidades/obj/Release/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig b/Entidades/obj/Release/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index a9ec198..0000000 --- a/Entidades/obj/Release/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -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 = diff --git a/Entidades/obj/Release/net6.0/Entidades.GlobalUsings.g.cs b/Entidades/obj/Release/net6.0/Entidades.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Entidades/obj/Release/net6.0/Entidades.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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; diff --git a/Entidades/obj/Release/net6.0/Entidades.assets.cache b/Entidades/obj/Release/net6.0/Entidades.assets.cache deleted file mode 100644 index 49f6b8f..0000000 Binary files a/Entidades/obj/Release/net6.0/Entidades.assets.cache and /dev/null differ diff --git a/Entidades/obj/project.assets.json b/Entidades/obj/project.assets.json index 12a9067..b591883 100644 --- a/Entidades/obj/project.assets.json +++ b/Entidades/obj/project.assets.json @@ -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" diff --git a/Entidades/obj/project.nuget.cache b/Entidades/obj/project.nuget.cache index 13ea95d..4d3d261 100644 --- a/Entidades/obj/project.nuget.cache +++ b/Entidades/obj/project.nuget.cache @@ -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": [] } \ No newline at end of file diff --git a/Informes/bin/Debug/net8.0/Entidades.dll b/Informes/bin/Debug/net8.0/Entidades.dll new file mode 100644 index 0000000..90b8e80 Binary files /dev/null and b/Informes/bin/Debug/net8.0/Entidades.dll differ diff --git a/Informes/bin/Debug/net8.0/Entidades.pdb b/Informes/bin/Debug/net8.0/Entidades.pdb new file mode 100644 index 0000000..80bac10 Binary files /dev/null and b/Informes/bin/Debug/net8.0/Entidades.pdb differ diff --git a/Informes/bin/Debug/net8.0/Informes.deps.json b/Informes/bin/Debug/net8.0/Informes.deps.json new file mode 100644 index 0000000..0a19077 --- /dev/null +++ b/Informes/bin/Debug/net8.0/Informes.deps.json @@ -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": "" + } + } +} \ No newline at end of file diff --git a/Informes/bin/Debug/net8.0/Informes.dll b/Informes/bin/Debug/net8.0/Informes.dll new file mode 100644 index 0000000..cbcdcaf Binary files /dev/null and b/Informes/bin/Debug/net8.0/Informes.dll differ diff --git a/Informes/bin/Debug/net8.0/Informes.pdb b/Informes/bin/Debug/net8.0/Informes.pdb new file mode 100644 index 0000000..b6f0171 Binary files /dev/null and b/Informes/bin/Debug/net8.0/Informes.pdb differ diff --git a/Informes/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Informes/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/Informes/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache b/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache deleted file mode 100644 index bcb016b..0000000 --- a/Informes/obj/Debug/net6.0/Informes.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -d7c554bdf147478bbc3b788a6c9f2e2fbb1248125625611bcde6ae37d8fd9f9b diff --git a/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig b/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index cb9be07..0000000 --- a/Informes/obj/Debug/net6.0/Informes.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -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 = diff --git a/Informes/obj/Debug/net6.0/Informes.GlobalUsings.g.cs b/Informes/obj/Debug/net6.0/Informes.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Informes/obj/Debug/net6.0/Informes.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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; diff --git a/Informes/obj/Debug/net6.0/Informes.assets.cache b/Informes/obj/Debug/net6.0/Informes.assets.cache deleted file mode 100644 index fc78d76..0000000 Binary files a/Informes/obj/Debug/net6.0/Informes.assets.cache and /dev/null differ diff --git a/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache b/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache deleted file mode 100644 index 334ef47..0000000 Binary files a/Informes/obj/Debug/net6.0/Informes.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Informes/obj/Debug/net6.0/Informes.csproj.CopyComplete b/Informes/obj/Debug/net6.0/Informes.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache b/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache deleted file mode 100644 index cd10e57..0000000 --- a/Informes/obj/Debug/net6.0/Informes.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -831ed014d7709fa34aba4faa4c71009d42238c3bf5a4862fe42724d244fc7825 diff --git a/Informes/obj/Debug/net6.0/Informes.csproj.FileListAbsolute.txt b/Informes/obj/Debug/net6.0/Informes.csproj.FileListAbsolute.txt deleted file mode 100644 index 719b829..0000000 --- a/Informes/obj/Debug/net6.0/Informes.csproj.FileListAbsolute.txt +++ /dev/null @@ -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 diff --git a/Informes/obj/Debug/net6.0/Informes.dll b/Informes/obj/Debug/net6.0/Informes.dll deleted file mode 100644 index 3126c99..0000000 Binary files a/Informes/obj/Debug/net6.0/Informes.dll and /dev/null differ diff --git a/Informes/obj/Debug/net6.0/Informes.pdb b/Informes/obj/Debug/net6.0/Informes.pdb deleted file mode 100644 index abd1911..0000000 Binary files a/Informes/obj/Debug/net6.0/Informes.pdb and /dev/null differ diff --git a/Informes/obj/Debug/net6.0/ref/Informes.dll b/Informes/obj/Debug/net6.0/ref/Informes.dll deleted file mode 100644 index c2854b0..0000000 Binary files a/Informes/obj/Debug/net6.0/ref/Informes.dll and /dev/null differ diff --git a/Informes/obj/Debug/net6.0/refint/Informes.dll b/Informes/obj/Debug/net6.0/refint/Informes.dll deleted file mode 100644 index c2854b0..0000000 Binary files a/Informes/obj/Debug/net6.0/refint/Informes.dll and /dev/null differ diff --git a/Informes/obj/Debug/net8.0/Informes.AssemblyInfo.cs b/Informes/obj/Debug/net8.0/Informes.AssemblyInfo.cs index 8e0b0bb..2667361 100644 --- a/Informes/obj/Debug/net8.0/Informes.AssemblyInfo.cs +++ b/Informes/obj/Debug/net8.0/Informes.AssemblyInfo.cs @@ -1,9 +1,10 @@ //------------------------------------------------------------------------------ // -// 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. // //------------------------------------------------------------------------------ @@ -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")] diff --git a/Informes/obj/Debug/net8.0/Informes.AssemblyInfoInputs.cache b/Informes/obj/Debug/net8.0/Informes.AssemblyInfoInputs.cache index 4502884..9c14b0b 100644 --- a/Informes/obj/Debug/net8.0/Informes.AssemblyInfoInputs.cache +++ b/Informes/obj/Debug/net8.0/Informes.AssemblyInfoInputs.cache @@ -1 +1 @@ -f6eaae8315b08ed85135788692b95ffa2be34b3c61e49b0e89abeb700edac62f +be31fe192a36db7117c612313fe2d62f48eb4fc996ce43773cf7cb34452223ec diff --git a/Informes/obj/Debug/net8.0/Informes.GeneratedMSBuildEditorConfig.editorconfig b/Informes/obj/Debug/net8.0/Informes.GeneratedMSBuildEditorConfig.editorconfig index 76b36e4..c7f90d8 100644 --- a/Informes/obj/Debug/net8.0/Informes.GeneratedMSBuildEditorConfig.editorconfig +++ b/Informes/obj/Debug/net8.0/Informes.GeneratedMSBuildEditorConfig.editorconfig @@ -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 = diff --git a/Informes/obj/Debug/net8.0/Informes.assets.cache b/Informes/obj/Debug/net8.0/Informes.assets.cache index 940f3b9..a117c4a 100644 Binary files a/Informes/obj/Debug/net8.0/Informes.assets.cache and b/Informes/obj/Debug/net8.0/Informes.assets.cache differ diff --git a/Informes/obj/Debug/net8.0/Informes.csproj.AssemblyReference.cache b/Informes/obj/Debug/net8.0/Informes.csproj.AssemblyReference.cache new file mode 100644 index 0000000..719fca3 Binary files /dev/null and b/Informes/obj/Debug/net8.0/Informes.csproj.AssemblyReference.cache differ diff --git a/Informes/obj/Debug/net6.0/Informes.csproj.BuildWithSkipAnalyzers b/Informes/obj/Debug/net8.0/Informes.csproj.BuildWithSkipAnalyzers similarity index 100% rename from Informes/obj/Debug/net6.0/Informes.csproj.BuildWithSkipAnalyzers rename to Informes/obj/Debug/net8.0/Informes.csproj.BuildWithSkipAnalyzers diff --git a/Informes/obj/Debug/net8.0/Informes.csproj.CoreCompileInputs.cache b/Informes/obj/Debug/net8.0/Informes.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7cc5c2c --- /dev/null +++ b/Informes/obj/Debug/net8.0/Informes.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +63b2f7d13bf91394a559ef5cfbb11050dfe08c97d96ddd5751f7b9529166925b diff --git a/Informes/obj/Debug/net8.0/Informes.csproj.FileListAbsolute.txt b/Informes/obj/Debug/net8.0/Informes.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c04684f --- /dev/null +++ b/Informes/obj/Debug/net8.0/Informes.csproj.FileListAbsolute.txt @@ -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 diff --git a/Informes/obj/Debug/net6.0/Informes.csproj.Up2Date b/Informes/obj/Debug/net8.0/Informes.csproj.Up2Date similarity index 100% rename from Informes/obj/Debug/net6.0/Informes.csproj.Up2Date rename to Informes/obj/Debug/net8.0/Informes.csproj.Up2Date diff --git a/Informes/obj/Debug/net8.0/Informes.dll b/Informes/obj/Debug/net8.0/Informes.dll new file mode 100644 index 0000000..cbcdcaf Binary files /dev/null and b/Informes/obj/Debug/net8.0/Informes.dll differ diff --git a/Informes/obj/Debug/net8.0/Informes.pdb b/Informes/obj/Debug/net8.0/Informes.pdb new file mode 100644 index 0000000..b6f0171 Binary files /dev/null and b/Informes/obj/Debug/net8.0/Informes.pdb differ diff --git a/Informes/obj/Debug/net8.0/ref/Informes.dll b/Informes/obj/Debug/net8.0/ref/Informes.dll new file mode 100644 index 0000000..afd7668 Binary files /dev/null and b/Informes/obj/Debug/net8.0/ref/Informes.dll differ diff --git a/Informes/obj/Debug/net8.0/refint/Informes.dll b/Informes/obj/Debug/net8.0/refint/Informes.dll new file mode 100644 index 0000000..afd7668 Binary files /dev/null and b/Informes/obj/Debug/net8.0/refint/Informes.dll differ diff --git a/Informes/obj/Informes.csproj.nuget.dgspec.json b/Informes/obj/Informes.csproj.nuget.dgspec.json index c743043..7740a75 100644 --- a/Informes/obj/Informes.csproj.nuget.dgspec.json +++ b/Informes/obj/Informes.csproj.nuget.dgspec.json @@ -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" } } } diff --git a/Informes/obj/Informes.csproj.nuget.g.props b/Informes/obj/Informes.csproj.nuget.g.props index 9400ad7..82d4e99 100644 --- a/Informes/obj/Informes.csproj.nuget.g.props +++ b/Informes/obj/Informes.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.10.1 + 6.10.0 diff --git a/Informes/obj/project.assets.json b/Informes/obj/project.assets.json index 45a49a7..34ffdb0 100644 --- a/Informes/obj/project.assets.json +++ b/Informes/obj/project.assets.json @@ -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" } } } diff --git a/Informes/obj/project.nuget.cache b/Informes/obj/project.nuget.cache index d87b6b4..6c52205 100644 --- a/Informes/obj/project.nuget.cache +++ b/Informes/obj/project.nuget.cache @@ -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": [] } \ No newline at end of file diff --git a/Modelo/Context.cs b/Modelo/Context.cs index 1b69ab1..791c9a5 100644 --- a/Modelo/Context.cs +++ b/Modelo/Context.cs @@ -70,9 +70,9 @@ public class Context : Microsoft.EntityFrameworkCore.DbContext .HasKey(f => f.Id); modelBuilder.Entity() - .HasMany(f => f.Detalles) + .HasMany(f => f.detalles) .WithOne() - .HasForeignKey(df => df.FacturaId); + .HasForeignKey(df => df.IdFactura); modelBuilder.Entity() .ToTable("DetallesFacturas") diff --git a/Modelo/Modelo.csproj b/Modelo/Modelo.csproj index c8a9c25..e6e4093 100644 --- a/Modelo/Modelo.csproj +++ b/Modelo/Modelo.csproj @@ -1,20 +1,16 @@ - + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + - - - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - - - runtime; build; native; contentfiles; analyzers; buildtransitive - all - + diff --git a/Modelo/Modelo/obj/Modelo.csproj.EntityFrameworkCore.targets b/Modelo/Modelo/obj/Modelo.csproj.EntityFrameworkCore.targets deleted file mode 100644 index 6b67a59..0000000 --- a/Modelo/Modelo/obj/Modelo.csproj.EntityFrameworkCore.targets +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modelo/RepositorioCategoria.cs b/Modelo/RepositorioCategoria.cs index e8f6a7b..0ed6e71 100644 --- a/Modelo/RepositorioCategoria.cs +++ b/Modelo/RepositorioCategoria.cs @@ -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); } diff --git a/Modelo/RepositorioClientes.cs b/Modelo/RepositorioClientes.cs index cf5a9ae..01cc7fb 100644 --- a/Modelo/RepositorioClientes.cs +++ b/Modelo/RepositorioClientes.cs @@ -34,7 +34,7 @@ namespace Modelo public override void Mod(Cliente t) { - context.Categorias.Update(t); + context.Clientes.Update(t); } diff --git a/Modelo/RepositorioProductos.cs b/Modelo/RepositorioProductos.cs deleted file mode 100644 index ebe1b5e..0000000 --- a/Modelo/RepositorioProductos.cs +++ /dev/null @@ -1,89 +0,0 @@ -using Entidades; - -namespace Modelo -{ - public sealed class RepositorioProductos : Repositorio, Repositorio - { - private Context context; - - public RepositorioProductos(Context context) - { - this.context = context; - } - - public override IEnumerable Listar() - { - throw new NotImplementedException(); - } - - ProductoNoPercedero Repositorio.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 Repositorio.Listar() - { - throw new NotImplementedException(); - } - - ProductoPercedero Repositorio.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 Repositorio.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(); - } - } -} diff --git a/Modelo/RepositorioProductosPercedero.cs b/Modelo/RepositorioProductosPercedero.cs new file mode 100644 index 0000000..b742786 --- /dev/null +++ b/Modelo/RepositorioProductosPercedero.cs @@ -0,0 +1,41 @@ +using Entidades; + +namespace Modelo +{ + public sealed class RepositorioProductosPercedero : Repositorio + { + + public RepositorioProductosPercedero(Context context) + { + this.context = context; + } + + public override IEnumerable 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); + } + } +} diff --git a/Modelo/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Modelo/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/Modelo/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/Modelo/obj/Debug/net6.0/Modelo.AssemblyInfo.cs b/Modelo/obj/Debug/net6.0/Modelo.AssemblyInfo.cs deleted file mode 100644 index 0fa90d2..0000000 --- a/Modelo/obj/Debug/net6.0/Modelo.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -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. - diff --git a/Modelo/obj/Debug/net6.0/Modelo.AssemblyInfoInputs.cache b/Modelo/obj/Debug/net6.0/Modelo.AssemblyInfoInputs.cache deleted file mode 100644 index 02521e1..0000000 --- a/Modelo/obj/Debug/net6.0/Modelo.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0bd1191dea479777ed8a0ff9a03fc7d9bd03d44f30c310a50911f912ebc8fc3e diff --git a/Modelo/obj/Debug/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig b/Modelo/obj/Debug/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d29227f..0000000 --- a/Modelo/obj/Debug/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -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 = diff --git a/Modelo/obj/Debug/net6.0/Modelo.GlobalUsings.g.cs b/Modelo/obj/Debug/net6.0/Modelo.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Modelo/obj/Debug/net6.0/Modelo.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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; diff --git a/Modelo/obj/Debug/net6.0/Modelo.assets.cache b/Modelo/obj/Debug/net6.0/Modelo.assets.cache deleted file mode 100644 index 8d54a16..0000000 Binary files a/Modelo/obj/Debug/net6.0/Modelo.assets.cache and /dev/null differ diff --git a/Modelo/obj/Modelo.csproj.nuget.dgspec.json b/Modelo/obj/Modelo.csproj.nuget.dgspec.json index d173d6e..e71d9e0 100644 --- a/Modelo/obj/Modelo.csproj.nuget.dgspec.json +++ b/Modelo/obj/Modelo.csproj.nuget.dgspec.json @@ -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": [ diff --git a/Modelo/obj/Modelo.csproj.nuget.g.props b/Modelo/obj/Modelo.csproj.nuget.g.props index a01eee2..dd0007d 100644 --- a/Modelo/obj/Modelo.csproj.nuget.g.props +++ b/Modelo/obj/Modelo.csproj.nuget.g.props @@ -7,18 +7,18 @@ $(UserProfile)\.nuget\packages\ C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.10.1 + 6.10.0 - - + + C:\Users\Navegador\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3 - C:\Users\Navegador\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.7 + C:\Users\Navegador\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.8 \ No newline at end of file diff --git a/Modelo/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Modelo/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/Modelo/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/Modelo/obj/Release/net6.0/Modelo.AssemblyInfoInputs.cache b/Modelo/obj/Release/net6.0/Modelo.AssemblyInfoInputs.cache deleted file mode 100644 index 2842b1b..0000000 --- a/Modelo/obj/Release/net6.0/Modelo.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -3e36c8c77cd831cf7c05eae84ca674fcaae78b66286858be7486e7662b80b494 diff --git a/Modelo/obj/Release/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig b/Modelo/obj/Release/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5687b99..0000000 --- a/Modelo/obj/Release/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -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 = diff --git a/Modelo/obj/Release/net6.0/Modelo.GlobalUsings.g.cs b/Modelo/obj/Release/net6.0/Modelo.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Modelo/obj/Release/net6.0/Modelo.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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; diff --git a/Modelo/obj/Release/net6.0/Modelo.assets.cache b/Modelo/obj/Release/net6.0/Modelo.assets.cache deleted file mode 100644 index 15d0ca8..0000000 Binary files a/Modelo/obj/Release/net6.0/Modelo.assets.cache and /dev/null differ diff --git a/Modelo/obj/project.assets.json b/Modelo/obj/project.assets.json index 573246f..cf7a063 100644 --- a/Modelo/obj/project.assets.json +++ b/Modelo/obj/project.assets.json @@ -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": [ diff --git a/Modelo/obj/project.nuget.cache b/Modelo/obj/project.nuget.cache index 7ca5489..2945296 100644 --- a/Modelo/obj/project.nuget.cache +++ b/Modelo/obj/project.nuget.cache @@ -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", diff --git a/Vista/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Vista/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/Vista/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/Vista/obj/Debug/net6.0-windows/Vista.AssemblyInfo.cs b/Vista/obj/Debug/net6.0-windows/Vista.AssemblyInfo.cs deleted file mode 100644 index e70a653..0000000 --- a/Vista/obj/Debug/net6.0-windows/Vista.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -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. - diff --git a/Vista/obj/Debug/net6.0-windows/Vista.AssemblyInfoInputs.cache b/Vista/obj/Debug/net6.0-windows/Vista.AssemblyInfoInputs.cache deleted file mode 100644 index d84dcf3..0000000 --- a/Vista/obj/Debug/net6.0-windows/Vista.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -68b37920a857df0494412815764d529909a7287acae26b0b60f8952343269af2 diff --git a/Vista/obj/Debug/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig b/Vista/obj/Debug/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7013c40..0000000 --- a/Vista/obj/Debug/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -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 = diff --git a/Vista/obj/Debug/net6.0-windows/Vista.GlobalUsings.g.cs b/Vista/obj/Debug/net6.0-windows/Vista.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Vista/obj/Debug/net6.0-windows/Vista.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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; diff --git a/Vista/obj/Debug/net6.0-windows/Vista.assets.cache b/Vista/obj/Debug/net6.0-windows/Vista.assets.cache deleted file mode 100644 index 222aa69..0000000 Binary files a/Vista/obj/Debug/net6.0-windows/Vista.assets.cache and /dev/null differ diff --git a/Vista/obj/Debug/net6.0-windows/Vista.designer.deps.json b/Vista/obj/Debug/net6.0-windows/Vista.designer.deps.json deleted file mode 100644 index 706cdfa..0000000 --- a/Vista/obj/Debug/net6.0-windows/Vista.designer.deps.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": {} - }, - "libraries": {} -} \ No newline at end of file diff --git a/Vista/obj/Debug/net6.0-windows/Vista.designer.runtimeconfig.json b/Vista/obj/Debug/net6.0-windows/Vista.designer.runtimeconfig.json deleted file mode 100644 index ddd671b..0000000 --- a/Vista/obj/Debug/net6.0-windows/Vista.designer.runtimeconfig.json +++ /dev/null @@ -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 - } - } -} \ No newline at end of file diff --git a/Vista/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Vista/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/Vista/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/Vista/obj/Release/net6.0-windows/Vista.AssemblyInfo.cs b/Vista/obj/Release/net6.0-windows/Vista.AssemblyInfo.cs deleted file mode 100644 index 044bb9d..0000000 --- a/Vista/obj/Release/net6.0-windows/Vista.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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. -// -//------------------------------------------------------------------------------ - -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. - diff --git a/Vista/obj/Release/net6.0-windows/Vista.AssemblyInfoInputs.cache b/Vista/obj/Release/net6.0-windows/Vista.AssemblyInfoInputs.cache deleted file mode 100644 index 231b757..0000000 --- a/Vista/obj/Release/net6.0-windows/Vista.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -281e45d05d567e56bd25031aebcd2e38799f1146d63fd738a708cca7c575e649 diff --git a/Vista/obj/Release/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig b/Vista/obj/Release/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index a294098..0000000 --- a/Vista/obj/Release/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -is_global = true -build_property.ApplicationManifest = -build_property.StartupObject = -build_property.ApplicationDefaultFont = -build_property.ApplicationHighDpiMode = -build_property.ApplicationUseCompatibleTextRendering = -build_property.ApplicationVisualStyles = -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 = C:\Users\Nacho\source\repos\Final\Vista\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Vista/obj/Release/net6.0-windows/Vista.GlobalUsings.g.cs b/Vista/obj/Release/net6.0-windows/Vista.GlobalUsings.g.cs deleted file mode 100644 index 84bbb89..0000000 --- a/Vista/obj/Release/net6.0-windows/Vista.GlobalUsings.g.cs +++ /dev/null @@ -1,10 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Drawing; -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; -global using global::System.Windows.Forms; diff --git a/Vista/obj/Vista.csproj.nuget.dgspec.json b/Vista/obj/Vista.csproj.nuget.dgspec.json index 1c89e2e..483bc6c 100644 --- a/Vista/obj/Vista.csproj.nuget.dgspec.json +++ b/Vista/obj/Vista.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\Vista.csproj": {} + "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\Vista.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": [ @@ -304,14 +298,14 @@ } } }, - "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\Vista.csproj": { + "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\Vista.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\Vista.csproj", + "projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\Vista.csproj", "projectName": "Vista", - "projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\Vista.csproj", + "projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\Vista.csproj", "packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\obj\\", + "outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -333,14 +327,14 @@ "net8.0-windows7.0": { "targetAlias": "net8.0-windows", "projectReferences": { - "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj": { - "projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj" + "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj": { + "projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.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\\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" } } } diff --git a/Vista/obj/Vista.csproj.nuget.g.props b/Vista/obj/Vista.csproj.nuget.g.props index 69e043f..93901f4 100644 --- a/Vista/obj/Vista.csproj.nuget.g.props +++ b/Vista/obj/Vista.csproj.nuget.g.props @@ -4,18 +4,19 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /home/fede/.nuget/packages/ - /home/fede/.nuget/packages/ + $(UserProfile)\.nuget\packages\ + C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.9.1 + 6.10.0 - + + - + - /home/fede/.nuget/packages/microsoft.web.webview2/1.0.864.35 + C:\Users\Navegador\.nuget\packages\microsoft.web.webview2\1.0.864.35 \ No newline at end of file diff --git a/Vista/obj/Vista.csproj.nuget.g.targets b/Vista/obj/Vista.csproj.nuget.g.targets index 7cb6e85..d3426da 100644 --- a/Vista/obj/Vista.csproj.nuget.g.targets +++ b/Vista/obj/Vista.csproj.nuget.g.targets @@ -1,7 +1,7 @@  - - + + \ No newline at end of file diff --git a/Vista/obj/project.assets.json b/Vista/obj/project.assets.json index d4793de..db2e91a 100644 --- a/Vista/obj/project.assets.json +++ b/Vista/obj/project.assets.json @@ -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": { @@ -1100,8 +1100,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": {} @@ -1325,10 +1325,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", @@ -1337,14 +1337,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", @@ -1352,14 +1352,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", @@ -1367,14 +1367,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", @@ -1382,14 +1382,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", @@ -1397,7 +1397,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" ] }, @@ -2962,11 +2962,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\Vista.csproj", + "projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\Vista.csproj", "projectName": "Vista", - "projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\Vista.csproj", + "projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\Vista.csproj", "packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\obj\\", + "outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -2988,14 +2988,14 @@ "net8.0-windows7.0": { "targetAlias": "net8.0-windows", "projectReferences": { - "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj": { - "projectPath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Controladora\\Controladora.csproj" + "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.csproj": { + "projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Controladora\\Controladora.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\\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" } } } diff --git a/Vista/obj/project.nuget.cache b/Vista/obj/project.nuget.cache index b4bb4ab..f0f645f 100644 --- a/Vista/obj/project.nuget.cache +++ b/Vista/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "Ll0pxy5yVwM=", + "dgSpecHash": "ODLjmnLVf34=", "success": true, - "projectFilePath": "C:\\Users\\Navegador\\Source\\Repos\\Final_Das\\Vista\\Vista.csproj", + "projectFilePath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Vista\\Vista.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", diff --git a/testing/bin/Debug/net8.0/.msCoverageSourceRootsMapping_testing b/testing/bin/Debug/net8.0/.msCoverageSourceRootsMapping_testing new file mode 100644 index 0000000..ad46510 Binary files /dev/null and b/testing/bin/Debug/net8.0/.msCoverageSourceRootsMapping_testing differ diff --git a/testing/bin/Debug/net8.0/CoverletSourceRootsMapping_testing b/testing/bin/Debug/net8.0/CoverletSourceRootsMapping_testing new file mode 100644 index 0000000..ad46510 Binary files /dev/null and b/testing/bin/Debug/net8.0/CoverletSourceRootsMapping_testing differ diff --git a/testing/bin/Release/net8.0/.msCoverageSourceRootsMapping_testing b/testing/bin/Release/net8.0/.msCoverageSourceRootsMapping_testing new file mode 100644 index 0000000..ad46510 Binary files /dev/null and b/testing/bin/Release/net8.0/.msCoverageSourceRootsMapping_testing differ diff --git a/testing/bin/Release/net8.0/CoverletSourceRootsMapping_testing b/testing/bin/Release/net8.0/CoverletSourceRootsMapping_testing new file mode 100644 index 0000000..ad46510 Binary files /dev/null and b/testing/bin/Release/net8.0/CoverletSourceRootsMapping_testing differ diff --git a/Controladora/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/testing/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs similarity index 67% rename from Controladora/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs rename to testing/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs index ed92695..2217181 100644 --- a/Controladora/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ b/testing/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -1,4 +1,4 @@ // using System; using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/testing/obj/Debug/net8.0/testing.AssemblyInfo.cs b/testing/obj/Debug/net8.0/testing.AssemblyInfo.cs index 9b6519f..f08c9a0 100644 --- a/testing/obj/Debug/net8.0/testing.AssemblyInfo.cs +++ b/testing/obj/Debug/net8.0/testing.AssemblyInfo.cs @@ -1,9 +1,10 @@ //------------------------------------------------------------------------------ // -// 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. // //------------------------------------------------------------------------------ @@ -13,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("testing")] [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("testing")] [assembly: System.Reflection.AssemblyTitleAttribute("testing")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/testing/obj/Debug/net8.0/testing.AssemblyInfoInputs.cache b/testing/obj/Debug/net8.0/testing.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ed5739d --- /dev/null +++ b/testing/obj/Debug/net8.0/testing.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +65ab983a51252bfffd48b3edd3143b9ae40e2729cc5aca386667659664636f03 diff --git a/testing/obj/Debug/net8.0/testing.GeneratedMSBuildEditorConfig.editorconfig b/testing/obj/Debug/net8.0/testing.GeneratedMSBuildEditorConfig.editorconfig index eaff690..ce2d9bf 100644 --- a/testing/obj/Debug/net8.0/testing.GeneratedMSBuildEditorConfig.editorconfig +++ b/testing/obj/Debug/net8.0/testing.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = testing -build_property.ProjectDir = /home/fede/proyectos/Final_OOP/testing/ +build_property.ProjectDir = C:\Users\Navegador\source\repos\Final_Das\testing\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/testing/obj/Debug/net8.0/testing.assets.cache b/testing/obj/Debug/net8.0/testing.assets.cache new file mode 100644 index 0000000..4a37700 Binary files /dev/null and b/testing/obj/Debug/net8.0/testing.assets.cache differ diff --git a/testing/obj/Debug/net8.0/testing.csproj.AssemblyReference.cache b/testing/obj/Debug/net8.0/testing.csproj.AssemblyReference.cache new file mode 100644 index 0000000..2cad852 Binary files /dev/null and b/testing/obj/Debug/net8.0/testing.csproj.AssemblyReference.cache differ diff --git a/testing/obj/Debug/net8.0/testing.csproj.CoreCompileInputs.cache b/testing/obj/Debug/net8.0/testing.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..c2996ac --- /dev/null +++ b/testing/obj/Debug/net8.0/testing.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0c523c7be8452d51a8cd939a22893863778a5ce66a6929868b5911c7f49994f5 diff --git a/testing/obj/Debug/net8.0/testing.csproj.FileListAbsolute.txt b/testing/obj/Debug/net8.0/testing.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c687f09 --- /dev/null +++ b/testing/obj/Debug/net8.0/testing.csproj.FileListAbsolute.txt @@ -0,0 +1,7 @@ +C:\Users\Navegador\source\repos\Final_Das\testing\bin\Debug\net8.0\.msCoverageSourceRootsMapping_testing +C:\Users\Navegador\source\repos\Final_Das\testing\bin\Debug\net8.0\CoverletSourceRootsMapping_testing +C:\Users\Navegador\source\repos\Final_Das\testing\obj\Debug\net8.0\testing.csproj.AssemblyReference.cache +C:\Users\Navegador\source\repos\Final_Das\testing\obj\Debug\net8.0\testing.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Navegador\source\repos\Final_Das\testing\obj\Debug\net8.0\testing.AssemblyInfoInputs.cache +C:\Users\Navegador\source\repos\Final_Das\testing\obj\Debug\net8.0\testing.AssemblyInfo.cs +C:\Users\Navegador\source\repos\Final_Das\testing\obj\Debug\net8.0\testing.csproj.CoreCompileInputs.cache diff --git a/Entidades/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/testing/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs similarity index 67% rename from Entidades/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs rename to testing/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs index ed92695..2217181 100644 --- a/Entidades/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ b/testing/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -1,4 +1,4 @@ // using System; using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Modelo/obj/Release/net6.0/Modelo.AssemblyInfo.cs b/testing/obj/Release/net8.0/testing.AssemblyInfo.cs similarity index 76% rename from Modelo/obj/Release/net6.0/Modelo.AssemblyInfo.cs rename to testing/obj/Release/net8.0/testing.AssemblyInfo.cs index cbd8855..f7a405c 100644 --- a/Modelo/obj/Release/net6.0/Modelo.AssemblyInfo.cs +++ b/testing/obj/Release/net8.0/testing.AssemblyInfo.cs @@ -11,12 +11,12 @@ using System; using System.Reflection; -[assembly: System.Reflection.AssemblyCompanyAttribute("Modelo")] +[assembly: System.Reflection.AssemblyCompanyAttribute("testing")] [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("Modelo")] -[assembly: System.Reflection.AssemblyTitleAttribute("Modelo")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+063be0588edf7ab191cf17c0de8dd625131697d7")] +[assembly: System.Reflection.AssemblyProductAttribute("testing")] +[assembly: System.Reflection.AssemblyTitleAttribute("testing")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] // Generado por la clase WriteCodeFragment de MSBuild. diff --git a/testing/obj/Release/net8.0/testing.AssemblyInfoInputs.cache b/testing/obj/Release/net8.0/testing.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c39cead --- /dev/null +++ b/testing/obj/Release/net8.0/testing.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c277bb14f64ae9c190610897bce93a3b3d78f33cf5fb6f170f295f98989f3f57 diff --git a/Entidades/obj/Debug/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig b/testing/obj/Release/net8.0/testing.GeneratedMSBuildEditorConfig.editorconfig similarity index 72% rename from Entidades/obj/Debug/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig rename to testing/obj/Release/net8.0/testing.GeneratedMSBuildEditorConfig.editorconfig index 0c35ddc..ce2d9bf 100644 --- a/Entidades/obj/Debug/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig +++ b/testing/obj/Release/net8.0/testing.GeneratedMSBuildEditorConfig.editorconfig @@ -1,5 +1,5 @@ is_global = true -build_property.TargetFramework = net6.0 +build_property.TargetFramework = net8.0 build_property.TargetPlatformMinVersion = build_property.UsingMicrosoftNETSdkWeb = build_property.ProjectTypeGuids = @@ -7,7 +7,7 @@ build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Entidades -build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Entidades/ +build_property.RootNamespace = testing +build_property.ProjectDir = C:\Users\Navegador\source\repos\Final_Das\testing\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Controladora/obj/Debug/net6.0/Controladora.GlobalUsings.g.cs b/testing/obj/Release/net8.0/testing.GlobalUsings.g.cs similarity index 100% rename from Controladora/obj/Debug/net6.0/Controladora.GlobalUsings.g.cs rename to testing/obj/Release/net8.0/testing.GlobalUsings.g.cs diff --git a/testing/obj/Release/net8.0/testing.assets.cache b/testing/obj/Release/net8.0/testing.assets.cache new file mode 100644 index 0000000..0a5578d Binary files /dev/null and b/testing/obj/Release/net8.0/testing.assets.cache differ diff --git a/testing/obj/Release/net8.0/testing.csproj.AssemblyReference.cache b/testing/obj/Release/net8.0/testing.csproj.AssemblyReference.cache new file mode 100644 index 0000000..de302d3 Binary files /dev/null and b/testing/obj/Release/net8.0/testing.csproj.AssemblyReference.cache differ diff --git a/testing/obj/project.assets.json b/testing/obj/project.assets.json new file mode 100644 index 0000000..8e445ce --- /dev/null +++ b/testing/obj/project.assets.json @@ -0,0 +1,3679 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Azure.Core/1.35.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.10.3": { + "type": "package", + "dependencies": { + "Azure.Core": "1.35.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.Identity.Client.Extensions.Msal": "4.56.0", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "coverlet.collector/6.0.2": { + "type": "package", + "build": { + "build/netstandard2.0/coverlet.collector.targets": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeCoverage/17.10.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.1.5": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.8": { + "type": "package", + "dependencies": { + "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" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.8": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.8": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/8.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.5", + "Microsoft.EntityFrameworkCore.Relational": "8.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.56.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.22.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.56.0": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.56.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.Test.Sdk/17.10.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "17.10.0", + "Microsoft.TestPlatform.TestHost": "17.10.0" + }, + "compile": { + "lib/netcoreapp3.1/_._": {} + }, + "runtime": { + "lib/netcoreapp3.1/_._": {} + }, + "build": { + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/17.10.0": { + "type": "package", + "dependencies": { + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.10.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "NUnit/4.1.0": { + "type": "package", + "compile": { + "lib/net6.0/nunit.framework.dll": { + "related": ".legacy.xml;.xml" + }, + "lib/net6.0/nunit.framework.legacy.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/nunit.framework.dll": { + "related": ".legacy.xml;.xml" + }, + "lib/net6.0/nunit.framework.legacy.dll": { + "related": ".xml" + } + }, + "build": { + "build/NUnit.props": {} + } + }, + "NUnit.Analyzers/4.3.0": { + "type": "package" + }, + "NUnit3TestAdapter/4.6.0": { + "type": "package", + "build": { + "build/netcoreapp3.1/NUnit3TestAdapter.props": {} + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/4.7.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Entidades/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/Entidades.dll": {} + }, + "runtime": { + "bin/placeholder/Entidades.dll": {} + } + }, + "Modelo/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Entidades": "1.0.0", + "Microsoft.EntityFrameworkCore": "8.0.8", + "Microsoft.EntityFrameworkCore.SqlServer": "8.0.8" + }, + "compile": { + "bin/placeholder/Modelo.dll": {} + }, + "runtime": { + "bin/placeholder/Modelo.dll": {} + } + } + } + }, + "libraries": { + "Azure.Core/1.35.0": { + "sha512": "hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==", + "type": "package", + "path": "azure.core/1.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.35.0.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net5.0/Azure.Core.dll", + "lib/net5.0/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netcoreapp2.1/Azure.Core.dll", + "lib/netcoreapp2.1/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Identity/1.10.3": { + "sha512": "l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==", + "type": "package", + "path": "azure.identity/1.10.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.10.3.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "coverlet.collector/6.0.2": { + "sha512": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==", + "type": "package", + "path": "coverlet.collector/6.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "VSTestIntegration.md", + "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard2.0/Mono.Cecil.Mdb.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/Newtonsoft.Json.dll", + "build/netstandard2.0/NuGet.Frameworks.dll", + "build/netstandard2.0/NuGet.Versioning.dll", + "build/netstandard2.0/System.Buffers.dll", + "build/netstandard2.0/System.Collections.Immutable.dll", + "build/netstandard2.0/System.Memory.dll", + "build/netstandard2.0/System.Numerics.Vectors.dll", + "build/netstandard2.0/System.Reflection.Metadata.dll", + "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "build/netstandard2.0/System.Text.Encodings.Web.dll", + "build/netstandard2.0/System.Text.Json.dll", + "build/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard2.0/coverlet.collector.deps.json", + "build/netstandard2.0/coverlet.collector.dll", + "build/netstandard2.0/coverlet.collector.pdb", + "build/netstandard2.0/coverlet.collector.targets", + "build/netstandard2.0/coverlet.core.dll", + "build/netstandard2.0/coverlet.core.pdb", + "build/netstandard2.0/coverlet.core.xml", + "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "coverlet-icon.png", + "coverlet.collector.6.0.2.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CodeCoverage/17.10.0": { + "sha512": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==", + "type": "package", + "path": "microsoft.codecoverage/17.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/netstandard2.0/CodeCoverage/CodeCoverage.config", + "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", + "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config", + "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard2.0/CodeCoverage/covrun32.dll", + "build/netstandard2.0/CodeCoverage/msdia140.dll", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", + "build/netstandard2.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "build/netstandard2.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib", + "build/netstandard2.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard2.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard2.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.props", + "build/netstandard2.0/Microsoft.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.DiaSymReader.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/ThirdPartyNotices.txt", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.17.10.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.1.5": { + "sha512": "6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==", + "type": "package", + "path": "microsoft.data.sqlclient/5.1.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.pdb", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.pdb", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.5.1.5.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.pdb", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.pdb", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.EntityFrameworkCore/8.0.8": { + "sha512": "iK+jrJzkfbIxutB7or808BPmJtjUEi5O+eSM7cLDwsyde6+3iOujCSfWnrHrLxY3u+EQrJD+aD8DJ6ogPA2Rtw==", + "type": "package", + "path": "microsoft.entityframeworkcore/8.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.8.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.8": { + "sha512": "9mMQkZsfL1c2iifBD8MWRmwy59rvsVtR9NOezJj7+g1j4P7g49MJHd8k8faC/v7d5KuHkQ6KOQiSItvoRt9PXA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/8.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.8.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.8": { + "sha512": "OlAXMU+VQgLz5y5/SBkLvAa9VeiR3dlJqgIebEEH2M2NGA3evm68/Tv7SLWmSxwnEAtA3nmDEZF2pacK6eXh4Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/8.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.8.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.8": { + "sha512": "3WnrwdXxKg4L98cDx0lNEEau8U2lsfuBJCs0Yzht+5XVTmahboM7MukKfQHAzVsHUPszm6ci929S7Qas0WfVHA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/8.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.8.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.SqlServer/8.0.8": { + "sha512": "A2F52W+hnGqvprx37HcAnYnJv4QoFFdc9cxd/QGNSd1vCu1I0eAEKRd0r9KS3E5I5RRj/m9XJfYCyTdy1cdn5Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlserver/8.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml", + "microsoft.entityframeworkcore.sqlserver.8.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/8.0.0": { + "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "type": "package", + "path": "microsoft.extensions.options/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.56.0": { + "sha512": "rr4zbidvHy9r4NvOAs5hdd964Ao2A0pAeFBJKR95u1CJAVzbd1p6tPTXUZ+5ld0cfThiVSGvz6UHwY6JjraTpA==", + "type": "package", + "path": "microsoft.identity.client/4.56.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid10.0/Microsoft.Identity.Client.dll", + "lib/monoandroid10.0/Microsoft.Identity.Client.xml", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/net461/Microsoft.Identity.Client.dll", + "lib/net461/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll", + "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "lib/uap10.0.17763/Microsoft.Identity.Client.dll", + "lib/uap10.0.17763/Microsoft.Identity.Client.pri", + "lib/uap10.0.17763/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.56.0.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.56.0": { + "sha512": "H12YAzEGK55vZ+QpxUzozhW8ZZtgPDuWvgA0JbdIR9UhMUplj29JhIgE2imuH8W2Nw9D8JKygR1uxRFtpSNcrg==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.56.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.56.0.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/17.10.0": { + "sha512": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "type": "package", + "path": "microsoft.net.test.sdk/17.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/net462/Microsoft.NET.Test.Sdk.props", + "build/net462/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net462/_._", + "lib/netcoreapp3.1/_._", + "microsoft.net.test.sdk.17.10.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.TestPlatform.ObjectModel/17.10.0": { + "sha512": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/17.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.17.10.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/17.10.0": { + "sha512": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "type": "package", + "path": "microsoft.testplatform.testhost/17.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp3.1/x64/testhost.dll", + "build/netcoreapp3.1/x64/testhost.exe", + "build/netcoreapp3.1/x86/testhost.x86.dll", + "build/netcoreapp3.1/x86/testhost.x86.exe", + "lib/net462/_._", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/testhost.deps.json", + "lib/netcoreapp3.1/testhost.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/x64/msdia140.dll", + "lib/netcoreapp3.1/x86/msdia140.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "microsoft.testplatform.testhost.17.10.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NUnit/4.1.0": { + "sha512": "MT/DpAhjtiytzhTgTqIhBuWx4y26PKfDepYUHUM+5uv4TsryHC2jwFo5e6NhWkApCm/G6kZ80dRjdJFuAxq3rg==", + "type": "package", + "path": "nunit/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGES.md", + "LICENSE.txt", + "NOTICES.md", + "README.md", + "THIRD_PARTY_NOTICES.md", + "build/NUnit.props", + "icon.png", + "lib/net462/nunit.framework.dll", + "lib/net462/nunit.framework.legacy.dll", + "lib/net462/nunit.framework.legacy.xml", + "lib/net462/nunit.framework.xml", + "lib/net6.0/nunit.framework.dll", + "lib/net6.0/nunit.framework.legacy.dll", + "lib/net6.0/nunit.framework.legacy.xml", + "lib/net6.0/nunit.framework.xml", + "nunit.4.1.0.nupkg.sha512", + "nunit.nuspec" + ] + }, + "NUnit.Analyzers/4.3.0": { + "sha512": "Ki4p1XrmnYil64HE9VkJSuo6KBr8vg7Mut43atYvItDp3HwIcRY5hi+n5o8GaX1IBCwYLaJgW5ZfZuBVPYXEkg==", + "type": "package", + "path": "nunit.analyzers/4.3.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/nunit.analyzers.dll", + "docs/README.md", + "images/nunit_256.png", + "license.txt", + "nunit.analyzers.4.3.0.nupkg.sha512", + "nunit.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "NUnit3TestAdapter/4.6.0": { + "sha512": "R7e1+a4vuV/YS+ItfL7f//rG+JBvVeVLX4mHzFEZo4W1qEKl8Zz27AqvQSAqo+BtIzUCo4aAJMYa56VXS4hudw==", + "type": "package", + "path": "nunit3testadapter/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net462/NUnit3.TestAdapter.dll", + "build/net462/NUnit3.TestAdapter.pdb", + "build/net462/NUnit3TestAdapter.props", + "build/net462/nunit.engine.api.dll", + "build/net462/nunit.engine.core.dll", + "build/net462/nunit.engine.dll", + "build/net462/testcentric.engine.metadata.dll", + "build/netcoreapp3.1/NUnit3.TestAdapter.dll", + "build/netcoreapp3.1/NUnit3.TestAdapter.pdb", + "build/netcoreapp3.1/NUnit3TestAdapter.props", + "build/netcoreapp3.1/nunit.engine.api.dll", + "build/netcoreapp3.1/nunit.engine.core.dll", + "build/netcoreapp3.1/nunit.engine.dll", + "build/netcoreapp3.1/testcentric.engine.metadata.dll", + "docs/README.md", + "nunit3testadapter.4.6.0.nupkg.sha512", + "nunit3testadapter.nuspec", + "nunit_256.png" + ] + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Formats.Asn1/5.0.0": { + "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "type": "package", + "path": "system.formats.asn1/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.5.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/1.0.2": { + "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "type": "package", + "path": "system.memory.data/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.1.0.2.nupkg.sha512", + "system.memory.data.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/6.0.0": { + "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "type": "package", + "path": "system.runtime.caching/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/netcoreapp3.1/System.Runtime.Caching.dll", + "lib/netcoreapp3.1/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.6.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Cng/5.0.0": { + "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "type": "package", + "path": "system.security.cryptography.cng/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.xml", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.xml", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.5.0.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/6.0.0": { + "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "type": "package", + "path": "system.text.encoding.codepages/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/4.7.2": { + "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "type": "package", + "path": "system.text.json/4.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.4.7.2.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Entidades/1.0.0": { + "type": "project", + "path": "../Entidades/Entidades.csproj", + "msbuildProject": "../Entidades/Entidades.csproj" + }, + "Modelo/1.0.0": { + "type": "project", + "path": "../Modelo/Modelo.csproj", + "msbuildProject": "../Modelo/Modelo.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Microsoft.NET.Test.Sdk >= 17.10.0", + "Modelo >= 1.0.0", + "NUnit >= 4.1.0", + "NUnit.Analyzers >= 4.3.0", + "NUnit3TestAdapter >= 4.6.0", + "coverlet.collector >= 6.0.2" + ] + }, + "packageFolders": { + "C:\\Users\\Navegador\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\testing.csproj", + "projectName": "testing", + "projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\testing.csproj", + "packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Navegador\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj": { + "projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.10.0, )" + }, + "NUnit": { + "target": "Package", + "version": "[4.1.0, )" + }, + "NUnit.Analyzers": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[4.3.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[4.6.0, )" + }, + "coverlet.collector": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[6.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/testing/obj/project.nuget.cache b/testing/obj/project.nuget.cache new file mode 100644 index 0000000..424e50b --- /dev/null +++ b/testing/obj/project.nuget.cache @@ -0,0 +1,74 @@ +{ + "version": 2, + "dgSpecHash": "o7dgO0iSkl0=", + "success": true, + "projectFilePath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\testing.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", + "C:\\Users\\Navegador\\.nuget\\packages\\coverlet.collector\\6.0.2\\coverlet.collector.6.0.2.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.codecoverage\\17.10.0\\microsoft.codecoverage.17.10.0.nupkg.sha512", + "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.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", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.options\\8.0.0\\microsoft.extensions.options.8.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.identity.client\\4.56.0\\microsoft.identity.client.4.56.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.56.0\\microsoft.identity.client.extensions.msal.4.56.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.net.test.sdk\\17.10.0\\microsoft.net.test.sdk.17.10.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.10.0\\microsoft.testplatform.objectmodel.17.10.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.testplatform.testhost\\17.10.0\\microsoft.testplatform.testhost.17.10.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\nunit\\4.1.0\\nunit.4.1.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\nunit.analyzers\\4.3.0\\nunit.analyzers.4.3.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\nunit3testadapter\\4.6.0\\nunit3testadapter.4.6.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Navegador\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/testing/obj/testing.csproj.nuget.dgspec.json b/testing/obj/testing.csproj.nuget.dgspec.json new file mode 100644 index 0000000..59aebb3 --- /dev/null +++ b/testing/obj/testing.csproj.nuget.dgspec.json @@ -0,0 +1,253 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\testing.csproj": {} + }, + "projects": { + "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", + "projectName": "Entidades", + "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\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Navegador\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "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", + "projectName": "Modelo", + "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\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Navegador\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "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" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[8.0.8, )" + }, + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[8.0.8, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[8.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\testing.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\testing.csproj", + "projectName": "testing", + "projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\testing.csproj", + "packagesPath": "C:\\Users\\Navegador\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\testing\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Navegador\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj": { + "projectPath": "C:\\Users\\Navegador\\source\\repos\\Final_Das\\Modelo\\Modelo.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.10.0, )" + }, + "NUnit": { + "target": "Package", + "version": "[4.1.0, )" + }, + "NUnit.Analyzers": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[4.3.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[4.6.0, )" + }, + "coverlet.collector": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[6.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/testing/obj/testing.csproj.nuget.g.props b/testing/obj/testing.csproj.nuget.g.props index 644e102..7ec5013 100644 --- a/testing/obj/testing.csproj.nuget.g.props +++ b/testing/obj/testing.csproj.nuget.g.props @@ -4,23 +4,24 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /home/fede/.nuget/packages/ - /home/fede/.nuget/packages/ + $(UserProfile)\.nuget\packages\ + C:\Users\Navegador\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.9.1 + 6.10.0 - + + - - - - - - + + + + + + - /home/fede/.nuget/packages/nunit.analyzers/3.6.1 + C:\Users\Navegador\.nuget\packages\nunit.analyzers\4.3.0 \ No newline at end of file diff --git a/testing/obj/testing.csproj.nuget.g.targets b/testing/obj/testing.csproj.nuget.g.targets index 248ae0c..4c5ecf4 100644 --- a/testing/obj/testing.csproj.nuget.g.targets +++ b/testing/obj/testing.csproj.nuget.g.targets @@ -1,11 +1,10 @@  - - - - - - + + + + + \ No newline at end of file diff --git a/testing/testing.csproj b/testing/testing.csproj index f9f9920..8865687 100644 --- a/testing/testing.csproj +++ b/testing/testing.csproj @@ -10,11 +10,17 @@ - - - - - + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive +