Lito
This commit is contained in:
@@ -9,7 +9,12 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.20" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.10" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.10" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.10">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.6" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -35,13 +35,13 @@ namespace BibliotecaAPI.Controllers
|
||||
{
|
||||
_context.Libros.Add(libro);
|
||||
await _context.SaveChangesAsync();
|
||||
return CreatedAtAction(nameof(GetLibro), new { id = libro.Id }, libro);
|
||||
return CreatedAtAction(nameof(GetLibro), new { id = libro.IdLibro }, libro);
|
||||
}
|
||||
|
||||
[HttpPut("{id}")]
|
||||
public async Task<IActionResult> PutLibro(int id, Libro libro)
|
||||
{
|
||||
if (id != libro.Id) return BadRequest();
|
||||
if (id != libro.IdLibro) return BadRequest();
|
||||
_context.Entry(libro).State = EntityState.Modified;
|
||||
await _context.SaveChangesAsync();
|
||||
return NoContent();
|
||||
@@ -50,7 +50,7 @@ namespace BibliotecaAPI.Controllers
|
||||
[HttpDelete("{id}")]
|
||||
public async Task<IActionResult> DeleteLibro(int id)
|
||||
{
|
||||
var libro = await _context.Libros.FindAsync(id);
|
||||
var libro = await _context.Libros.FindAsync(IdLibro);
|
||||
if (libro == null) return NotFound();
|
||||
_context.Libros.Remove(libro);
|
||||
await _context.SaveChangesAsync();
|
||||
@@ -20,7 +20,7 @@ namespace BibliotecaAPI.Controllers
|
||||
[HttpPost("crear")]
|
||||
public async Task<ActionResult<Prestamo>> CrearPrestamo(Prestamo prestamo)
|
||||
{
|
||||
var libro = await _context.Libros.FindAsync(prestamo.LibroId);
|
||||
var libro = await _context.Libros.FindAsync(prestamo.IdLibro);
|
||||
if (libro == null || libro.CopiasDisponibles <= 0)
|
||||
return BadRequest("Libro no disponible.");
|
||||
|
||||
@@ -65,7 +65,7 @@ namespace BibliotecaAPI.Controllers
|
||||
return await _context.Prestamos
|
||||
.Include(p => p.Libro)
|
||||
.Include(p => p.Usuario)
|
||||
.Where(p => !p.Devuelto && (hoy - p.FechaPrestamo).TotalDays > 15)
|
||||
.Where(p => !p.Devuelto && (hoy - p.FechaPrestamo).TotalDays > 10)
|
||||
.ToListAsync();
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ namespace BibliotecaAPI.Controllers
|
||||
{
|
||||
return await _context.Prestamos
|
||||
.Include(p => p.Libro)
|
||||
.Where(p => p.UsuarioId == usuarioId)
|
||||
.Where(p => p.IdUsuario == usuarioId)
|
||||
.ToListAsync();
|
||||
}
|
||||
}
|
||||
@@ -27,7 +27,7 @@ namespace BibliotecaAPI.Controllers
|
||||
{
|
||||
_context.Usuarios.Add(usuario);
|
||||
await _context.SaveChangesAsync();
|
||||
return CreatedAtAction(nameof(GetUsuarios), new { id = usuario.Id }, usuario);
|
||||
return CreatedAtAction(nameof(GetUsuarios), new { id = usuario.IdUsuario }, usuario);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using BibliotecaAPI.Models;
|
||||
|
||||
namespace BibliotecaAPI.Data
|
||||
{
|
||||
public class BibliotecaContext : DbContext
|
||||
{
|
||||
public BibliotecaContext(DbContextOptions<BibliotecaContext> options) : base(options) { }
|
||||
|
||||
public DbSet<Libro> Libros { get; set; }
|
||||
public DbSet<Usuario> Usuarios { get; set; }
|
||||
public DbSet<Prestamo> Prestamos { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
@@ -1,14 +0,0 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using BibliotecaAPI.Models;
|
||||
|
||||
namespace BibliotecaAPI.Data
|
||||
{
|
||||
public class BibliotecaContext : DbContext
|
||||
{
|
||||
public BibliotecaContext(DbContextOptions<BibliotecaContext> options) : base(options) { }
|
||||
|
||||
public DbSet<Libro> Libros { get; set; }
|
||||
public DbSet<Usuario> Usuarios { get; set; }
|
||||
public DbSet<Prestamo> Prestamos { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -5,12 +5,14 @@ namespace BibliotecaAPI.Models
|
||||
public class Libro
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
public int IdLibro { 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 Año { get; set; }
|
||||
public int Ano { get; set; }
|
||||
public string Categoria { get; set; } = string.Empty;
|
||||
public int CopiasDisponibles { get; set; }
|
||||
|
||||
public ICollection<Prestamo> Prestamos {get;set;}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,6 +6,7 @@ namespace BibliotecaAPI.Models
|
||||
{
|
||||
public class Prestamo
|
||||
{
|
||||
/*
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
@@ -19,6 +20,14 @@ namespace BibliotecaAPI.Models
|
||||
|
||||
public DateTime FechaPrestamo { get; set; } = DateTime.Now;
|
||||
public DateTime? FechaDevolucion { get; set; }
|
||||
public bool Devuelto { get; set; } = false;
|
||||
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;}
|
||||
|
||||
public Usuario Usuario { get; set; }
|
||||
public Libro Libro { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,8 +5,11 @@ namespace BibliotecaAPI.Models
|
||||
public class Usuario
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
public int IdUsuario { get; set; }
|
||||
public string Nombre { get; set; } = string.Empty;
|
||||
public string Email { get; set; } = string.Empty;
|
||||
public string Apellido { get; set; } = string.Empty;
|
||||
public DateTime FechaRegistro { get; set; }
|
||||
|
||||
public ICollection<Prestamo> Prestamos {get;set;}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,5 +4,8 @@
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"ConnectionStrings": {
|
||||
"DefaultConnection": "Data Source=Data/database.db"
|
||||
}
|
||||
}
|
||||
@@ -52,9 +52,19 @@
|
||||
"target": "Package",
|
||||
"version": "[9.0.10, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Sqlite": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.10, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[9.0.10, )"
|
||||
},
|
||||
"Swashbuckle.AspNetCore": {
|
||||
"target": "Package",
|
||||
"version": "[6.6.2, )"
|
||||
"version": "[9.0.6, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
|
||||
@@ -13,11 +13,15 @@
|
||||
<SourceRoot Include="/home/rodo/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server/6.0.5/build/Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server/6.0.5/build/Microsoft.Extensions.ApiDescription.Server.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore/6.6.2/build/Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore/6.6.2/build/Swashbuckle.AspNetCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server/8.0.0/build/Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server/8.0.0/build/Microsoft.Extensions.ApiDescription.Server.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore/9.0.6/build/Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore/9.0.6/build/Swashbuckle.AspNetCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore/9.0.10/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore/9.0.10/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.codeanalysis.analyzers/3.3.4/buildTransitive/Microsoft.CodeAnalysis.Analyzers.props" Condition="Exists('$(NuGetPackageRoot)microsoft.codeanalysis.analyzers/3.3.4/buildTransitive/Microsoft.CodeAnalysis.Analyzers.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design/9.0.10/build/net8.0/Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design/9.0.10/build/net8.0/Microsoft.EntityFrameworkCore.Design.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">/home/rodo/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5</PkgMicrosoft_Extensions_ApiDescription_Server>
|
||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">/home/rodo/.nuget/packages/microsoft.extensions.apidescription.server/8.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
|
||||
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/rodo/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4</PkgMicrosoft_CodeAnalysis_Analyzers>
|
||||
<PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">/home/rodo/.nuget/packages/microsoft.entityframeworkcore.tools/9.0.10</PkgMicrosoft_EntityFrameworkCore_Tools>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,8 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server/6.0.5/build/Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server/6.0.5/build/Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)system.text.json/9.0.10/buildTransitive/net8.0/System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json/9.0.10/buildTransitive/net8.0/System.Text.Json.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server/8.0.0/build/Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server/8.0.0/build/Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.10/buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.10/buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)mono.texttemplating/3.0.0/buildTransitive/Mono.TextTemplating.targets" Condition="Exists('$(NuGetPackageRoot)mono.texttemplating/3.0.0/buildTransitive/Mono.TextTemplating.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/9.0.10/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/9.0.10/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.10/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.10/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.codeanalysis.analyzers/3.3.4/buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codeanalysis.analyzers/3.3.4/buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -13,7 +13,7 @@ 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+7b037ee7692fed1179b172f2163d0f866cb8e57d")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+aac701d2ce14e6dc4f47942bd1b5ad80ffe879b4")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("BibliotecaDigitalApi")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("BibliotecaDigitalApi")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
fe9b27aa300c3789229c7b6b1cb8aa68e1db82d30fd78e439c90942c46816c80
|
||||
031513bc7be22e3aa08fb5104e409f207679c41938f82cc157b3c71357bf6a48
|
||||
|
||||
@@ -1,19 +1,29 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFramework = net8.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 = C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi\
|
||||
build_property.ProjectDir = /home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = C:\Users\CHIOH\source\repos\BibliotecaDigital\BibliotecaDigitalApi
|
||||
build_property.MSBuildProjectDirectory = /home/rodo/Documentos/dotnet/BibliotecaDigital/BibliotecaDigitalApi
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
90de409f17a71d4aa851b14ec70bdf8c6d47c7ea53281b0480308c94120b5983
|
||||
16c997d1d750eb12e6ea72fe7572ffa8bbf63905112c48f479d53597aed94758
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,28 +1,66 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "Q39C4rBKNak=",
|
||||
"dgSpecHash": "gl2vyi0qBCs=",
|
||||
"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.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",
|
||||
"/home/rodo/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4/microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.codeanalysis.common/4.8.0/microsoft.codeanalysis.common.4.8.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.codeanalysis.csharp/4.8.0/microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.8.0/microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.8.0/microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.codeanalysis.workspaces.msbuild/4.8.0/microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.data.sqlite.core/9.0.10/microsoft.data.sqlite.core.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.entityframeworkcore/9.0.10/microsoft.entityframeworkcore.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.10/microsoft.entityframeworkcore.abstractions.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.10/microsoft.entityframeworkcore.analyzers.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5/microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.entityframeworkcore.design/9.0.10/microsoft.entityframeworkcore.design.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.10/microsoft.entityframeworkcore.relational.9.0.10.nupkg.sha512",
|
||||
"/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.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",
|
||||
"/home/rodo/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.10/microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.10/microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.extensions.dependencymodel/9.0.10/microsoft.extensions.dependencymodel.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.extensions.logging/9.0.10/microsoft.extensions.logging.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.10/microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.extensions.options/9.0.10/microsoft.extensions.options.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.extensions.primitives/9.0.10/microsoft.extensions.primitives.9.0.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.openapi/1.6.14/microsoft.openapi.1.6.14.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/swashbuckle.aspnetcore/6.6.2/swashbuckle.aspnetcore.6.6.2.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/swashbuckle.aspnetcore.swagger/6.6.2/swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.6.2/swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.6.2/swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/microsoft.openapi/1.6.25/microsoft.openapi.1.6.25.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.10/sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/sqlitepclraw.core/2.1.10/sqlitepclraw.core.2.1.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.10/sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.10/sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/swashbuckle.aspnetcore/9.0.6/swashbuckle.aspnetcore.9.0.6.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/swashbuckle.aspnetcore.swagger/9.0.6/swashbuckle.aspnetcore.swagger.9.0.6.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/swashbuckle.aspnetcore.swaggergen/9.0.6/swashbuckle.aspnetcore.swaggergen.9.0.6.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/swashbuckle.aspnetcore.swaggerui/9.0.6/swashbuckle.aspnetcore.swaggerui.9.0.6.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/system.codedom/6.0.0/system.codedom.6.0.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/system.collections.immutable/7.0.0/system.collections.immutable.7.0.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/system.composition/7.0.0/system.composition.7.0.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/system.composition.attributedmodel/7.0.0/system.composition.attributedmodel.7.0.0.nupkg.sha512",
|
||||
"/home/rodo/.nuget/packages/system.composition.convention/7.0.0/system.composition.convention.7.0.0.nupkg.sha512",
|
||||
"/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.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"
|
||||
|
||||
Reference in New Issue
Block a user