diff --git a/BibliotecaDigitalApi/BibliotecaDigitalApi.csproj b/BibliotecaDigitalApi/BibliotecaDigitalApi.csproj index 20dfb28..54c7304 100644 --- a/BibliotecaDigitalApi/BibliotecaDigitalApi.csproj +++ b/BibliotecaDigitalApi/BibliotecaDigitalApi.csproj @@ -1,13 +1,13 @@ - net8.0 + net9.0 enable enable - + diff --git a/BibliotecaDigitalApi/Controllers/LibrosController.cs b/BibliotecaDigitalApi/Controllers/LibrosController.cs index 751298d..5cb3a11 100644 --- a/BibliotecaDigitalApi/Controllers/LibrosController.cs +++ b/BibliotecaDigitalApi/Controllers/LibrosController.cs @@ -35,13 +35,13 @@ namespace BibliotecaAPI.Controllers { _context.Libros.Add(libro); await _context.SaveChangesAsync(); - return CreatedAtAction(nameof(GetLibro), new { id = libro.IdLibro }, libro); + return CreatedAtAction(nameof(GetLibro), new { id = libro.Id_Libro }, libro); } [HttpPut("{id}")] public async Task PutLibro(int id, Libro libro) { - if (id != libro.IdLibro) return BadRequest(); + if (id != libro.Id_Libro) return BadRequest(); _context.Entry(libro).State = EntityState.Modified; await _context.SaveChangesAsync(); return NoContent(); @@ -50,11 +50,11 @@ namespace BibliotecaAPI.Controllers [HttpDelete("{id}")] public async Task DeleteLibro(int id) { - var libro = await _context.Libros.FindAsync(IdLibro); + var libro = await _context.Libros.FindAsync(id); if (libro == null) return NotFound(); _context.Libros.Remove(libro); await _context.SaveChangesAsync(); return NoContent(); } } -} +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/Controllers/PrestamosController.cs b/BibliotecaDigitalApi/Controllers/PrestamosController.cs index e11015b..dbb035d 100644 --- a/BibliotecaDigitalApi/Controllers/PrestamosController.cs +++ b/BibliotecaDigitalApi/Controllers/PrestamosController.cs @@ -20,11 +20,22 @@ namespace BibliotecaAPI.Controllers [HttpPost("crear")] public async Task> CrearPrestamo(Prestamo prestamo) { - var libro = await _context.Libros.FindAsync(prestamo.IdLibro); - if (libro == null || libro.CopiasDisponibles <= 0) + // Verificar si el usuario tiene 3 o más préstamos no devueltos + var prestamosActivos = await _context.Prestamos + .Where(p => p.Id_Usuario == prestamo.Id_Usuario && !p.Devuelto) + .CountAsync(); + + if (prestamosActivos >= 3) + return BadRequest("El usuario ya tiene 3 préstamos activos. Debe devolver al menos uno antes de realizar un nuevo préstamo."); + + var libro = await _context.Libros.FindAsync(prestamo.Id_Libro); + if (libro == null || libro.Copias_Disponibles <= 0) return BadRequest("Libro no disponible."); - libro.CopiasDisponibles--; + libro.Copias_Disponibles--; + prestamo.Fecha_Prestamo = DateTime.Now; + prestamo.Devuelto = false; + _context.Prestamos.Add(prestamo); await _context.SaveChangesAsync(); @@ -35,37 +46,43 @@ namespace BibliotecaAPI.Controllers [HttpPut("devolver/{id}")] public async Task RegistrarDevolucion(int id) { - var prestamo = await _context.Prestamos.Include(p => p.Libro).FirstOrDefaultAsync(p => p.Id == id); + var prestamo = await _context.Prestamos + //.Include(p => p.Libro) // propiedad de navegación + .FirstOrDefaultAsync(p => p.Id_Prestamo == id); + if (prestamo == null) return NotFound(); + if (prestamo.Devuelto) + return BadRequest("Este préstamo ya fue devuelto."); + prestamo.Devuelto = true; - prestamo.FechaDevolucion = DateTime.Now; - prestamo.Libro.CopiasDisponibles++; + //prestamo.Libro.Copias_Disponibles++; await _context.SaveChangesAsync(); return Ok("Devolución registrada con éxito."); - } +} + // Consultar préstamos activos [HttpGet("activos")] public async Task>> GetActivos() { return await _context.Prestamos - .Include(p => p.Libro) - .Include(p => p.Usuario) + //.Include(p => p.Libro) + //.Include(p => p.Usuario) .Where(p => !p.Devuelto) .ToListAsync(); } - // Consultar préstamos vencidos (más de 15 días) + // Consultar préstamos vencidos (más de 10 días) [HttpGet("vencidos")] public async Task>> GetVencidos() { var hoy = DateTime.Now; return await _context.Prestamos - .Include(p => p.Libro) - .Include(p => p.Usuario) - .Where(p => !p.Devuelto && (hoy - p.FechaPrestamo).TotalDays > 10) + //.Include(p => p.Libro) + //.Include(p => p.Usuario) + .Where(p => !p.Devuelto && (hoy - p.Fecha_Prestamo).TotalDays > 10) .ToListAsync(); } @@ -74,9 +91,9 @@ namespace BibliotecaAPI.Controllers public async Task>> GetHistorialUsuario(int usuarioId) { return await _context.Prestamos - .Include(p => p.Libro) - .Where(p => p.IdUsuario == usuarioId) + //.Include(p => p.Libro) + .Where(p => p.Id_Usuario == usuarioId) .ToListAsync(); } } -} +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/Controllers/UsuariosController.cs b/BibliotecaDigitalApi/Controllers/UsuariosController.cs index 2dc7ccc..7986c8b 100644 --- a/BibliotecaDigitalApi/Controllers/UsuariosController.cs +++ b/BibliotecaDigitalApi/Controllers/UsuariosController.cs @@ -27,7 +27,7 @@ namespace BibliotecaAPI.Controllers { _context.Usuarios.Add(usuario); await _context.SaveChangesAsync(); - return CreatedAtAction(nameof(GetUsuarios), new { id = usuario.IdUsuario }, usuario); + return CreatedAtAction(nameof(GetUsuarios), new { id = usuario.Id_Usuario }, usuario); } } } diff --git a/BibliotecaDigitalApi/Data/AppDatabaseContext.cs b/BibliotecaDigitalApi/Data/BibliotecaContext.cs similarity index 100% rename from BibliotecaDigitalApi/Data/AppDatabaseContext.cs rename to BibliotecaDigitalApi/Data/BibliotecaContext.cs diff --git a/BibliotecaDigitalApi/Data/database.db b/BibliotecaDigitalApi/Data/database.db index 0e3fa8f..6c0bc60 100644 Binary files a/BibliotecaDigitalApi/Data/database.db and b/BibliotecaDigitalApi/Data/database.db differ diff --git a/BibliotecaDigitalApi/Models/Libro.cs b/BibliotecaDigitalApi/Models/Libro.cs index a0ec87a..dba5b36 100644 --- a/BibliotecaDigitalApi/Models/Libro.cs +++ b/BibliotecaDigitalApi/Models/Libro.cs @@ -5,13 +5,13 @@ namespace BibliotecaAPI.Models public class Libro { [Key] - public int IdLibro { get; set; } + public int Id_Libro { get; set; } public string Titulo { get; set; } = string.Empty; public string Autor { get; set; } = string.Empty; public string ISBN { get; set; } = string.Empty; public int Ano { get; set; } public string Categoria { get; set; } = string.Empty; - public int CopiasDisponibles { get; set; } + public int Copias_Disponibles { get; set; } public ICollection Prestamos {get;set;} } diff --git a/BibliotecaDigitalApi/Models/Prestamo.cs b/BibliotecaDigitalApi/Models/Prestamo.cs index dfe2057..1870930 100644 --- a/BibliotecaDigitalApi/Models/Prestamo.cs +++ b/BibliotecaDigitalApi/Models/Prestamo.cs @@ -21,13 +21,19 @@ namespace BibliotecaAPI.Models public DateTime FechaPrestamo { get; set; } = DateTime.Now; public DateTime? FechaDevolucion { get; set; } public bool Devuelto { get; set; } = false;*/ - public int IdPrestamo { get; set; } - public int IdUsuario { get; set; } - public int IdLibro { get; set; } - public DateTime FechaPrestamo { get; set; } - public bool Devuelto {get;set;} + [Key] + public int Id_Prestamo { get; set; } + [ForeignKey(nameof(Libro))] + public int Id_Libro { get; set; } // FK + //public Libro Libro { get; set; } // Propiedad de navegación + + [ForeignKey(nameof(Usuario))] + public int Id_Usuario { get; set; } // FK + //public Usuario Usuario { get; set; } // Propiedad de navegación + + public DateTime Fecha_Prestamo { get; set; } + public bool Devuelto { get; set; } + - public Usuario Usuario { get; set; } - public Libro Libro { get; set; } } } diff --git a/BibliotecaDigitalApi/Models/Usuario.cs b/BibliotecaDigitalApi/Models/Usuario.cs index f80586a..4c9445e 100644 --- a/BibliotecaDigitalApi/Models/Usuario.cs +++ b/BibliotecaDigitalApi/Models/Usuario.cs @@ -5,10 +5,10 @@ namespace BibliotecaAPI.Models public class Usuario { [Key] - public int IdUsuario { get; set; } + public int Id_Usuario { get; set; } public string Nombre { get; set; } = string.Empty; public string Apellido { get; set; } = string.Empty; - public DateTime FechaRegistro { get; set; } + public DateTime Fecha_Registro { get; set; } public ICollection Prestamos {get;set;} } diff --git a/BibliotecaDigitalApi/Program.cs b/BibliotecaDigitalApi/Program.cs index 172964c..e67fee0 100644 --- a/BibliotecaDigitalApi/Program.cs +++ b/BibliotecaDigitalApi/Program.cs @@ -2,24 +2,23 @@ using BibliotecaAPI.Data; using Microsoft.EntityFrameworkCore; var builder = WebApplication.CreateBuilder(args); +builder.Services.AddDbContext(options => options.UseSqlite(builder.Configuration.GetConnectionString("DefaultConnection"))); builder.Services.AddControllers(); +builder.Services.AddOpenApi(); builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); var app = builder.Build(); - -// Activar Swagger para probar endpoints -if (app.Environment.IsDevelopment()) -{ - app.UseSwagger(); - app.UseSwaggerUI(); -} - +app.UseSwagger(); +app.UseSwaggerUI( + c => { + c.SwaggerEndpoint("/swagger/v1/swagger.json", "Inventario API V1"); + c.RoutePrefix = string.Empty; // Swagger en la raíz + } +); app.UseHttpsRedirection(); -app.UseAuthorization(); app.MapControllers(); - app.Run(); \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi new file mode 100755 index 0000000..03587fc Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.deps.json b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.deps.json new file mode 100644 index 0000000..4805833 --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.deps.json @@ -0,0 +1,1285 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "BibliotecaDigitalApi/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.OpenApi": "8.0.20", + "Microsoft.EntityFrameworkCore": "9.0.10", + "Microsoft.EntityFrameworkCore.Sqlite": "9.0.10", + "Microsoft.EntityFrameworkCore.Tools": "9.0.10", + "Swashbuckle.AspNetCore": "9.0.6" + }, + "runtime": { + "BibliotecaDigitalApi.dll": {} + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.OpenApi/8.0.20": { + "dependencies": { + "Microsoft.OpenApi": "1.6.25" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "8.0.20.0", + "fileVersion": "8.0.2025.42002" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "9.0.10", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.10" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Sqlite.Core/9.0.10": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.10", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.10": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.10": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.10": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyModel": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyModel": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10", + "SQLitePCLRaw.core": "2.1.10", + "System.Text.Json": "9.0.10" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.10": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "9.0.10", + "Microsoft.EntityFrameworkCore.Relational": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyModel": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "SQLitePCLRaw.core": "2.1.10", + "System.Text.Json": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "9.0.10" + } + }, + "Microsoft.Extensions.ApiDescription.Server/8.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.10": { + "dependencies": { + "System.Text.Encodings.Web": "9.0.10", + "System.Text.Json": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.10", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "System.Diagnostics.DiagnosticSource": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Options/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.OpenApi/1.6.25": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.25.0", + "fileVersion": "1.6.25.0" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.10", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.10" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.core/2.1.10": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-s390x/native/libe_sqlite3.so": { + "rid": "linux-musl-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "Swashbuckle.AspNetCore/9.0.6": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "8.0.0", + "Swashbuckle.AspNetCore.Swagger": "9.0.6", + "Swashbuckle.AspNetCore.SwaggerGen": "9.0.6", + "Swashbuckle.AspNetCore.SwaggerUI": "9.0.6" + } + }, + "Swashbuckle.AspNetCore.Swagger/9.0.6": { + "dependencies": { + "Microsoft.OpenApi": "1.6.25" + }, + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "9.0.6.0", + "fileVersion": "9.0.6.1840" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.6": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "9.0.6" + }, + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "9.0.6.0", + "fileVersion": "9.0.6.1840" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.6": { + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "9.0.6.0", + "fileVersion": "9.0.6.1840" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Diagnostics.DiagnosticSource/9.0.10": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "System.IO.Pipelines/9.0.10": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "System.Memory/4.5.3": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Encodings.Web/9.0.10": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "System.Text.Json/9.0.10": { + "dependencies": { + "System.IO.Pipelines": "9.0.10", + "System.Text.Encodings.Web": "9.0.10" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "System.Threading.Channels/7.0.0": {} + } + }, + "libraries": { + "BibliotecaDigitalApi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/8.0.20": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IjWB1Q/Ar8fyfE3cKjybSlpAE++miAkDGbSup0WeFOtZn2vK+myK7RWDJlFdWICLLU50CmmLad91toIJNTrymQ==", + "path": "microsoft.aspnetcore.openapi/8.0.20", + "hashPath": "microsoft.aspnetcore.openapi.8.0.20.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tWbN2uzG4uBxxMjcHA3Oa9ecAYjyRTfDwRbgQ7ueyx7eEgyYbBiKADY2rllF8wO3dHUvN+/8fgylwSGMfiCtVg==", + "path": "microsoft.data.sqlite.core/9.0.10", + "hashPath": "microsoft.data.sqlite.core.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WjjxVyOTVs85V7SUe+lZjtGOEeVzF4RO8amrqL4adgbyThNq7vGCFzPw8buZj44gHeQYD5V/uZ/6XuqG9Jq+kA==", + "path": "microsoft.entityframeworkcore/9.0.10", + "hashPath": "microsoft.entityframeworkcore.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I3TWAs5Lbzmzu8S0T6qXhzBiO3CznYLrfE59W0npkqNHfWGH8CgA66LrHMWxWOXVTD4145QwYqiWNCdLwpJ1Ew==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.10", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mXNl0Gg3l3zGrClLCHepB+b7rYVuFfB9qQJwya0dUSHFuR1T0jMD8KxuNVyhQSfoWIepanhzjcG8TUNGXOcU0Q==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.10", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8rdqmG0cV8uHPkX26rSQbGljzGJC7+sfWDXyV0f6TuR0YkUR46ztzH//xNTnB9zgEs6NUyOemAcspmkucH0pcw==", + "path": "microsoft.entityframeworkcore.design/9.0.10", + "hashPath": "microsoft.entityframeworkcore.design.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IJNrG5vdmFUvHR8FLLFg9AWpuE8qW1DTEN+fNLGbNTu6cnpZzzqU6+aknAGtTSAEVWosJ3BZ3TOO9wpifUvv3A==", + "path": "microsoft.entityframeworkcore.relational/9.0.10", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7fFF7FYlISZYhmeTtpjMZIEBxykqpKp2boZpuHTbIitN6am2QlmfVctrJRHHkI5u5Oh5E7uT1DMI68cpBAP4BQ==", + "path": "microsoft.entityframeworkcore.sqlite/9.0.10", + "hashPath": "microsoft.entityframeworkcore.sqlite.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6+ee+erdXSzxqB6Piys2ssldqhR8cQZJHjIPKWrh25YTYJhFUmTwB0nC8l/f+U69NoGg7ZIOwdg4+Qk2YV13Ug==", + "path": "microsoft.entityframeworkcore.sqlite.core/9.0.10", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFM5KSu1CCla1+wzhjwo5Ex/idUxbdZApKD9yNUbmcCBgW1SJ8E8mz7ECOf5gaCjjjII8f5ztJAmUt5Ez8koAQ==", + "path": "microsoft.entityframeworkcore.tools/9.0.10", + "hashPath": "microsoft.entityframeworkcore.tools.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jDM3a95WerM8g6IcMiBXq1qRS9dqmEUpgnCk2DeMWpPkYtp1ia+CkXabOnK93JmhVlUmv8l9WMPsCSUm+WqkIA==", + "path": "microsoft.extensions.apidescription.server/8.0.0", + "hashPath": "microsoft.extensions.apidescription.server.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cL6iTxgJ4u5zP3eFOdBiDAtmE/B2WKTRhyJfEne7n6qvHpsMwwIDxljs210mWSO1ucBy7lR1Lo7/7kjeZeLcqQ==", + "path": "microsoft.extensions.caching.abstractions/9.0.10", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2iuzwIoCoqZJfH2VLk1xvlQS4PQDEuhj4dWiGb+Qpt1vHFHyffp497cTO6ucsV54W/h4JmM1vzDBv8pVAFazZg==", + "path": "microsoft.extensions.caching.memory/9.0.10", + "hashPath": "microsoft.extensions.caching.memory.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ad3JxmFj0uxuFa1CT6oxTCC1lQ0xeRuOvzBRFT/I/ofIXVOnNsH/v2GZkAJWhlpZqKUvSexQZzp3EEAB2CdtJg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.10", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iEtXCkNd5XhjNJAOb/wO4IhDRdLIE2CsPxZggZQWJ/q2+sa8dmEPC393nnsiqdH8/4KV8Xn25IzgKPR1UEQ0og==", + "path": "microsoft.extensions.dependencyinjection/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r9waLiOPe9ZF1PvzUT+RDoHvpMmY8MW+lb4lqjYGObwKpnyPMLI3odVvlmshwuZcdoHynsGWOrCPA0hxZ63lIA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qCIWxEPt6Y9Z/Vx2R6JsfX7pwxIHC2GYlkcFbTox3MpsiNexyLkvPFTNsfmAaKpjTZ6FhNmvY3BdrwLX4+X0cQ==", + "path": "microsoft.extensions.dependencymodel/9.0.10", + "hashPath": "microsoft.extensions.dependencymodel.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UBXHqE9vyptVhaFnT1R7YJKCve7TqVI10yjjUZBNGMlW2lZ4c031Slt9hxsOzWCzlpPxxIFyf1Yk4a6Iubxx7w==", + "path": "microsoft.extensions.logging/9.0.10", + "hashPath": "microsoft.extensions.logging.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MFUPv/nN1rAQ19w43smm6bbf0JDYN/1HEPHoiMYY50pvDMFpglzWAuoTavByDmZq7UuhjaxwrET3joU69ZHoHQ==", + "path": "microsoft.extensions.logging.abstractions/9.0.10", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zMNABt8eBv0B0XrWjFy9nZNgddavaOeq3ZdaD5IlHhRH65MrU7HM+Hd8GjWE3e2VDGFPZFfSAc6XVXC17f9fOA==", + "path": "microsoft.extensions.options/9.0.10", + "hashPath": "microsoft.extensions.options.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3pl8D1O5ZwMpDkZAT2uXrhQ6NipkwEgDLMFuURiHTf72TvkoMP61QYH3Vk1yrzVHnHBdNZk3cQACz8Zc7YGNhQ==", + "path": "microsoft.extensions.primitives/9.0.10", + "hashPath": "microsoft.extensions.primitives.9.0.10.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.25": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZahSqNGtNV7N0JBYS/IYXPkLVexL/AZFxo6pqxv6A7Uli7Q7zfitNjkaqIcsV73Ukzxi4IlJdyDgcQiMXiH8cw==", + "path": "microsoft.openapi/1.6.25", + "hashPath": "microsoft.openapi.1.6.25.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==", + "path": "sqlitepclraw.core/2.1.10", + "hashPath": "sqlitepclraw.core.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/9.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q/UfEAgrk6qQyjHXgsW9ILw0YZLfmPtWUY4wYijliX6supozC+TkzU0G6FTnn/dPYxnChjM8g8lHjWHF6VKy+A==", + "path": "swashbuckle.aspnetcore/9.0.6", + "hashPath": "swashbuckle.aspnetcore.9.0.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/9.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bgyc8rWRAYwDrzjVHGbavvNE38G1Dfgf1McHYm+WUr4TxkvEAXv8F8B1z3Kmz4BkDCKv9A/1COa2t7+Ri5+pLg==", + "path": "swashbuckle.aspnetcore.swagger/9.0.6", + "hashPath": "swashbuckle.aspnetcore.swagger.9.0.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yYrDs5qpIa4UXP+a02X0ZLQs6HSd1C8t6hF6J1fnxoawi3PslJg1yUpLBS89HCbrDACzmwEGG25il+8aa0zdnw==", + "path": "swashbuckle.aspnetcore.swaggergen/9.0.6", + "hashPath": "swashbuckle.aspnetcore.swaggergen.9.0.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WGsw/Yop9b16miq8TQd4THxuEgkP5cH3+DX93BrX9m0OdPcKNtg2nNm77WQSAsA+Se+M0bTiu8bUyrruRSeS5g==", + "path": "swashbuckle.aspnetcore.swaggerui/9.0.6", + "hashPath": "swashbuckle.aspnetcore.swaggerui.9.0.6.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uIpKiKp7EWlYZBK71jYP+maGYjDY9YTi/FxBlZoqDzM1ZHZB7gLqUm4jHvRFwaKfR1/Lrt2rQih9LGPIKyNEow==", + "path": "system.diagnostics.diagnosticsource/9.0.10", + "hashPath": "system.diagnostics.diagnosticsource.9.0.10.nupkg.sha512" + }, + "System.IO.Pipelines/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lwI0mhHcCxMtNSxB5ate9Gc9petWovRBUprtjz2yiIDDZPGBIaUiqNzQHJzjPuzTnvNbEMilpAXjDguKsU/2Fg==", + "path": "system.io.pipelines/9.0.10", + "hashPath": "system.io.pipelines.9.0.10.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-znmiJFUa0GGwq7t6ShUKBDRlPsNJaudNFI7rVeyGnRBhiRMegBvu2GRcadThP/QX/a5UpGgZbe6tolDooobj/Q==", + "path": "system.text.encodings.web/9.0.10", + "hashPath": "system.text.encodings.web.9.0.10.nupkg.sha512" + }, + "System.Text.Json/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XM02ZBnzxk7Ti6l9YRy8Bp639wANqJzJzw4W4VYiCh+HXY9hBOWkGB4k89OLP/s/RxgM02P4a/mWcJTgFiLf1Q==", + "path": "system.text.json/9.0.10", + "hashPath": "system.text.json.9.0.10.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.dll new file mode 100644 index 0000000..035540c Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.pdb b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.pdb new file mode 100644 index 0000000..e6600d3 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.pdb differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.runtimeconfig.json b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.staticwebassets.endpoints.json b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.staticwebassets.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Humanizer.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Humanizer.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..75f313f Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..f5f1cee Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Build.Locator.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..446d341 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Build.Locator.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..2e99f76 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..8d56de1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll new file mode 100755 index 0000000..a17c676 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll new file mode 100755 index 0000000..f70a016 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..7253875 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..7d537db Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll new file mode 100755 index 0000000..d87196b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..6b0db0a Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100755 index 0000000..fcf5d4d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..44d6a68 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100755 index 0000000..9698060 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..0c208db Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..b664bb9 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..825fab1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..58f5b7d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..a01968f Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..7420234 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..dddc286 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..2bd9784 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..7819a6c Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..6b54341 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Options.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..5a58056 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.OpenApi.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..6fd0d6d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Mono.TextTemplating.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Mono.TextTemplating.dll new file mode 100755 index 0000000..4a76511 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Mono.TextTemplating.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll new file mode 100755 index 0000000..53e53eb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.core.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.core.dll new file mode 100755 index 0000000..b563677 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.core.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100755 index 0000000..a06a782 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100755 index 0000000..f92027f Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100755 index 0000000..83a891d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100755 index 0000000..7c3b2a8 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.CodeDom.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.CodeDom.dll new file mode 100755 index 0000000..54c82b6 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.CodeDom.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.AttributedModel.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..1431751 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.AttributedModel.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Convention.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Convention.dll new file mode 100755 index 0000000..e9dacb1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Convention.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Hosting.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..8381202 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Hosting.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Runtime.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..d583c3a Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Runtime.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.TypedParts.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..2b278d7 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.TypedParts.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll new file mode 100755 index 0000000..535d956 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.IO.Pipelines.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.IO.Pipelines.dll new file mode 100755 index 0000000..12160e0 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.IO.Pipelines.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.Text.Encodings.Web.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..596a73f Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Text.Encodings.Web.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/System.Text.Json.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Text.Json.dll new file mode 100755 index 0000000..66e9b6d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/System.Text.Json.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/appsettings.Development.json b/BibliotecaDigitalApi/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 0000000..837aee0 --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net8.0/appsettings.Development.json @@ -0,0 +1,11 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "ConnectionStrings": { + "DefaultConnection": "Data Source=Data/database.db" + } +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/appsettings.json b/BibliotecaDigitalApi/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4e90e20 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8dcc1bd Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..8ee4b4d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..62b0422 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..180a8d9 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4b7bae7 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..05da79f Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..bd0bb72 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..e128407 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..6a98feb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..8e8ced1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..970399e Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..9e6afdd Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..6cb47ac Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..76ddceb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c41ed4c Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..5fe6dd8 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..6eb37cb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..046c953 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..368bb7b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..72bb9d5 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6051d99 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..ad0d2cd Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..829ed5d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9890df1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..eaded8c Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..47f3fd5 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..28c43a1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..203cc83 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..208b1d9 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..895ca11 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..c712a37 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..4d5b1a3 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..4790c29 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..05bc700 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..eb61aff Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..ea192cc Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..08eaeab Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..fce2d36 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e142029 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..7c20209 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..be86033 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..4be51d2 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..768264c Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..0dc6fae Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..85dd902 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..dfd0a6b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..f5e6b57 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..cafdf21 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..ace0504 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a new file mode 100755 index 0000000..bc3aa51 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..0e075ed Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100755 index 0000000..a6a80a4 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100755 index 0000000..a1030eb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100755 index 0000000..56fc44d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100755 index 0000000..15883be Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100755 index 0000000..28eaa8b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100755 index 0000000..5a6a8f7 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so new file mode 100755 index 0000000..c576551 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100755 index 0000000..980a4a6 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100755 index 0000000..3f7dca6 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100755 index 0000000..a4bb64d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100755 index 0000000..705798a Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100755 index 0000000..c32107b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100755 index 0000000..f32c878 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100755 index 0000000..33a1c68 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100755 index 0000000..05932eb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100755 index 0000000..0cd9a57 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100755 index 0000000..8294262 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100755 index 0000000..4ac1f79 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100755 index 0000000..8c1c1d9 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100755 index 0000000..0e05ac0 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..9867f6f Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..2a4742e Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..8977db0 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..8012969 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9a06288 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..e4b3c7a Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..b51ee57 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..d160925 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..e27e8be Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..22b6e95 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..57e4d28 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..305dfbf Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..28a5c18 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..cef3ebc Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..dce3bc0 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi new file mode 100755 index 0000000..d2bcf31 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.deps.json b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.deps.json new file mode 100644 index 0000000..ef1d7a1 --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.deps.json @@ -0,0 +1,1231 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "BibliotecaDigitalApi/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.OpenApi": "9.0.10", + "Microsoft.EntityFrameworkCore": "9.0.10", + "Microsoft.EntityFrameworkCore.Sqlite": "9.0.10", + "Microsoft.EntityFrameworkCore.Tools": "9.0.10", + "Swashbuckle.AspNetCore": "9.0.6" + }, + "runtime": { + "BibliotecaDigitalApi.dll": {} + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "dependencies": { + "Microsoft.OpenApi": "1.6.25" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47517" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.10" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Sqlite.Core/9.0.10": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.10", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.10": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.10": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.10": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyModel": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyModel": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10", + "SQLitePCLRaw.core": "2.1.10", + "System.Text.Json": "9.0.10" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.10": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "9.0.10", + "Microsoft.EntityFrameworkCore.Relational": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyModel": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "SQLitePCLRaw.core": "2.1.10", + "System.Text.Json": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "9.0.10" + } + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.10", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Options/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.OpenApi/1.6.25": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.25.0", + "fileVersion": "1.6.25.0" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.10", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.10" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.core/2.1.10": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-s390x/native/libe_sqlite3.so": { + "rid": "linux-musl-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "Swashbuckle.AspNetCore/9.0.6": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "9.0.0", + "Swashbuckle.AspNetCore.Swagger": "9.0.6", + "Swashbuckle.AspNetCore.SwaggerGen": "9.0.6", + "Swashbuckle.AspNetCore.SwaggerUI": "9.0.6" + } + }, + "Swashbuckle.AspNetCore.Swagger/9.0.6": { + "dependencies": { + "Microsoft.OpenApi": "1.6.25" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "9.0.6.0", + "fileVersion": "9.0.6.1840" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.6": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "9.0.6" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "9.0.6.0", + "fileVersion": "9.0.6.1840" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.6": { + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "9.0.6.0", + "fileVersion": "9.0.6.1840" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Memory/4.5.3": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Json/9.0.10": { + "runtime": { + "lib/net9.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "System.Threading.Channels/7.0.0": {} + } + }, + "libraries": { + "BibliotecaDigitalApi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yAv5EDEi0Nkk75Vhxh6ppuXd/QIO8hzjGpAt/fGInMZWIX/mVwZ1IM50YFIWeLCVM8KDj0oFPQdcLeQ+9hEJsw==", + "path": "microsoft.aspnetcore.openapi/9.0.10", + "hashPath": "microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tWbN2uzG4uBxxMjcHA3Oa9ecAYjyRTfDwRbgQ7ueyx7eEgyYbBiKADY2rllF8wO3dHUvN+/8fgylwSGMfiCtVg==", + "path": "microsoft.data.sqlite.core/9.0.10", + "hashPath": "microsoft.data.sqlite.core.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WjjxVyOTVs85V7SUe+lZjtGOEeVzF4RO8amrqL4adgbyThNq7vGCFzPw8buZj44gHeQYD5V/uZ/6XuqG9Jq+kA==", + "path": "microsoft.entityframeworkcore/9.0.10", + "hashPath": "microsoft.entityframeworkcore.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I3TWAs5Lbzmzu8S0T6qXhzBiO3CznYLrfE59W0npkqNHfWGH8CgA66LrHMWxWOXVTD4145QwYqiWNCdLwpJ1Ew==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.10", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mXNl0Gg3l3zGrClLCHepB+b7rYVuFfB9qQJwya0dUSHFuR1T0jMD8KxuNVyhQSfoWIepanhzjcG8TUNGXOcU0Q==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.10", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8rdqmG0cV8uHPkX26rSQbGljzGJC7+sfWDXyV0f6TuR0YkUR46ztzH//xNTnB9zgEs6NUyOemAcspmkucH0pcw==", + "path": "microsoft.entityframeworkcore.design/9.0.10", + "hashPath": "microsoft.entityframeworkcore.design.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IJNrG5vdmFUvHR8FLLFg9AWpuE8qW1DTEN+fNLGbNTu6cnpZzzqU6+aknAGtTSAEVWosJ3BZ3TOO9wpifUvv3A==", + "path": "microsoft.entityframeworkcore.relational/9.0.10", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7fFF7FYlISZYhmeTtpjMZIEBxykqpKp2boZpuHTbIitN6am2QlmfVctrJRHHkI5u5Oh5E7uT1DMI68cpBAP4BQ==", + "path": "microsoft.entityframeworkcore.sqlite/9.0.10", + "hashPath": "microsoft.entityframeworkcore.sqlite.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6+ee+erdXSzxqB6Piys2ssldqhR8cQZJHjIPKWrh25YTYJhFUmTwB0nC8l/f+U69NoGg7ZIOwdg4+Qk2YV13Ug==", + "path": "microsoft.entityframeworkcore.sqlite.core/9.0.10", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFM5KSu1CCla1+wzhjwo5Ex/idUxbdZApKD9yNUbmcCBgW1SJ8E8mz7ECOf5gaCjjjII8f5ztJAmUt5Ez8koAQ==", + "path": "microsoft.entityframeworkcore.tools/9.0.10", + "hashPath": "microsoft.entityframeworkcore.tools.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Kzzf7pRey40VaUkHN9/uWxrKVkLu2AQjt+GVeeKLLpiEHAJ1xZRsLSh4ZZYEnyS7Kt2OBOPmsXNdU+wbcOl5w==", + "path": "microsoft.extensions.apidescription.server/9.0.0", + "hashPath": "microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cL6iTxgJ4u5zP3eFOdBiDAtmE/B2WKTRhyJfEne7n6qvHpsMwwIDxljs210mWSO1ucBy7lR1Lo7/7kjeZeLcqQ==", + "path": "microsoft.extensions.caching.abstractions/9.0.10", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2iuzwIoCoqZJfH2VLk1xvlQS4PQDEuhj4dWiGb+Qpt1vHFHyffp497cTO6ucsV54W/h4JmM1vzDBv8pVAFazZg==", + "path": "microsoft.extensions.caching.memory/9.0.10", + "hashPath": "microsoft.extensions.caching.memory.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ad3JxmFj0uxuFa1CT6oxTCC1lQ0xeRuOvzBRFT/I/ofIXVOnNsH/v2GZkAJWhlpZqKUvSexQZzp3EEAB2CdtJg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.10", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iEtXCkNd5XhjNJAOb/wO4IhDRdLIE2CsPxZggZQWJ/q2+sa8dmEPC393nnsiqdH8/4KV8Xn25IzgKPR1UEQ0og==", + "path": "microsoft.extensions.dependencyinjection/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r9waLiOPe9ZF1PvzUT+RDoHvpMmY8MW+lb4lqjYGObwKpnyPMLI3odVvlmshwuZcdoHynsGWOrCPA0hxZ63lIA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qCIWxEPt6Y9Z/Vx2R6JsfX7pwxIHC2GYlkcFbTox3MpsiNexyLkvPFTNsfmAaKpjTZ6FhNmvY3BdrwLX4+X0cQ==", + "path": "microsoft.extensions.dependencymodel/9.0.10", + "hashPath": "microsoft.extensions.dependencymodel.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UBXHqE9vyptVhaFnT1R7YJKCve7TqVI10yjjUZBNGMlW2lZ4c031Slt9hxsOzWCzlpPxxIFyf1Yk4a6Iubxx7w==", + "path": "microsoft.extensions.logging/9.0.10", + "hashPath": "microsoft.extensions.logging.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MFUPv/nN1rAQ19w43smm6bbf0JDYN/1HEPHoiMYY50pvDMFpglzWAuoTavByDmZq7UuhjaxwrET3joU69ZHoHQ==", + "path": "microsoft.extensions.logging.abstractions/9.0.10", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zMNABt8eBv0B0XrWjFy9nZNgddavaOeq3ZdaD5IlHhRH65MrU7HM+Hd8GjWE3e2VDGFPZFfSAc6XVXC17f9fOA==", + "path": "microsoft.extensions.options/9.0.10", + "hashPath": "microsoft.extensions.options.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3pl8D1O5ZwMpDkZAT2uXrhQ6NipkwEgDLMFuURiHTf72TvkoMP61QYH3Vk1yrzVHnHBdNZk3cQACz8Zc7YGNhQ==", + "path": "microsoft.extensions.primitives/9.0.10", + "hashPath": "microsoft.extensions.primitives.9.0.10.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.25": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZahSqNGtNV7N0JBYS/IYXPkLVexL/AZFxo6pqxv6A7Uli7Q7zfitNjkaqIcsV73Ukzxi4IlJdyDgcQiMXiH8cw==", + "path": "microsoft.openapi/1.6.25", + "hashPath": "microsoft.openapi.1.6.25.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==", + "path": "sqlitepclraw.core/2.1.10", + "hashPath": "sqlitepclraw.core.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/9.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q/UfEAgrk6qQyjHXgsW9ILw0YZLfmPtWUY4wYijliX6supozC+TkzU0G6FTnn/dPYxnChjM8g8lHjWHF6VKy+A==", + "path": "swashbuckle.aspnetcore/9.0.6", + "hashPath": "swashbuckle.aspnetcore.9.0.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/9.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bgyc8rWRAYwDrzjVHGbavvNE38G1Dfgf1McHYm+WUr4TxkvEAXv8F8B1z3Kmz4BkDCKv9A/1COa2t7+Ri5+pLg==", + "path": "swashbuckle.aspnetcore.swagger/9.0.6", + "hashPath": "swashbuckle.aspnetcore.swagger.9.0.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yYrDs5qpIa4UXP+a02X0ZLQs6HSd1C8t6hF6J1fnxoawi3PslJg1yUpLBS89HCbrDACzmwEGG25il+8aa0zdnw==", + "path": "swashbuckle.aspnetcore.swaggergen/9.0.6", + "hashPath": "swashbuckle.aspnetcore.swaggergen.9.0.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WGsw/Yop9b16miq8TQd4THxuEgkP5cH3+DX93BrX9m0OdPcKNtg2nNm77WQSAsA+Se+M0bTiu8bUyrruRSeS5g==", + "path": "swashbuckle.aspnetcore.swaggerui/9.0.6", + "hashPath": "swashbuckle.aspnetcore.swaggerui.9.0.6.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "path": "system.io.pipelines/7.0.0", + "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XM02ZBnzxk7Ti6l9YRy8Bp639wANqJzJzw4W4VYiCh+HXY9hBOWkGB4k89OLP/s/RxgM02P4a/mWcJTgFiLf1Q==", + "path": "system.text.json/9.0.10", + "hashPath": "system.text.json.9.0.10.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.dll new file mode 100644 index 0000000..4ad94f7 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.pdb b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.pdb new file mode 100644 index 0000000..bc12afb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.pdb differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.runtimeconfig.json b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.staticwebassets.endpoints.json b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.staticwebassets.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Humanizer.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Humanizer.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..ac18935 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..f5f1cee Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Build.Locator.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..446d341 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Build.Locator.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..2e99f76 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..8d56de1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll new file mode 100755 index 0000000..a17c676 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll new file mode 100755 index 0000000..f70a016 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..7253875 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..7d537db Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll new file mode 100755 index 0000000..d87196b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..6b0db0a Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100755 index 0000000..fcf5d4d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..44d6a68 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Sqlite.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100755 index 0000000..9698060 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..0c208db Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..cd83951 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..718d8f5 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..e2e531d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..a73bda2 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..a4b40dd Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..ef66559 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..9e9c0a9 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..ed6be27 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Options.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..30994ba Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Options.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..c22ff4d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.OpenApi.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..6fd0d6d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.OpenApi.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Mono.TextTemplating.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Mono.TextTemplating.dll new file mode 100755 index 0000000..4a76511 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Mono.TextTemplating.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll new file mode 100755 index 0000000..53e53eb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.core.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.core.dll new file mode 100755 index 0000000..b563677 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.core.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100755 index 0000000..a06a782 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100755 index 0000000..f0a5b88 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100755 index 0000000..5e6baa5 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100755 index 0000000..02337f3 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/System.CodeDom.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/System.CodeDom.dll new file mode 100755 index 0000000..54c82b6 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/System.CodeDom.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.AttributedModel.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..1431751 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.AttributedModel.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Convention.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Convention.dll new file mode 100755 index 0000000..e9dacb1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Convention.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Hosting.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..8381202 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Hosting.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Runtime.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..d583c3a Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Runtime.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.TypedParts.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..2b278d7 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.TypedParts.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/System.Text.Json.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Text.Json.dll new file mode 100755 index 0000000..74d6cae Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/System.Text.Json.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/appsettings.Development.json b/BibliotecaDigitalApi/bin/Debug/net9.0/appsettings.Development.json new file mode 100644 index 0000000..837aee0 --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net9.0/appsettings.Development.json @@ -0,0 +1,11 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "ConnectionStrings": { + "DefaultConnection": "Data Source=Data/database.db" + } +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/appsettings.json b/BibliotecaDigitalApi/bin/Debug/net9.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/BibliotecaDigitalApi/bin/Debug/net9.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4e90e20 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8dcc1bd Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..8ee4b4d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..62b0422 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..180a8d9 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4b7bae7 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..05da79f Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..bd0bb72 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..e128407 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..6a98feb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..8e8ced1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..970399e Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..9e6afdd Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..6cb47ac Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..76ddceb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c41ed4c Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..5fe6dd8 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..6eb37cb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..046c953 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..368bb7b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..72bb9d5 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6051d99 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..ad0d2cd Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..829ed5d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9890df1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..eaded8c Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..47f3fd5 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..28c43a1 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..203cc83 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..208b1d9 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..895ca11 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..c712a37 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..4d5b1a3 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..4790c29 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..05bc700 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..eb61aff Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..ea192cc Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..08eaeab Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..fce2d36 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e142029 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..7c20209 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..be86033 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..4be51d2 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..768264c Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..0dc6fae Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..85dd902 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..dfd0a6b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..f5e6b57 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..cafdf21 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..ace0504 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a new file mode 100755 index 0000000..5a5a2a3 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100755 index 0000000..a6a80a4 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100755 index 0000000..a1030eb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100755 index 0000000..56fc44d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100755 index 0000000..15883be Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100755 index 0000000..28eaa8b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100755 index 0000000..5a6a8f7 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so new file mode 100755 index 0000000..c576551 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100755 index 0000000..980a4a6 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100755 index 0000000..3f7dca6 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100755 index 0000000..a4bb64d Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100755 index 0000000..705798a Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100755 index 0000000..c32107b Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100755 index 0000000..f32c878 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100755 index 0000000..33a1c68 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100755 index 0000000..05932eb Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100755 index 0000000..0cd9a57 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100755 index 0000000..8294262 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100755 index 0000000..4ac1f79 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100755 index 0000000..8c1c1d9 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100755 index 0000000..0e05ac0 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..9867f6f Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..2a4742e Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..8977db0 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..8012969 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9a06288 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..e4b3c7a Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..b51ee57 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..d160925 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..e27e8be Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..22b6e95 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..57e4d28 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..305dfbf Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..28a5c18 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..cef3ebc Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..dce3bc0 Binary files /dev/null and b/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.dgspec.json b/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.dgspec.json index 09ab470..0dbcafe 100644 --- a/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.dgspec.json +++ b/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.dgspec.json @@ -17,14 +17,14 @@ "/home/rodo/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ - "net8.0" + "net9.0" ], "sources": { "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net8.0": { - "targetAlias": "net8.0", + "net9.0": { + "targetAlias": "net9.0", "projectReferences": {} } }, @@ -41,12 +41,12 @@ "SdkAnalysisLevel": "9.0.100" }, "frameworks": { - "net8.0": { - "targetAlias": "net8.0", + "net9.0": { + "targetAlias": "net9.0", "dependencies": { "Microsoft.AspNetCore.OpenApi": { "target": "Package", - "version": "[8.0.20, )" + "version": "[9.0.10, )" }, "Microsoft.EntityFrameworkCore": { "target": "Package", @@ -78,20 +78,6 @@ ], "assetTargetFallback": true, "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.20, 8.0.20]" - }, - { - "name": "Microsoft.NETCore.App.Host.linux-x64", - "version": "[8.0.20, 8.0.20]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[8.0.20, 8.0.20]" - } - ], "frameworkReferences": { "Microsoft.AspNetCore.App": { "privateAssets": "none" diff --git a/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.g.props b/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.g.props index cbb391e..bdfe497 100644 --- a/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.g.props +++ b/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.g.props @@ -13,14 +13,14 @@ - + - /home/rodo/.nuget/packages/microsoft.extensions.apidescription.server/8.0.0 + /home/rodo/.nuget/packages/microsoft.extensions.apidescription.server/9.0.0 /home/rodo/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4 /home/rodo/.nuget/packages/microsoft.entityframeworkcore.tools/9.0.10 diff --git a/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.g.targets b/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.g.targets index 04c335d..766016f 100644 --- a/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.g.targets +++ b/BibliotecaDigitalApi/obj/BibliotecaDigitalApi.csproj.nuget.g.targets @@ -2,8 +2,8 @@ - - + + diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/Bibliote.DD1D5943.Up2Date b/BibliotecaDigitalApi/obj/Debug/net8.0/Bibliote.DD1D5943.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfo.cs b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfo.cs index 13304c4..f841686 100644 --- a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfo.cs +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfo.cs @@ -13,10 +13,10 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("BibliotecaDigitalApi")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+aac701d2ce14e6dc4f47942bd1b5ad80ffe879b4")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fef5ca6aa600a303597306a27bbac6117df5942e")] [assembly: System.Reflection.AssemblyProductAttribute("BibliotecaDigitalApi")] [assembly: System.Reflection.AssemblyTitleAttribute("BibliotecaDigitalApi")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -// Generado por la clase WriteCodeFragment de MSBuild. +// Generated by the MSBuild WriteCodeFragment class. diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache index 9b53fc4..0c8f27d 100644 --- a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache @@ -1 +1 @@ -031513bc7be22e3aa08fb5104e409f207679c41938f82cc157b3c71357bf6a48 +f8dc9fd093f72724c923a1a0db49e8b3caccf55cddfc44a356328d17b8493230 diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs index 9fe4d8c..7a8df11 100644 --- a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs @@ -13,5 +13,5 @@ using System.Reflection; [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] -// Generado por la clase WriteCodeFragment de MSBuild. +// Generated by the MSBuild WriteCodeFragment class. diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache index 17d0998..dc32a95 100644 --- a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -16c997d1d750eb12e6ea72fe7572ffa8bbf63905112c48f479d53597aed94758 +1222cbea7d89e3354841d0d68d21e8eb2d06d19bf8a83e8c3c7c6bcc5457496a diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.FileListAbsolute.txt b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.FileListAbsolute.txt index b03a08e..a4b0285 100644 --- a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.FileListAbsolute.txt +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.FileListAbsolute.txt @@ -1,7 +1,169 @@ -C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi\obj\Debug\net8.0\BibliotecaDigitalApi.csproj.AssemblyReference.cache -C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi\obj\Debug\net8.0\BibliotecaDigitalApi.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi\obj\Debug\net8.0\BibliotecaDigitalApi.AssemblyInfoInputs.cache -C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi\obj\Debug\net8.0\BibliotecaDigitalApi.AssemblyInfo.cs -C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi\obj\Debug\net8.0\BibliotecaDigitalApi.csproj.CoreCompileInputs.cache -C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi\obj\Debug\net8.0\BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs -C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi\obj\Debug\net8.0\BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cache +C:/Users/CHIOH/source/repos/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.AssemblyReference.cache +C:/Users/CHIOH/source/repos/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.GeneratedMSBuildEditorConfig.editorconfig +C:/Users/CHIOH/source/repos/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache +C:/Users/CHIOH/source/repos/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfo.cs +C:/Users/CHIOH/source/repos/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache +C:/Users/CHIOH/source/repos/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs +C:/Users/CHIOH/source/repos/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/appsettings.Development.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/appsettings.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.staticwebassets.endpoints.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.deps.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.runtimeconfig.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/BibliotecaDigitalApi.pdb +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Humanizer.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Build.Locator.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Microsoft.OpenApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Mono.TextTemplating.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.core.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.CodeDom.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.AttributedModel.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Convention.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Hosting.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.Runtime.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.Composition.TypedParts.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.IO.Pipelines.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.Text.Encodings.Web.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/System.Text.Json.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.AssemblyReference.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.GeneratedMSBuildEditorConfig.editorconfig +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.AssemblyInfo.cs +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/scopedcss/bundle/BibliotecaDigitalApi.styles.css +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.build.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.development.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.build.endpoints.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.BibliotecaDigitalApi.Microsoft.AspNetCore.StaticWebAssets.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.BibliotecaDigitalApi.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.build.BibliotecaDigitalApi.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.BibliotecaDigitalApi.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.BibliotecaDigitalApi.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.pack.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/Bibliote.DD1D5943.Up2Date +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/refint/BibliotecaDigitalApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.pdb +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.genruntimeconfig.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net8.0/ref/BibliotecaDigitalApi.dll diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.dll b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.dll new file mode 100644 index 0000000..035540c Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.dll differ diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.genruntimeconfig.cache b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.genruntimeconfig.cache new file mode 100644 index 0000000..9c63593 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.genruntimeconfig.cache @@ -0,0 +1 @@ +f5be3fe2f49e574b5ce7d579a06aff68efbecac2edb5915cdffe3f2a0291751f diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.pdb b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.pdb new file mode 100644 index 0000000..e6600d3 Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net8.0/BibliotecaDigitalApi.pdb differ diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/apphost b/BibliotecaDigitalApi/obj/Debug/net8.0/apphost new file mode 100755 index 0000000..03587fc Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net8.0/apphost differ diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/ref/BibliotecaDigitalApi.dll b/BibliotecaDigitalApi/obj/Debug/net8.0/ref/BibliotecaDigitalApi.dll new file mode 100644 index 0000000..10a1659 Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net8.0/ref/BibliotecaDigitalApi.dll differ diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/refint/BibliotecaDigitalApi.dll b/BibliotecaDigitalApi/obj/Debug/net8.0/refint/BibliotecaDigitalApi.dll new file mode 100644 index 0000000..10a1659 Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net8.0/refint/BibliotecaDigitalApi.dll differ diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.build.endpoints.json b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.build.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.build.json b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..cd7000d --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "Hash": "XJcCqVBVvMhvu//UcHCszNeUP53cS/A6TuaaLuz7jgM=", + "Source": "BibliotecaDigitalApi", + "BasePath": "_content/BibliotecaDigitalApi", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [], + "Endpoints": [] +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.build.BibliotecaDigitalApi.props b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.build.BibliotecaDigitalApi.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.build.BibliotecaDigitalApi.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.BibliotecaDigitalApi.props b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.BibliotecaDigitalApi.props new file mode 100644 index 0000000..3dacb7b --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.BibliotecaDigitalApi.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.BibliotecaDigitalApi.props b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.BibliotecaDigitalApi.props new file mode 100644 index 0000000..1865096 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.BibliotecaDigitalApi.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/BibliotecaDigitalApi/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/Bibliote.DD1D5943.Up2Date b/BibliotecaDigitalApi/obj/Debug/net9.0/Bibliote.DD1D5943.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.AssemblyInfo.cs b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.AssemblyInfo.cs new file mode 100644 index 0000000..f841686 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// 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("BibliotecaDigitalApi")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fef5ca6aa600a303597306a27bbac6117df5942e")] +[assembly: System.Reflection.AssemblyProductAttribute("BibliotecaDigitalApi")] +[assembly: System.Reflection.AssemblyTitleAttribute("BibliotecaDigitalApi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0c8f27d --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f8dc9fd093f72724c923a1a0db49e8b3caccf55cddfc44a356328d17b8493230 diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.GeneratedMSBuildEditorConfig.editorconfig b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5a2c872 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,29 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = BibliotecaDigitalApi +build_property.RootNamespace = BibliotecaDigitalApi +build_property.ProjectDir = /home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.GlobalUsings.g.cs b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +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.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cache b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..7a8df11 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// 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: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.assets.cache b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.assets.cache new file mode 100644 index 0000000..a00d5ab Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.assets.cache differ diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.AssemblyReference.cache b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4fc3226 Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.AssemblyReference.cache differ diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5bb111b --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9e0261154990335d2f899eb37432f9cde89b965d9a5005b120bb342a08aeeaa4 diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.FileListAbsolute.txt b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..086e8ea --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.FileListAbsolute.txt @@ -0,0 +1,158 @@ +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/appsettings.Development.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/appsettings.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.staticwebassets.endpoints.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.deps.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.runtimeconfig.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/BibliotecaDigitalApi.pdb +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Humanizer.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Sqlite.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Microsoft.OpenApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Mono.TextTemplating.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.core.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/System.CodeDom.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Convention.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Hosting.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.Runtime.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/System.Composition.TypedParts.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/System.Text.Json.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.AssemblyReference.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.GeneratedMSBuildEditorConfig.editorconfig +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.AssemblyInfoInputs.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.AssemblyInfo.cs +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.csproj.CoreCompileInputs.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cs +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.MvcApplicationPartsAssemblyInfo.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/scopedcss/bundle/BibliotecaDigitalApi.styles.css +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.build.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.development.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.BibliotecaDigitalApi.Microsoft.AspNetCore.StaticWebAssets.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.BibliotecaDigitalApi.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.build.BibliotecaDigitalApi.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.BibliotecaDigitalApi.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.BibliotecaDigitalApi.props +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.pack.json +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/Bibliote.DD1D5943.Up2Date +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/refint/BibliotecaDigitalApi.dll +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.pdb +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.genruntimeconfig.cache +/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/obj/Debug/net9.0/ref/BibliotecaDigitalApi.dll diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.dll b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.dll new file mode 100644 index 0000000..4ad94f7 Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.dll differ diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.genruntimeconfig.cache b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.genruntimeconfig.cache new file mode 100644 index 0000000..52d5874 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.genruntimeconfig.cache @@ -0,0 +1 @@ +d7a796e80e6a2002a4dd15d3e78c429a886e5a6ed25edfdcfb93795e29acf696 diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.pdb b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.pdb new file mode 100644 index 0000000..bc12afb Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net9.0/BibliotecaDigitalApi.pdb differ diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/apphost b/BibliotecaDigitalApi/obj/Debug/net9.0/apphost new file mode 100755 index 0000000..d2bcf31 Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net9.0/apphost differ diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/ref/BibliotecaDigitalApi.dll b/BibliotecaDigitalApi/obj/Debug/net9.0/ref/BibliotecaDigitalApi.dll new file mode 100644 index 0000000..d89e719 Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net9.0/ref/BibliotecaDigitalApi.dll differ diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/refint/BibliotecaDigitalApi.dll b/BibliotecaDigitalApi/obj/Debug/net9.0/refint/BibliotecaDigitalApi.dll new file mode 100644 index 0000000..d89e719 Binary files /dev/null and b/BibliotecaDigitalApi/obj/Debug/net9.0/refint/BibliotecaDigitalApi.dll differ diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.build.json b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..cd7000d --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "Hash": "XJcCqVBVvMhvu//UcHCszNeUP53cS/A6TuaaLuz7jgM=", + "Source": "BibliotecaDigitalApi", + "BasePath": "_content/BibliotecaDigitalApi", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [], + "Endpoints": [] +} \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.build.BibliotecaDigitalApi.props b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.build.BibliotecaDigitalApi.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.build.BibliotecaDigitalApi.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.BibliotecaDigitalApi.props b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.BibliotecaDigitalApi.props new file mode 100644 index 0000000..3dacb7b --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.BibliotecaDigitalApi.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.BibliotecaDigitalApi.props b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.BibliotecaDigitalApi.props new file mode 100644 index 0000000..1865096 --- /dev/null +++ b/BibliotecaDigitalApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.BibliotecaDigitalApi.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/BibliotecaDigitalApi/obj/project.assets.json b/BibliotecaDigitalApi/obj/project.assets.json index e4e9154..5226143 100644 --- a/BibliotecaDigitalApi/obj/project.assets.json +++ b/BibliotecaDigitalApi/obj/project.assets.json @@ -1,7 +1,7 @@ { "version": 3, "targets": { - "net8.0": { + "net9.0": { "Humanizer.Core/2.14.1": { "type": "package", "compile": { @@ -15,18 +15,18 @@ } } }, - "Microsoft.AspNetCore.OpenApi/8.0.20": { + "Microsoft.AspNetCore.OpenApi/9.0.10": { "type": "package", "dependencies": { - "Microsoft.OpenApi": "1.4.3" + "Microsoft.OpenApi": "1.6.17" }, "compile": { - "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { "related": ".xml" } }, @@ -533,7 +533,7 @@ "Microsoft.EntityFrameworkCore.Design": "9.0.10" } }, - "Microsoft.Extensions.ApiDescription.Server/8.0.0": { + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { "type": "package", "build": { "build/Microsoft.Extensions.ApiDescription.Server.props": {}, @@ -550,12 +550,12 @@ "Microsoft.Extensions.Primitives": "9.0.10" }, "compile": { - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { "related": ".xml" } }, @@ -573,12 +573,12 @@ "Microsoft.Extensions.Primitives": "9.0.10" }, "compile": { - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { "related": ".xml" } }, @@ -592,12 +592,12 @@ "Microsoft.Extensions.Primitives": "9.0.10" }, "compile": { - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { "related": ".xml" } }, @@ -611,12 +611,12 @@ "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" }, "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { "related": ".xml" } }, @@ -627,12 +627,12 @@ "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { "type": "package", "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { "related": ".xml" } }, @@ -642,17 +642,13 @@ }, "Microsoft.Extensions.DependencyModel/9.0.10": { "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "9.0.10", - "System.Text.Json": "9.0.10" - }, "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { "related": ".xml" } }, @@ -668,12 +664,12 @@ "Microsoft.Extensions.Options": "9.0.10" }, "compile": { - "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { "related": ".xml" } }, @@ -684,16 +680,15 @@ "Microsoft.Extensions.Logging.Abstractions/9.0.10": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", - "System.Diagnostics.DiagnosticSource": "9.0.10" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" }, "compile": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { "related": ".xml" } }, @@ -708,12 +703,12 @@ "Microsoft.Extensions.Primitives": "9.0.10" }, "compile": { - "lib/net8.0/Microsoft.Extensions.Options.dll": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.Options.dll": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { "related": ".xml" } }, @@ -724,12 +719,12 @@ "Microsoft.Extensions.Primitives/9.0.10": { "type": "package", "compile": { - "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { "related": ".xml" } }, @@ -799,10 +794,10 @@ "lib/netstandard2.0/_._": {} }, "build": { - "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + "buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} }, "runtimeTargets": { - "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": { "assetType": "native", "rid": "browser-wasm" }, @@ -903,7 +898,7 @@ "Swashbuckle.AspNetCore/9.0.6": { "type": "package", "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "8.0.0", + "Microsoft.Extensions.ApiDescription.Server": "9.0.0", "Swashbuckle.AspNetCore.Swagger": "9.0.6", "Swashbuckle.AspNetCore.SwaggerGen": "9.0.6", "Swashbuckle.AspNetCore.SwaggerUI": "9.0.6" @@ -921,12 +916,12 @@ "Microsoft.OpenApi": "1.6.25" }, "compile": { - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { "related": ".pdb;.xml" } }, @@ -940,12 +935,12 @@ "Swashbuckle.AspNetCore.Swagger": "9.0.6" }, "compile": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { "related": ".pdb;.xml" } } @@ -953,12 +948,12 @@ "Swashbuckle.AspNetCore.SwaggerUI/9.0.6": { "type": "package", "compile": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { "related": ".pdb;.xml" } }, @@ -1108,36 +1103,20 @@ "buildTransitive/net6.0/_._": {} } }, - "System.Diagnostics.DiagnosticSource/9.0.10": { + "System.IO.Pipelines/7.0.0": { "type": "package", "compile": { - "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "lib/net7.0/_._": { "related": ".xml" } }, "runtime": { - "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "lib/net7.0/System.IO.Pipelines.dll": { "related": ".xml" } }, "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "System.IO.Pipelines/9.0.10": { - "type": "package", - "compile": { - "lib/net8.0/System.IO.Pipelines.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.IO.Pipelines.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} + "buildTransitive/net6.0/_._": {} } }, "System.Memory/4.5.3": { @@ -1184,41 +1163,15 @@ "buildTransitive/netcoreapp3.1/_._": {} } }, - "System.Text.Encodings.Web/9.0.10": { - "type": "package", - "compile": { - "lib/net8.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - }, - "runtimeTargets": { - "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { - "assetType": "runtime", - "rid": "browser" - } - } - }, "System.Text.Json/9.0.10": { "type": "package", - "dependencies": { - "System.IO.Pipelines": "9.0.10", - "System.Text.Encodings.Web": "9.0.10" - }, "compile": { - "lib/net8.0/System.Text.Json.dll": { + "lib/net9.0/System.Text.Json.dll": { "related": ".xml" } }, "runtime": { - "lib/net8.0/System.Text.Json.dll": { + "lib/net9.0/System.Text.Json.dll": { "related": ".xml" } }, @@ -1263,18 +1216,19 @@ "logo.png" ] }, - "Microsoft.AspNetCore.OpenApi/8.0.20": { - "sha512": "IjWB1Q/Ar8fyfE3cKjybSlpAE++miAkDGbSup0WeFOtZn2vK+myK7RWDJlFdWICLLU50CmmLad91toIJNTrymQ==", + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "sha512": "yAv5EDEi0Nkk75Vhxh6ppuXd/QIO8hzjGpAt/fGInMZWIX/mVwZ1IM50YFIWeLCVM8KDj0oFPQdcLeQ+9hEJsw==", "type": "package", - "path": "microsoft.aspnetcore.openapi/8.0.20", + "path": "microsoft.aspnetcore.openapi/9.0.10", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll", - "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml", - "microsoft.aspnetcore.openapi.8.0.20.nupkg.sha512", + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net9.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512", "microsoft.aspnetcore.openapi.nuspec" ] }, @@ -2409,10 +2363,10 @@ "tools/netcoreapp2.0/any/ef.runtimeconfig.json" ] }, - "Microsoft.Extensions.ApiDescription.Server/8.0.0": { - "sha512": "jDM3a95WerM8g6IcMiBXq1qRS9dqmEUpgnCk2DeMWpPkYtp1ia+CkXabOnK93JmhVlUmv8l9WMPsCSUm+WqkIA==", + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "sha512": "1Kzzf7pRey40VaUkHN9/uWxrKVkLu2AQjt+GVeeKLLpiEHAJ1xZRsLSh4ZZYEnyS7Kt2OBOPmsXNdU+wbcOl5w==", "type": "package", - "path": "microsoft.extensions.apidescription.server/8.0.0", + "path": "microsoft.extensions.apidescription.server/9.0.0", "hasTools": true, "files": [ ".nupkg.metadata", @@ -2422,7 +2376,7 @@ "build/Microsoft.Extensions.ApiDescription.Server.targets", "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", - "microsoft.extensions.apidescription.server.8.0.0.nupkg.sha512", + "microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512", "microsoft.extensions.apidescription.server.nuspec", "tools/Newtonsoft.Json.dll", "tools/dotnet-getdocument.deps.json", @@ -2430,44 +2384,239 @@ "tools/dotnet-getdocument.runtimeconfig.json", "tools/net462-x86/GetDocument.Insider.exe", "tools/net462-x86/GetDocument.Insider.exe.config", + "tools/net462-x86/Microsoft.OpenApi.dll", + "tools/net462-x86/Microsoft.Win32.Primitives.dll", + "tools/net462-x86/System.AppContext.dll", "tools/net462-x86/System.Buffers.dll", + "tools/net462-x86/System.Collections.Concurrent.dll", + "tools/net462-x86/System.Collections.NonGeneric.dll", + "tools/net462-x86/System.Collections.Specialized.dll", + "tools/net462-x86/System.Collections.dll", + "tools/net462-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net462-x86/System.ComponentModel.Primitives.dll", + "tools/net462-x86/System.ComponentModel.TypeConverter.dll", + "tools/net462-x86/System.ComponentModel.dll", + "tools/net462-x86/System.Console.dll", + "tools/net462-x86/System.Data.Common.dll", + "tools/net462-x86/System.Diagnostics.Contracts.dll", + "tools/net462-x86/System.Diagnostics.Debug.dll", "tools/net462-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net462-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net462-x86/System.Diagnostics.Process.dll", + "tools/net462-x86/System.Diagnostics.StackTrace.dll", + "tools/net462-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net462-x86/System.Diagnostics.Tools.dll", + "tools/net462-x86/System.Diagnostics.TraceSource.dll", + "tools/net462-x86/System.Diagnostics.Tracing.dll", + "tools/net462-x86/System.Drawing.Primitives.dll", + "tools/net462-x86/System.Dynamic.Runtime.dll", + "tools/net462-x86/System.Globalization.Calendars.dll", + "tools/net462-x86/System.Globalization.Extensions.dll", + "tools/net462-x86/System.Globalization.dll", + "tools/net462-x86/System.IO.Compression.ZipFile.dll", + "tools/net462-x86/System.IO.Compression.dll", + "tools/net462-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net462-x86/System.IO.FileSystem.Primitives.dll", + "tools/net462-x86/System.IO.FileSystem.Watcher.dll", + "tools/net462-x86/System.IO.FileSystem.dll", + "tools/net462-x86/System.IO.IsolatedStorage.dll", + "tools/net462-x86/System.IO.MemoryMappedFiles.dll", + "tools/net462-x86/System.IO.Pipes.dll", + "tools/net462-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net462-x86/System.IO.dll", + "tools/net462-x86/System.Linq.Expressions.dll", + "tools/net462-x86/System.Linq.Parallel.dll", + "tools/net462-x86/System.Linq.Queryable.dll", + "tools/net462-x86/System.Linq.dll", "tools/net462-x86/System.Memory.dll", + "tools/net462-x86/System.Net.Http.dll", + "tools/net462-x86/System.Net.NameResolution.dll", + "tools/net462-x86/System.Net.NetworkInformation.dll", + "tools/net462-x86/System.Net.Ping.dll", + "tools/net462-x86/System.Net.Primitives.dll", + "tools/net462-x86/System.Net.Requests.dll", + "tools/net462-x86/System.Net.Security.dll", + "tools/net462-x86/System.Net.Sockets.dll", + "tools/net462-x86/System.Net.WebHeaderCollection.dll", + "tools/net462-x86/System.Net.WebSockets.Client.dll", + "tools/net462-x86/System.Net.WebSockets.dll", "tools/net462-x86/System.Numerics.Vectors.dll", + "tools/net462-x86/System.ObjectModel.dll", + "tools/net462-x86/System.Reflection.Extensions.dll", + "tools/net462-x86/System.Reflection.Primitives.dll", + "tools/net462-x86/System.Reflection.dll", + "tools/net462-x86/System.Resources.Reader.dll", + "tools/net462-x86/System.Resources.ResourceManager.dll", + "tools/net462-x86/System.Resources.Writer.dll", "tools/net462-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net462-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net462-x86/System.Runtime.Extensions.dll", + "tools/net462-x86/System.Runtime.Handles.dll", + "tools/net462-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net462-x86/System.Runtime.InteropServices.dll", + "tools/net462-x86/System.Runtime.Numerics.dll", + "tools/net462-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net462-x86/System.Runtime.Serialization.Json.dll", + "tools/net462-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net462-x86/System.Runtime.Serialization.Xml.dll", + "tools/net462-x86/System.Runtime.dll", + "tools/net462-x86/System.Security.Claims.dll", + "tools/net462-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net462-x86/System.Security.Cryptography.Csp.dll", + "tools/net462-x86/System.Security.Cryptography.Encoding.dll", + "tools/net462-x86/System.Security.Cryptography.Primitives.dll", + "tools/net462-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net462-x86/System.Security.Principal.dll", + "tools/net462-x86/System.Security.SecureString.dll", + "tools/net462-x86/System.Text.Encoding.Extensions.dll", + "tools/net462-x86/System.Text.Encoding.dll", + "tools/net462-x86/System.Text.RegularExpressions.dll", + "tools/net462-x86/System.Threading.Overlapped.dll", + "tools/net462-x86/System.Threading.Tasks.Parallel.dll", + "tools/net462-x86/System.Threading.Tasks.dll", + "tools/net462-x86/System.Threading.Thread.dll", + "tools/net462-x86/System.Threading.ThreadPool.dll", + "tools/net462-x86/System.Threading.Timer.dll", + "tools/net462-x86/System.Threading.dll", + "tools/net462-x86/System.ValueTuple.dll", + "tools/net462-x86/System.Xml.ReaderWriter.dll", + "tools/net462-x86/System.Xml.XDocument.dll", + "tools/net462-x86/System.Xml.XPath.XDocument.dll", + "tools/net462-x86/System.Xml.XPath.dll", + "tools/net462-x86/System.Xml.XmlDocument.dll", + "tools/net462-x86/System.Xml.XmlSerializer.dll", + "tools/net462-x86/netstandard.dll", "tools/net462/GetDocument.Insider.exe", "tools/net462/GetDocument.Insider.exe.config", + "tools/net462/Microsoft.OpenApi.dll", + "tools/net462/Microsoft.Win32.Primitives.dll", + "tools/net462/System.AppContext.dll", "tools/net462/System.Buffers.dll", + "tools/net462/System.Collections.Concurrent.dll", + "tools/net462/System.Collections.NonGeneric.dll", + "tools/net462/System.Collections.Specialized.dll", + "tools/net462/System.Collections.dll", + "tools/net462/System.ComponentModel.EventBasedAsync.dll", + "tools/net462/System.ComponentModel.Primitives.dll", + "tools/net462/System.ComponentModel.TypeConverter.dll", + "tools/net462/System.ComponentModel.dll", + "tools/net462/System.Console.dll", + "tools/net462/System.Data.Common.dll", + "tools/net462/System.Diagnostics.Contracts.dll", + "tools/net462/System.Diagnostics.Debug.dll", "tools/net462/System.Diagnostics.DiagnosticSource.dll", + "tools/net462/System.Diagnostics.FileVersionInfo.dll", + "tools/net462/System.Diagnostics.Process.dll", + "tools/net462/System.Diagnostics.StackTrace.dll", + "tools/net462/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net462/System.Diagnostics.Tools.dll", + "tools/net462/System.Diagnostics.TraceSource.dll", + "tools/net462/System.Diagnostics.Tracing.dll", + "tools/net462/System.Drawing.Primitives.dll", + "tools/net462/System.Dynamic.Runtime.dll", + "tools/net462/System.Globalization.Calendars.dll", + "tools/net462/System.Globalization.Extensions.dll", + "tools/net462/System.Globalization.dll", + "tools/net462/System.IO.Compression.ZipFile.dll", + "tools/net462/System.IO.Compression.dll", + "tools/net462/System.IO.FileSystem.DriveInfo.dll", + "tools/net462/System.IO.FileSystem.Primitives.dll", + "tools/net462/System.IO.FileSystem.Watcher.dll", + "tools/net462/System.IO.FileSystem.dll", + "tools/net462/System.IO.IsolatedStorage.dll", + "tools/net462/System.IO.MemoryMappedFiles.dll", + "tools/net462/System.IO.Pipes.dll", + "tools/net462/System.IO.UnmanagedMemoryStream.dll", + "tools/net462/System.IO.dll", + "tools/net462/System.Linq.Expressions.dll", + "tools/net462/System.Linq.Parallel.dll", + "tools/net462/System.Linq.Queryable.dll", + "tools/net462/System.Linq.dll", "tools/net462/System.Memory.dll", + "tools/net462/System.Net.Http.dll", + "tools/net462/System.Net.NameResolution.dll", + "tools/net462/System.Net.NetworkInformation.dll", + "tools/net462/System.Net.Ping.dll", + "tools/net462/System.Net.Primitives.dll", + "tools/net462/System.Net.Requests.dll", + "tools/net462/System.Net.Security.dll", + "tools/net462/System.Net.Sockets.dll", + "tools/net462/System.Net.WebHeaderCollection.dll", + "tools/net462/System.Net.WebSockets.Client.dll", + "tools/net462/System.Net.WebSockets.dll", "tools/net462/System.Numerics.Vectors.dll", + "tools/net462/System.ObjectModel.dll", + "tools/net462/System.Reflection.Extensions.dll", + "tools/net462/System.Reflection.Primitives.dll", + "tools/net462/System.Reflection.dll", + "tools/net462/System.Resources.Reader.dll", + "tools/net462/System.Resources.ResourceManager.dll", + "tools/net462/System.Resources.Writer.dll", "tools/net462/System.Runtime.CompilerServices.Unsafe.dll", - "tools/net8.0/GetDocument.Insider.deps.json", - "tools/net8.0/GetDocument.Insider.dll", - "tools/net8.0/GetDocument.Insider.exe", - "tools/net8.0/GetDocument.Insider.runtimeconfig.json", - "tools/net8.0/Microsoft.AspNetCore.Connections.Abstractions.dll", - "tools/net8.0/Microsoft.AspNetCore.Connections.Abstractions.xml", - "tools/net8.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", - "tools/net8.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", - "tools/net8.0/Microsoft.AspNetCore.Http.Features.dll", - "tools/net8.0/Microsoft.AspNetCore.Http.Features.xml", - "tools/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "tools/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "tools/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "tools/net8.0/Microsoft.Extensions.Features.dll", - "tools/net8.0/Microsoft.Extensions.Features.xml", - "tools/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "tools/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "tools/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "tools/net8.0/Microsoft.Extensions.Options.dll", - "tools/net8.0/Microsoft.Extensions.Primitives.dll", - "tools/net8.0/Microsoft.Net.Http.Headers.dll", - "tools/net8.0/Microsoft.Net.Http.Headers.xml", - "tools/net8.0/System.IO.Pipelines.dll", + "tools/net462/System.Runtime.CompilerServices.VisualC.dll", + "tools/net462/System.Runtime.Extensions.dll", + "tools/net462/System.Runtime.Handles.dll", + "tools/net462/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net462/System.Runtime.InteropServices.dll", + "tools/net462/System.Runtime.Numerics.dll", + "tools/net462/System.Runtime.Serialization.Formatters.dll", + "tools/net462/System.Runtime.Serialization.Json.dll", + "tools/net462/System.Runtime.Serialization.Primitives.dll", + "tools/net462/System.Runtime.Serialization.Xml.dll", + "tools/net462/System.Runtime.dll", + "tools/net462/System.Security.Claims.dll", + "tools/net462/System.Security.Cryptography.Algorithms.dll", + "tools/net462/System.Security.Cryptography.Csp.dll", + "tools/net462/System.Security.Cryptography.Encoding.dll", + "tools/net462/System.Security.Cryptography.Primitives.dll", + "tools/net462/System.Security.Cryptography.X509Certificates.dll", + "tools/net462/System.Security.Principal.dll", + "tools/net462/System.Security.SecureString.dll", + "tools/net462/System.Text.Encoding.Extensions.dll", + "tools/net462/System.Text.Encoding.dll", + "tools/net462/System.Text.RegularExpressions.dll", + "tools/net462/System.Threading.Overlapped.dll", + "tools/net462/System.Threading.Tasks.Parallel.dll", + "tools/net462/System.Threading.Tasks.dll", + "tools/net462/System.Threading.Thread.dll", + "tools/net462/System.Threading.ThreadPool.dll", + "tools/net462/System.Threading.Timer.dll", + "tools/net462/System.Threading.dll", + "tools/net462/System.ValueTuple.dll", + "tools/net462/System.Xml.ReaderWriter.dll", + "tools/net462/System.Xml.XDocument.dll", + "tools/net462/System.Xml.XPath.XDocument.dll", + "tools/net462/System.Xml.XPath.dll", + "tools/net462/System.Xml.XmlDocument.dll", + "tools/net462/System.Xml.XmlSerializer.dll", + "tools/net462/netstandard.dll", + "tools/net9.0/GetDocument.Insider.deps.json", + "tools/net9.0/GetDocument.Insider.dll", + "tools/net9.0/GetDocument.Insider.exe", + "tools/net9.0/GetDocument.Insider.runtimeconfig.json", + "tools/net9.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "tools/net9.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "tools/net9.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "tools/net9.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "tools/net9.0/Microsoft.AspNetCore.Http.Features.dll", + "tools/net9.0/Microsoft.AspNetCore.Http.Features.xml", + "tools/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Features.dll", + "tools/net9.0/Microsoft.Extensions.Features.xml", + "tools/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Options.dll", + "tools/net9.0/Microsoft.Extensions.Primitives.dll", + "tools/net9.0/Microsoft.Net.Http.Headers.dll", + "tools/net9.0/Microsoft.Net.Http.Headers.xml", + "tools/net9.0/Microsoft.OpenApi.dll", "tools/netcoreapp2.1/GetDocument.Insider.deps.json", "tools/netcoreapp2.1/GetDocument.Insider.dll", "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/Microsoft.OpenApi.dll", "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" ] }, @@ -3217,57 +3366,29 @@ "useSharedDesignerContext.txt" ] }, - "System.Diagnostics.DiagnosticSource/9.0.10": { - "sha512": "uIpKiKp7EWlYZBK71jYP+maGYjDY9YTi/FxBlZoqDzM1ZHZB7gLqUm4jHvRFwaKfR1/Lrt2rQih9LGPIKyNEow==", + "System.IO.Pipelines/7.0.0": { + "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", "type": "package", - "path": "system.diagnostics.diagnosticsource/9.0.10", + "path": "system.io.pipelines/7.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", - "lib/net462/System.Diagnostics.DiagnosticSource.dll", - "lib/net462/System.Diagnostics.DiagnosticSource.xml", - "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", - "lib/net9.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net9.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.9.0.10.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.IO.Pipelines/9.0.10": { - "sha512": "lwI0mhHcCxMtNSxB5ate9Gc9petWovRBUprtjz2yiIDDZPGBIaUiqNzQHJzjPuzTnvNbEMilpAXjDguKsU/2Fg==", - "type": "package", - "path": "system.io.pipelines/9.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", "buildTransitive/net461/System.IO.Pipelines.targets", "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", + "buildTransitive/net6.0/_._", "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", "lib/net462/System.IO.Pipelines.dll", "lib/net462/System.IO.Pipelines.xml", - "lib/net8.0/System.IO.Pipelines.dll", - "lib/net8.0/System.IO.Pipelines.xml", - "lib/net9.0/System.IO.Pipelines.dll", - "lib/net9.0/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/net7.0/System.IO.Pipelines.dll", + "lib/net7.0/System.IO.Pipelines.xml", "lib/netstandard2.0/System.IO.Pipelines.dll", "lib/netstandard2.0/System.IO.Pipelines.xml", - "system.io.pipelines.9.0.10.nupkg.sha512", + "system.io.pipelines.7.0.0.nupkg.sha512", "system.io.pipelines.nuspec", "useSharedDesignerContext.txt" ] @@ -3346,38 +3467,6 @@ "useSharedDesignerContext.txt" ] }, - "System.Text.Encodings.Web/9.0.10": { - "sha512": "znmiJFUa0GGwq7t6ShUKBDRlPsNJaudNFI7rVeyGnRBhiRMegBvu2GRcadThP/QX/a5UpGgZbe6tolDooobj/Q==", - "type": "package", - "path": "system.text.encodings.web/9.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Text.Encodings.Web.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", - "lib/net462/System.Text.Encodings.Web.dll", - "lib/net462/System.Text.Encodings.Web.xml", - "lib/net8.0/System.Text.Encodings.Web.dll", - "lib/net8.0/System.Text.Encodings.Web.xml", - "lib/net9.0/System.Text.Encodings.Web.dll", - "lib/net9.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml", - "system.text.encodings.web.9.0.10.nupkg.sha512", - "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt" - ] - }, "System.Text.Json/9.0.10": { "sha512": "XM02ZBnzxk7Ti6l9YRy8Bp639wANqJzJzw4W4VYiCh+HXY9hBOWkGB4k89OLP/s/RxgM02P4a/mWcJTgFiLf1Q==", "type": "package", @@ -3480,8 +3569,8 @@ } }, "projectFileDependencyGroups": { - "net8.0": [ - "Microsoft.AspNetCore.OpenApi >= 8.0.20", + "net9.0": [ + "Microsoft.AspNetCore.OpenApi >= 9.0.10", "Microsoft.EntityFrameworkCore >= 9.0.10", "Microsoft.EntityFrameworkCore.Sqlite >= 9.0.10", "Microsoft.EntityFrameworkCore.Tools >= 9.0.10", @@ -3504,14 +3593,14 @@ "/home/rodo/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ - "net8.0" + "net9.0" ], "sources": { "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net8.0": { - "targetAlias": "net8.0", + "net9.0": { + "targetAlias": "net9.0", "projectReferences": {} } }, @@ -3528,12 +3617,12 @@ "SdkAnalysisLevel": "9.0.100" }, "frameworks": { - "net8.0": { - "targetAlias": "net8.0", + "net9.0": { + "targetAlias": "net9.0", "dependencies": { "Microsoft.AspNetCore.OpenApi": { "target": "Package", - "version": "[8.0.20, )" + "version": "[9.0.10, )" }, "Microsoft.EntityFrameworkCore": { "target": "Package", @@ -3565,20 +3654,6 @@ ], "assetTargetFallback": true, "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.20, 8.0.20]" - }, - { - "name": "Microsoft.NETCore.App.Host.linux-x64", - "version": "[8.0.20, 8.0.20]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[8.0.20, 8.0.20]" - } - ], "frameworkReferences": { "Microsoft.AspNetCore.App": { "privateAssets": "none" diff --git a/BibliotecaDigitalApi/obj/project.nuget.cache b/BibliotecaDigitalApi/obj/project.nuget.cache index 417f578..60c2a33 100644 --- a/BibliotecaDigitalApi/obj/project.nuget.cache +++ b/BibliotecaDigitalApi/obj/project.nuget.cache @@ -1,11 +1,11 @@ { "version": 2, - "dgSpecHash": "gl2vyi0qBCs=", + "dgSpecHash": "VXgo4r4QSBU=", "success": true, "projectFilePath": "/home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/BibliotecaDigitalApi.csproj", "expectedPackageFiles": [ "/home/rodo/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", - "/home/rodo/.nuget/packages/microsoft.aspnetcore.openapi/8.0.20/microsoft.aspnetcore.openapi.8.0.20.nupkg.sha512", + "/home/rodo/.nuget/packages/microsoft.aspnetcore.openapi/9.0.10/microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512", "/home/rodo/.nuget/packages/microsoft.bcl.asyncinterfaces/7.0.0/microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", "/home/rodo/.nuget/packages/microsoft.build.framework/17.8.3/microsoft.build.framework.17.8.3.nupkg.sha512", "/home/rodo/.nuget/packages/microsoft.build.locator/1.7.8/microsoft.build.locator.1.7.8.nupkg.sha512", @@ -24,7 +24,7 @@ "/home/rodo/.nuget/packages/microsoft.entityframeworkcore.sqlite/9.0.10/microsoft.entityframeworkcore.sqlite.9.0.10.nupkg.sha512", "/home/rodo/.nuget/packages/microsoft.entityframeworkcore.sqlite.core/9.0.10/microsoft.entityframeworkcore.sqlite.core.9.0.10.nupkg.sha512", "/home/rodo/.nuget/packages/microsoft.entityframeworkcore.tools/9.0.10/microsoft.entityframeworkcore.tools.9.0.10.nupkg.sha512", - "/home/rodo/.nuget/packages/microsoft.extensions.apidescription.server/8.0.0/microsoft.extensions.apidescription.server.8.0.0.nupkg.sha512", + "/home/rodo/.nuget/packages/microsoft.extensions.apidescription.server/9.0.0/microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512", "/home/rodo/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.10/microsoft.extensions.caching.abstractions.9.0.10.nupkg.sha512", "/home/rodo/.nuget/packages/microsoft.extensions.caching.memory/9.0.10/microsoft.extensions.caching.memory.9.0.10.nupkg.sha512", "/home/rodo/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.10/microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512", @@ -53,17 +53,12 @@ "/home/rodo/.nuget/packages/system.composition.hosting/7.0.0/system.composition.hosting.7.0.0.nupkg.sha512", "/home/rodo/.nuget/packages/system.composition.runtime/7.0.0/system.composition.runtime.7.0.0.nupkg.sha512", "/home/rodo/.nuget/packages/system.composition.typedparts/7.0.0/system.composition.typedparts.7.0.0.nupkg.sha512", - "/home/rodo/.nuget/packages/system.diagnostics.diagnosticsource/9.0.10/system.diagnostics.diagnosticsource.9.0.10.nupkg.sha512", - "/home/rodo/.nuget/packages/system.io.pipelines/9.0.10/system.io.pipelines.9.0.10.nupkg.sha512", + "/home/rodo/.nuget/packages/system.io.pipelines/7.0.0/system.io.pipelines.7.0.0.nupkg.sha512", "/home/rodo/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512", "/home/rodo/.nuget/packages/system.reflection.metadata/7.0.0/system.reflection.metadata.7.0.0.nupkg.sha512", "/home/rodo/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "/home/rodo/.nuget/packages/system.text.encodings.web/9.0.10/system.text.encodings.web.9.0.10.nupkg.sha512", "/home/rodo/.nuget/packages/system.text.json/9.0.10/system.text.json.9.0.10.nupkg.sha512", - "/home/rodo/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512", - "/home/rodo/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.20/microsoft.aspnetcore.app.ref.8.0.20.nupkg.sha512", - "/home/rodo/.nuget/packages/microsoft.netcore.app.host.linux-x64/8.0.20/microsoft.netcore.app.host.linux-x64.8.0.20.nupkg.sha512", - "/home/rodo/.nuget/packages/microsoft.netcore.app.ref/8.0.20/microsoft.netcore.app.ref.8.0.20.nupkg.sha512" + "/home/rodo/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file