From b708ad975630fee4e3fa1f872ca72867a05019f6 Mon Sep 17 00:00:00 2001 From: Guille Date: Tue, 30 Jun 2026 01:26:34 -0300 Subject: [PATCH 1/2] V 0.5.1 checkstyle --- .github/workflows/lint.yml | 12 ++ Podcast/AppDbContext.cs | 11 +- Podcast/Controllers/CategoryController.cs | 14 +- Podcast/Controllers/EpisodeController.cs | 24 +-- Podcast/Controllers/PodcastController.cs | 16 +- Podcast/Controllers/ReproductionController.cs | 12 +- Podcast/Controllers/UserController.cs | 33 ++-- Podcast/Models/UserC.cs | 3 +- Podcast/Podcast.csproj | 2 + Podcast/Program.cs | 4 +- Podcast/Repositories/EpisodeRepository.cs | 10 +- Podcast/Repositories/PodcastRepository.cs | 8 +- .../Repositories/ReproductionRepository.cs | 6 +- Podcast/Repositories/UserRepository.cs | 10 +- .../obj/Debug/net9.0/Podcast.AssemblyInfo.cs | 3 +- .../net9.0/Podcast.AssemblyInfoInputs.cache | 2 +- ....GeneratedMSBuildEditorConfig.editorconfig | 7 +- .../Debug/net9.0/Podcast.GlobalUsings.g.cs | 32 ++-- ...Podcast.MvcApplicationPartsAssemblyInfo.cs | 1 - Podcast/obj/Debug/net9.0/Podcast.assets.cache | Bin 67500 -> 68039 bytes .../Podcast.csproj.AssemblyReference.cache | Bin 16540 -> 13282 bytes .../Podcast.csproj.CoreCompileInputs.cache | 2 +- .../Podcast.csproj.FileListAbsolute.txt | 168 +++++++++++++++++ .../obj/Debug/net9.0/rpswa.dswa.cache.json | 2 +- Podcast/obj/Podcast.csproj.nuget.dgspec.json | 20 +- Podcast/obj/Podcast.csproj.nuget.g.props | 12 +- Podcast/obj/project.assets.json | 18 +- Podcast/obj/project.nuget.cache | 178 +++++++++--------- 28 files changed, 403 insertions(+), 207 deletions(-) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..2cc1e35 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,12 @@ +name: lint +on: [push, pull request] +jobs: + dotnet-format: + runs-on: ubuntu-latest + steps: + -uses: actions/checkout@v4 + -uses: actions/settup-dotnet@v4 + with: + dotnet-version: '9.x'; + -run: dotnet format --verify-no-changes + \ No newline at end of file diff --git a/Podcast/AppDbContext.cs b/Podcast/AppDbContext.cs index 9e8bc6e..e34d37a 100644 --- a/Podcast/AppDbContext.cs +++ b/Podcast/AppDbContext.cs @@ -1,12 +1,16 @@ using Microsoft.EntityFrameworkCore; using Podcast.Models; + namespace Podcast { public class AppDbContext : DbContext { - public AppDbContext(DbContextOptions options) : base(options) { } + public AppDbContext(DbContextOptions options) : base(options) + { + } + public DbSet Usuarios { get; set; } - public DbSet Podcasts { get; set; } + public DbSet Podcasts { get; set; } public DbSet Episodios { get; set; } public DbSet Reproducciones { get; set; } public DbSet Categorías { get; set; } @@ -58,6 +62,5 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) modelBuilder.Entity().Property(r => r.ReproductionTime).HasColumnName("fecha_reproduccion"); modelBuilder.Entity().Property(r => r.TimeHeard).HasColumnName("segundos_escuchados"); } - } -} +} \ No newline at end of file diff --git a/Podcast/Controllers/CategoryController.cs b/Podcast/Controllers/CategoryController.cs index 28a3c78..a686816 100644 --- a/Podcast/Controllers/CategoryController.cs +++ b/Podcast/Controllers/CategoryController.cs @@ -12,31 +12,31 @@ public class CategoryController : ControllerBase private readonly string _connectionString; public CategoryController(IConfiguration configuration) { - _connectionString = configuration.GetConnectionString("DefaultConnection")!; + this._connectionString = configuration.GetConnectionString("DefaultConnection")!; } [HttpGet] public async Task GetAll() { - using var conn = new SqlConnection(_connectionString); - var categories = await conn.QueryAsync( + using SqlConnection conn = new SqlConnection(this._connectionString); + IEnumerable categories = await conn.QueryAsync( @"SELECT id_categoria AS IdCategory, nombre AS Name, descripcion AS Description FROM CATEGORIA" ); - return Ok(categories); + return this.Ok(categories); } [HttpPost] public async Task Insert(Category category) { - using var conn = new SqlConnection(_connectionString); - var id = await conn.ExecuteScalarAsync( + using SqlConnection conn = new SqlConnection(this._connectionString); + int id = await conn.ExecuteScalarAsync( @"INSERT INTO CATEGORIA (nombre, descripcion) VALUES (@nombre, @descripcion); SELECT SCOPE_IDENTITY();", new { nombre = category.Name, descripcion = category.Description } ); - return Ok(new { id_category_new = id }); + return this.Ok(new { id_category_new = id }); } } } \ No newline at end of file diff --git a/Podcast/Controllers/EpisodeController.cs b/Podcast/Controllers/EpisodeController.cs index a784a92..84db45f 100644 --- a/Podcast/Controllers/EpisodeController.cs +++ b/Podcast/Controllers/EpisodeController.cs @@ -11,40 +11,40 @@ public class EpisodeController : ControllerBase private readonly EpisodeRepository _repo; public EpisodeController(EpisodeRepository repo) { - _repo = repo; + this._repo = repo; } [HttpGet("podcast/{idPodcast}")] public async Task GetByPodcast(int idPodcast) { - var episodes = await _repo.GetByPodcastAsync(idPodcast); - return Ok(episodes); + IEnumerable episodes = await this._repo.GetByPodcastAsync(idPodcast); + return this.Ok(episodes); } [HttpGet("audio/{idEpisode}")] public async Task GetAudio(int idEpisode) { - var episode = await _repo.GetAudioAsync(idEpisode); - if (episode == null) return NotFound(); - return File(episode.AudioData!, "audio/mpeg"); + Episode? episode = await this._repo.GetAudioAsync(idEpisode); + if (episode == null) return this.NotFound(); + return this.File(episode.AudioData!, "audio/mpeg"); } [HttpGet("search")] public async Task Search( [FromQuery] string? keyword, [FromQuery] string? category) { - var results = await _repo.SearchAsync(keyword, category); - return Ok(results); + IEnumerable results = await this._repo.SearchAsync(keyword, category); + return this.Ok(results); } [HttpPost] public async Task Insert([FromForm] Episode episode, IFormFile? audioFile) { if (audioFile != null) { - using var ms = new MemoryStream(); + using MemoryStream ms = new MemoryStream(); await audioFile.CopyToAsync(ms); episode.AudioData = ms.ToArray(); } - var id = await _repo.InsertAsync(episode); - return Ok(new { id_episode_new = id }); + int id = await this._repo.InsertAsync(episode); + return this.Ok(new { id_episode_new = id }); } } -} \ No newline at end of file +} diff --git a/Podcast/Controllers/PodcastController.cs b/Podcast/Controllers/PodcastController.cs index 40805ab..0f44ead 100644 --- a/Podcast/Controllers/PodcastController.cs +++ b/Podcast/Controllers/PodcastController.cs @@ -11,25 +11,25 @@ public class PodcastController : ControllerBase private readonly PodcastRepository _repo; public PodcastController(PodcastRepository repo) { - _repo = repo; + this._repo = repo; } [HttpGet] public async Task GetAll() { - var podcasts = await _repo.GetAllAsync(); - return Ok(podcasts); + IEnumerable podcasts = await this._repo.GetAllAsync(); + return this.Ok(podcasts); } [HttpGet("user/{idUser}")] public async Task GetByUser(int idUser) { - var podcasts = await _repo.GetByUserAsync(idUser); - return Ok(podcasts); + IEnumerable podcasts = await this._repo.GetByUserAsync(idUser); + return this.Ok(podcasts); } [HttpPost] public async Task Insert(PodcastModel podcast) { - var id = await _repo.InsertAsync(podcast); - return Ok(new { id_podcast_new = id }); + int id = await this._repo.InsertAsync(podcast); + return this.Ok(new { id_podcast_new = id }); } } -} \ No newline at end of file +} diff --git a/Podcast/Controllers/ReproductionController.cs b/Podcast/Controllers/ReproductionController.cs index 31faef4..1cac481 100644 --- a/Podcast/Controllers/ReproductionController.cs +++ b/Podcast/Controllers/ReproductionController.cs @@ -11,19 +11,19 @@ public class ReproductionController : ControllerBase private readonly ReproductionRepository _repo; public ReproductionController(ReproductionRepository repo) { - _repo = repo; + this._repo = repo; } [HttpGet("user/{idUser}")] public async Task GetByUser(int idUser) { - var reproductions = await _repo.GetByUserAsync(idUser); - return Ok(reproductions); + IEnumerable reproductions = await this._repo.GetByUserAsync(idUser); + return this.Ok(reproductions); } [HttpPost] public async Task Insert(Reproduction reproduction) { - var id = await _repo.InsertAsync(reproduction); - return Ok(new { id_reproduction_new = id }); + int id = await this._repo.InsertAsync(reproduction); + return this.Ok(new { id_reproduction_new = id }); } } -} \ No newline at end of file +} diff --git a/Podcast/Controllers/UserController.cs b/Podcast/Controllers/UserController.cs index 4d880c8..24314bf 100644 --- a/Podcast/Controllers/UserController.cs +++ b/Podcast/Controllers/UserController.cs @@ -1,4 +1,6 @@ -using Microsoft.AspNetCore.Mvc; +using System.Collections.Generic; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; using Podcast.Models; using Podcast.Repositories; @@ -9,35 +11,40 @@ namespace Podcast.Controllers public class UserController : ControllerBase { private readonly UserRepository _repo; + public UserController(UserRepository repo) { - _repo = repo; + this._repo = repo; } + [HttpGet] public async Task GetAll() { - var users = await _repo.GetAllAsync(); - return Ok(users); + IEnumerable users = await this._repo.GetAllAsync(); + return this.Ok(users); } + [HttpGet("{id}")] public async Task GetById(int id) { - var user = await _repo.GetByIdAsync(id); - if (user == null) return NotFound(); - return Ok(user); + UserC? user = await this._repo.GetByIdAsync(id); + if (user == null) return this.NotFound(); + return this.Ok(user); } + [HttpPost] public async Task Insert(UserC user) { - var id = await _repo.InsertAsync(user); - return Ok(new { id_user_new = id }); + int id = await this._repo.InsertAsync(user); + return this.Ok(new { id_user_new = id }); } + [HttpPost("login")] public async Task Login(UserC user) { - var result = await _repo.LoginAsync(user.User, user.Password); - if (result == null) return Unauthorized(); - return Ok(result); + UserC? result = await this._repo.LoginAsync(user.User, user.Password); + if (result == null) return this.Unauthorized(); + return this.Ok(result); } } -} \ No newline at end of file +} diff --git a/Podcast/Models/UserC.cs b/Podcast/Models/UserC.cs index af4dc8f..100aec3 100644 --- a/Podcast/Models/UserC.cs +++ b/Podcast/Models/UserC.cs @@ -7,6 +7,5 @@ public class UserC public string User { get; set; } = string.Empty; public string Password { get; set; } = string.Empty; public DateTime Register { get; set; } - } -} \ No newline at end of file +} \ No newline at end of file diff --git a/Podcast/Podcast.csproj b/Podcast/Podcast.csproj index b460bf1..b0eeb6e 100644 --- a/Podcast/Podcast.csproj +++ b/Podcast/Podcast.csproj @@ -4,6 +4,8 @@ net9.0 enable enable + true + true diff --git a/Podcast/Program.cs b/Podcast/Program.cs index 9b9c604..ad1d586 100644 --- a/Podcast/Program.cs +++ b/Podcast/Program.cs @@ -1,7 +1,7 @@ using Microsoft.EntityFrameworkCore; using Podcast; using Podcast.Repositories; -var builder = WebApplication.CreateBuilder(args); +WebApplicationBuilder builder = WebApplication.CreateBuilder(args); builder.Services.AddControllers(); builder.Services.AddEndpointsApiExplorer(); @@ -15,7 +15,7 @@ builder.Services.AddScoped(); builder.Services.AddScoped(); -var app = builder.Build(); +WebApplication app = builder.Build(); if (app.Environment.IsDevelopment()) { diff --git a/Podcast/Repositories/EpisodeRepository.cs b/Podcast/Repositories/EpisodeRepository.cs index 1aa0c3a..007c381 100644 --- a/Podcast/Repositories/EpisodeRepository.cs +++ b/Podcast/Repositories/EpisodeRepository.cs @@ -10,11 +10,11 @@ public class EpisodeRepository public EpisodeRepository(IConfiguration configuration) { - _connectionString = configuration.GetConnectionString("DefaultConnection")!; + this._connectionString = configuration.GetConnectionString("DefaultConnection")!; } public async Task InsertAsync(Episode episode) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.ExecuteScalarAsync( "SP_INSERT_EPISODIO", new @@ -31,7 +31,7 @@ public async Task InsertAsync(Episode episode) } public async Task> GetByPodcastAsync(int idPodcast) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryAsync( "SP_GET_EPISODIOS_BY_PODCAST", new { id_podcast = idPodcast }, @@ -40,7 +40,7 @@ public async Task> GetByPodcastAsync(int idPodcast) } public async Task GetAudioAsync(int idEpisode) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryFirstOrDefaultAsync( "SP_GET_AUDIO", new { id_episodio = idEpisode }, @@ -49,7 +49,7 @@ public async Task> GetByPodcastAsync(int idPodcast) } public async Task> SearchAsync(string? keyword, string? category) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryAsync( "SP_SEARCH_EPISODIOS", new { keyword, categoria = category }, diff --git a/Podcast/Repositories/PodcastRepository.cs b/Podcast/Repositories/PodcastRepository.cs index b299f9a..c96b7b9 100644 --- a/Podcast/Repositories/PodcastRepository.cs +++ b/Podcast/Repositories/PodcastRepository.cs @@ -10,12 +10,12 @@ public class PodcastRepository public PodcastRepository(IConfiguration configuration) { - _connectionString = configuration.GetConnectionString("DefaultConnection")!; + this._connectionString = configuration.GetConnectionString("DefaultConnection")!; } public async Task InsertAsync(PodcastModel podcast) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.ExecuteScalarAsync( "SP_INSERT_PODCAST", new @@ -31,7 +31,7 @@ public async Task InsertAsync(PodcastModel podcast) public async Task> GetAllAsync() { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryAsync( @"SELECT id_podcast AS IdPodcast, id_usuario AS IdUser, titulo AS Title, descripcion AS Description, @@ -42,7 +42,7 @@ FROM PODCAST" public async Task> GetByUserAsync(int idUser) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryAsync( @"SELECT id_podcast AS IdPodcast, id_usuario AS IdUser, titulo AS Title, descripcion AS Description, diff --git a/Podcast/Repositories/ReproductionRepository.cs b/Podcast/Repositories/ReproductionRepository.cs index cf7e8c0..60f7f87 100644 --- a/Podcast/Repositories/ReproductionRepository.cs +++ b/Podcast/Repositories/ReproductionRepository.cs @@ -10,11 +10,11 @@ public class ReproductionRepository public ReproductionRepository(IConfiguration configuration) { - _connectionString = configuration.GetConnectionString("DefaultConnection")!; + this._connectionString = configuration.GetConnectionString("DefaultConnection")!; } public async Task InsertAsync(Reproduction reproduction) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.ExecuteScalarAsync( "SP_INSERT_REPRODUCCION", new @@ -28,7 +28,7 @@ public async Task InsertAsync(Reproduction reproduction) } public async Task> GetByUserAsync(int idUser) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryAsync( @"SELECT id_reproduccion AS IdReproduction, id_episodio AS IdEpisode, id_usuario AS IdUser, fecha_reproduccion AS ReproductionTime, diff --git a/Podcast/Repositories/UserRepository.cs b/Podcast/Repositories/UserRepository.cs index 0723e09..53a4764 100644 --- a/Podcast/Repositories/UserRepository.cs +++ b/Podcast/Repositories/UserRepository.cs @@ -10,11 +10,11 @@ public class UserRepository public UserRepository(IConfiguration configuration) { - _connectionString = configuration.GetConnectionString("DefaultConnection")!; + this._connectionString = configuration.GetConnectionString("DefaultConnection")!; } public async Task InsertAsync(UserC user) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.ExecuteScalarAsync( @"INSERT INTO USUARIO (nombre, usuario, contrasena) VALUES (@nombre, @usuario, @contrasena); @@ -24,7 +24,7 @@ public async Task InsertAsync(UserC user) } public async Task> GetAllAsync() { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryAsync( @"SELECT id_usuario AS IdUser, nombre AS Name, usuario AS User, fecha_registro AS Register @@ -33,7 +33,7 @@ FROM USUARIO" } public async Task GetByIdAsync(int id) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryFirstOrDefaultAsync( @"SELECT id_usuario AS IdUser, nombre AS Name, usuario AS User, fecha_registro AS Register @@ -43,7 +43,7 @@ FROM USUARIO" } public async Task LoginAsync(string usuario, string password) { - using var conn = new SqlConnection(_connectionString); + using SqlConnection conn = new SqlConnection(this._connectionString); return await conn.QueryFirstOrDefaultAsync( @"SELECT id_usuario AS IdUser, nombre AS Name, usuario AS User, fecha_registro AS Register diff --git a/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs b/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs index 7ccdf42..0315256 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs +++ b/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -14,7 +13,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("Podcast")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+66d9896091b7a5304a905eb0e7444c824786cd43")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f5f72eac48739356f110f6ca37cc7b9410908fba")] [assembly: System.Reflection.AssemblyProductAttribute("Podcast")] [assembly: System.Reflection.AssemblyTitleAttribute("Podcast")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache b/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache index 29e8305..51f8064 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache +++ b/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache @@ -1 +1 @@ -53616b2dde217263d6e354564fa1bf60c85cde30afc36180abea715a38011e72 +0b7921f99f9fc14a2dd49cb9692966a5ae3964133752d0bdf8a4fe14630d9808 diff --git a/Podcast/obj/Debug/net9.0/Podcast.GeneratedMSBuildEditorConfig.editorconfig b/Podcast/obj/Debug/net9.0/Podcast.GeneratedMSBuildEditorConfig.editorconfig index ab8d3b1..cf4d5cd 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.GeneratedMSBuildEditorConfig.editorconfig +++ b/Podcast/obj/Debug/net9.0/Podcast.GeneratedMSBuildEditorConfig.editorconfig @@ -15,15 +15,18 @@ build_property.EnforceExtendedAnalyzerRules = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v9.0 +build_property.EntryPointFilePath = build_property.RootNamespace = Podcast build_property.RootNamespace = Podcast -build_property.ProjectDir = C:\Users\guill\source\repos\Podcast\Podcast\ +build_property.ProjectDir = C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 9.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\guill\source\repos\Podcast\Podcast +build_property.MSBuildProjectDirectory = C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast build_property._RazorSourceGeneratorDebug = build_property.EffectiveAnalysisLevelStyle = 9.0 build_property.EnableCodeStyleSeverity = diff --git a/Podcast/obj/Debug/net9.0/Podcast.GlobalUsings.g.cs b/Podcast/obj/Debug/net9.0/Podcast.GlobalUsings.g.cs index 025530a..5e6145d 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.GlobalUsings.g.cs +++ b/Podcast/obj/Debug/net9.0/Podcast.GlobalUsings.g.cs @@ -1,17 +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; +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/Podcast/obj/Debug/net9.0/Podcast.MvcApplicationPartsAssemblyInfo.cs b/Podcast/obj/Debug/net9.0/Podcast.MvcApplicationPartsAssemblyInfo.cs index f9ccf61..7a8df11 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.MvcApplicationPartsAssemblyInfo.cs +++ b/Podcast/obj/Debug/net9.0/Podcast.MvcApplicationPartsAssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/Podcast/obj/Debug/net9.0/Podcast.assets.cache b/Podcast/obj/Debug/net9.0/Podcast.assets.cache index 569053d0c357fd19dc738a031d91f7c6648c5249..8e4936940ac483ebca9d12af246ac1869883d3e9 100644 GIT binary patch delta 8212 zcmai3X;4&G7Peg?(h#{1;-j_U*_Ik%NCbS+NCz7MMcIjp5kVVpK@e#`MRssuUm6ae z7~_^W8Fy41!emTo)vOgWlBt?WDzOHsno4FWH4`gUlc{71nRom7Y%A~F*FW?}f8SZ& zx#!$-&*5tK%-_Sz*z}}?HD1%EO>6$|-ofbLiq*sCjW?{8>c3VG{K?PKc_*j4=h5T9 z?Gc+E+?_VAfDZrR=vxSzPJ=YN)-3ns3a0p@dEYGguh1Y4Ug zyrawKPGRs;NcCO--%VcuW8EImF?|sSI4vORWr>zgs#UJ_#QOIdeV}8;4w9?_b7%6< zT(<-wW*SL0f)$7Cb%pi zrE0_(Bn}3fSHP;-My?%;fE-6_OENr`D99lwp}sDzg$56SJI>Ow6&BAia;+G=6vo>< zpl;3{Qj2&=(FDl#G;;m8u%ly#g$7RW(V?b)a|-~$OQRG~V{7KolJaBXTYb(UcGS8qCeHP^@?bwYeP zxFc#Q;u8cpeH%a^Msi4Hj-vacqu?45NRT|3117iURe4CDMgIUHVsy zU;Jx|lbl9uf#}t|rg#O!G{r$ol_zilkCmuGxgqe#wfJe%CJ0){qgk2;XCwsA)Ws$Y zkux<6E=#ETf*v!~GBb7M?R$#~y@^Q`{#Bv7n0;jtd=<*0ePsh|4&%|@5(ZZ#M60(1 z!SZm-ecFBO;dw|9C&G)643Ikl2dyg-u)I|o#$3?`Nvm85qWpec%!W$yPk+yZj+N*! zPw18Iu^xgVc%-~#Mm&s0@aztfEeY$P*zENapJ?l_z@(YSTSu2u>~5qNqZ2%hOu=%K zx|Hgj?i7BsiX|Knl>%*RJfD{kl{y=Rm88zHpWQT4;Cl;?H;rOweS>E=j&&eJ^T@R* zH;xQe(@4e}#!(nw%`=-u8lx1yv|W{gR4K!+W3W7?O{07b&n`unlu)d3tcRjl zEVFuI8Jd2G#B&D(}PF1;dd8e^hjV4kH<+H1)?BRT`*IjtLsJEP-#|6g5~+p0PgIsKpxFF6(OC zq{SNAA+r)UYq1mV7Fu0eg zf!@lLQdY>M*bd2lBo#3!^nRvV7Vl$H=;cf)lPt;~IR_SpWbjNiIwf!IXDXknl3i>s zVN&SPQu{mYBG-!@tTIOpk2gH^K0@JXwoI zk4~of!`}~xT2y+33U%zDCe?OG(>HpIRFk7Z(>HpQiow3ang(gJRj3V>BKIykZa!6@ z^_5dq+OA8-s~AeC5xI+OL!Z_3Yr*u06-_~Pk<5W_D?02YgQZ?XhrI%lrg{VXr@mTq z{0o8c1`(NFeeBUWTcRGOs_5D2A5t=Qg9rqI@O9GhNT z8v;Fid(4V0aFrDR-4c9s+=@+NGUW*JF#fcu9r0TkZU>w9VDD^Yh_$vfka{Fo@;Y_0 zr3U+8MVPKqCtJ4i(Ce?eRQ}sDV2txr~w3>U&8jIF(3B?z!HN9r`%zO;XIO1cM{1Msn zaxF3qDofVnelzm?f3{@(q2G+p%uVpS0g*W~M?&EVGdefF3DZxC$b?Lntrt(4(Qqz+ zd$$ZA4DKK~s?6;iY(=!m^R@^rr?88I&f8&cn~^a~UeZRw-`*C{dApu$RC!=JZGb%pk<53FAb+Bfklr(0NEJH)J={N2Ns2H_y=SCd(Ajb}=zFf5t#p^gGD4-g^rnCy delta 7359 zcmai3Yfx0l6=qNrn1Q|+2-TwL^$Z(BvkRbS()Wxc-fW$*WC1IKLh(Z!V2bj5-MU~h8uoxeqIvV zqsAUC2S3>e+4Ci#Q$0hCvPS3RG??_#f}6W9V{sJ+b7Tq(x=TVkD|*^JUpS-&@Cutf z-Qjwd6@KgG4*&M>MUASuh);n4tl&YD%~4aLmQmCF=omP!-6{;ykw+a-!#ZD7&KT~6 zE{9z!>4prYRy{LtA~p)PcuS~SmDC4{;JLRR{ZM6p)E@!~XoK*Mxi*6q zl&7-ewwwx*;fk9UvVDC~B?I?3l?uQ2)l*oQ-wKFam_@a7)0q;OUZ_X4s$5}y?P!b2 zRyoHXo}XO_T2W865yrB_N@{VieR`D@BK;+_laa64e-m?@sj>Osk+KZl3Xp_0^}^w# zQ)3>`8c>0nR7rjAEQgBQS_oSm0VRtVXU*qM5{XR>1Ma5-L_D zCU^|!^%BZaVZo`%(4&8YYQWx93w(S~1j!&$gb-}QSRf1=MEbl3+m=Jnc7wygvO^0= zfg;tY*?X)wd0&MVeitaxw5gE>;I2XY4P9!aeGn8RQq#swWw@~r>Vo1p4QHjA3CDPx zN`ceCB88Dg3x|*;BBR-M!A-?ZH(TLoe8_GuB&pW*wy}uA@k^jMTx9Tk9?kKo9DYxN zu?V_GJh!hS@;U2-xjh6XR?^$4aq#;Z_^An_%upK9Y4b2$&h6dc}!mYtwIQO$H9qckwxFbO!j@Di-N~7oB|1Tr#T92j@2;} zOvGj~s5>9*aUykc2zARa9VhbW`)wHf0evb6eJ48#vBc|GG`SgWe)C&s463f2I~E^3T)-1ykQgn$GNk@FeD$f_sXcP2xs) zYn4cK5h3yQ@QH${zjB1g^Eo6Q4L?g}k41>wG8>7ngU?dLS%^H1zAzCIkAmsdG^5QB z`DzY{XE6vomtv*f)KP}b0@98}u=lYS*wg*tNt(>`nXGmCWH51qwVJXIS=r-h%bmIW z;V&8N@k%o3d^gu7Lf+D>5&F~@E^-}tj|Ui(Gtt2Zm5u0oD!~^!{b7Bs%=c3^#OWvJ z&EltQjML9==PZ881`)pu{+ONloWhNTfy(I#0?Q5~+%1rWe%6{83y1lsm3?xS*TmlUZBN0ZKBJjD@UnGBAtb(X@MH;V3=N2dp5gLSdYdEX`zcgO#$- zL#MNXv8tU72-WSvIdz0a%D@W^mewT5tdZFcQ#Cy_&{q45HsW-cnQ%IBKPR2BEEK-j zX9Bl6j)PX&JnZly(Gf51KjhaQpw4hC?0Z*`#6akIXD-Xb0mVGp#k+ z4t>Z`K3E|xh12hts7i_QF+yUeiN2^gU$$Hin^3cQSrma(f4GUBA`Zf@U5!UfJgu}E zV!C9y{+SoAR_b<3ur+Y?U74qmY*2O7MAt*)QUXMD%PhHc6z28Nv%4Q{gqEI0rV=vt zma}UoGRn>j!mnSS_L&$G>Lk@!SU!CYr9A0$gz6Zqfs*?hS#s$Tr3Hv!iiIzao2VNl z#%u$%Y{8^E(aRA_aj@W|%oI!b#p}{Z6ZOzQ9wC~jrNZ`)ei{J3K9!5MsX8w9bSIUE zJXpwJIwMnuy6MbW>UtdJR}8&pWsa~aM%k({v2bcRS4`E3?cRg!sGi{;G^B%HD46;Y z8OLC(<$OIVVaBy`>^gWdRL#t{_q`6f7x6&Sg?{P`VSARC0}&Txl*=ff`(in@=r|^H zxP`NGvJd6Z%y?~b0Z;p%Rh1&LgZf%NxfRH|Awob<-~dnqY^ z?ZQX?PRG46^}1fgk+?DN*Xt&R%uR->5fdXO03MGtG3@?O_dz{HIrxkjZXBh~ zGO-6j`WS+jW>4_GxluSkf8lYkHw@nF77p^kkbym}8qa|QSB;`pM*ZR8Pr~@QrbmMZ zK6BN)sdy&O=G9H9Q9>8}%;VX8aUs0>;XYKR+A`cH1oMFZDxH-#wvoCgkY4Iy^a<{v zURICbhwEP9xOz!^?mVFXs*&y(qOZOL2v+LSf-qhKrMH~VTr*AM0}sYqDCQ=(FLd2) zW}el$4+2K5_dZ4_?Dgg7iwIO-sJ{7w7JxEdcLn@qpLR#^U~(x+rLb%ir?Q3ly)kG0DAJnQ~&?~ diff --git a/Podcast/obj/Debug/net9.0/Podcast.csproj.AssemblyReference.cache b/Podcast/obj/Debug/net9.0/Podcast.csproj.AssemblyReference.cache index 2a2cbdd6d5666a190d9a4057b03cc1389ea2749a..b5c7d4edccdfb5d4dd384306d568aea7b3007852 100644 GIT binary patch delta 1495 zcmbQ!$oME-f{js{fq{Y1$Jr_-v^ce>7)X{T7G>s76w46;N-!|i0|}M}AOlD zJb4ylvS19l`pG;@4Old6W@MIP6m-E*t;LdnMfK$8ERli*7>YNtOHa;XZO5j8ky&-} z0p6LDPq7M3_F|6^ti+;u4K9rzZ2BfI;w%+R$D&DkvLja&E{zG?|0eI(=VFJ3)nr2v zy~(qA%5W&(e1MmkQK*{{!xlpk{mD%Hb8u(_`m1m9H-RRhcI-O03r@qQbD?m9P%Ac_ zhw$lg6{{D_!f+@k0zOD{O#UW@)sGXUHcwt8Q6$ubX&p?bm6Z78ILUr2R&SmtWy&}? zQjQxQnh-tnv8V+mKh?<(RQe|0k*yVK!etxZ=0FUMljW=2Cz zMl9L*oWB0#45LOYIzWkH^8#ab#>rYnh%52rnrflx^?Wt zcDuG(KNtd9O{<9R03l5Rvi)wo#v}Hu17tp};FB0ah{Q)W4hgKAOChyqD2G(jw!L<&D|W_JzjihkvE zQJgZaBq9Q_{H$XHFfs)%-npB!x_Z+l9!`1&x(xfONv>xTE}aUs9-XoBVP`Aw?gC2e z!BhLMTVt1i{otVxH>YX}m(c`SQmG)Z`ZU_ZpPs(${g4jh!|!@NqX6A?02HOE@x3S7 z2vKIXy&upZ(%x?<0CyY!gn}eTNJ(8G$6P;F7GLmpUJpLu4wFN*hkre@#Vk;qc{136 zx4Kp+nNhH7PRiHUjn2bKQisihtrubZTTj248u((*9{! zLCVq92w+dp-H7vVaFtm-2IuRuI}}~Eo#+xQD6%GJWKp#eVeh#SGgHgyfezrkM^94^ zeh_*{A-V5_ggm3SiwY5MRHT1!hf%1C+@+Ya?!cTrO;NQb-_@Lt<{xhOj7*kP%@4UE5andd)PDevcO~@Fi zO0k-S<>X5)P&ZAbqWhGHb|)zkap;(c?l*Z!_oaMhbPO=dO@`>3-H2^cLT}hKMc=G% zxiUajJKfQCBYKxBCthv`%xqKOr)&UoV@o%z!v|+Gu)3ydd>&SYvAmq+MKbHxjf_Tp z-yG}J8T3)U^va^8tm+hDh$-8*T~Y_&Icix?!LZTe^`>$Qtuh=%fPuJ5ISzs|0rGra zR@R_CoEidDUn=U4>U2e{Yn5w_@wD>3gI(@@Ji{(p$HS-WV@gG}KN=peF}<2LI}%DD KBP;$$FyMd9GGU7V diff --git a/Podcast/obj/Debug/net9.0/Podcast.csproj.CoreCompileInputs.cache b/Podcast/obj/Debug/net9.0/Podcast.csproj.CoreCompileInputs.cache index 969e9e8..529c952 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.csproj.CoreCompileInputs.cache +++ b/Podcast/obj/Debug/net9.0/Podcast.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -ba2cbd8548baf6491ae2150c02a8e7ecc302d06537acacde879cf37d11c67a44 +c8d1ea437dfb756fab02054d1429d678b9a64070bd665af0c1da75dd9936b587 diff --git a/Podcast/obj/Debug/net9.0/Podcast.csproj.FileListAbsolute.txt b/Podcast/obj/Debug/net9.0/Podcast.csproj.FileListAbsolute.txt index 9a61d6b..e757641 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.csproj.FileListAbsolute.txt +++ b/Podcast/obj/Debug/net9.0/Podcast.csproj.FileListAbsolute.txt @@ -166,3 +166,171 @@ C:\Users\guill\source\repos\Podcast\Podcast\obj\Debug\net9.0\refint\Podcast.dll C:\Users\guill\source\repos\Podcast\Podcast\obj\Debug\net9.0\Podcast.pdb C:\Users\guill\source\repos\Podcast\Podcast\obj\Debug\net9.0\Podcast.genruntimeconfig.cache C:\Users\guill\source\repos\Podcast\Podcast\obj\Debug\net9.0\ref\Podcast.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\appsettings.Development.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Podcast.staticwebassets.endpoints.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\appsettings.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Podcast.exe +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Podcast.deps.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Podcast.runtimeconfig.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Podcast.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Podcast.pdb +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Azure.Core.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Azure.Identity.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Dapper.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Humanizer.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.AspNetCore.OpenApi.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Build.Locator.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.CodeAnalysis.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Data.SqlClient.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.SqlServer.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.DependencyModel.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.Logging.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.Options.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Extensions.Primitives.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Identity.Client.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Identity.Client.Extensions.Msal.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.IdentityModel.Abstractions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.IdentityModel.Logging.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.OpenApi.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.SqlServer.Server.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Microsoft.Win32.SystemEvents.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Mono.TextTemplating.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.ClientModel.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.CodeDom.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Composition.AttributedModel.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Composition.Convention.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Composition.Hosting.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Composition.Runtime.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Composition.TypedParts.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Configuration.ConfigurationManager.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Drawing.Common.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Memory.Data.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Runtime.Caching.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Security.Permissions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\System.Windows.Extensions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.csproj.AssemblyReference.cache +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.AssemblyInfoInputs.cache +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.AssemblyInfo.cs +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.csproj.CoreCompileInputs.cache +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.MvcApplicationPartsAssemblyInfo.cs +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.MvcApplicationPartsAssemblyInfo.cache +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.sourcelink.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\scopedcss\bundle\Podcast.styles.css +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\swae.build.ex.cache +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.csproj.Up2Date +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\refint\Podcast.dll +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.pdb +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\Podcast.genruntimeconfig.cache +C:\Users\Usuario\source\repos\guillecapo34-commits\Base-de-Datos\Podcast\obj\Debug\net9.0\ref\Podcast.dll diff --git a/Podcast/obj/Debug/net9.0/rpswa.dswa.cache.json b/Podcast/obj/Debug/net9.0/rpswa.dswa.cache.json index 51fd6d6..9cb647e 100644 --- a/Podcast/obj/Debug/net9.0/rpswa.dswa.cache.json +++ b/Podcast/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"QGqkISv4y03SjHbOxlrlavB7ENerxDf/JTStXGdNYzU=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["r0gD\u002B1Vw9tTn6sTyNu0WJ7iCphU8\u002BcMt4IvdcbpxaCc=","ci4eQxao5z18UQ0ctF0A\u002BIt5tQ/C9BVrUJsxHb1sYl0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"dfBe1FwQH/hjoQ53ymivGACLMh2yWw0PSG6veci/wlQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["B0MhfSoCy4\u002BbhpS58cGIy3Tdjspr3L/gIPBCBL1C/XE=","TdectSWu9g44KVjDUQ76SE/hL1Sc\u002BuSatcaGZtF1fRI="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Podcast/obj/Podcast.csproj.nuget.dgspec.json b/Podcast/obj/Podcast.csproj.nuget.dgspec.json index 4c6dbfb..7122835 100644 --- a/Podcast/obj/Podcast.csproj.nuget.dgspec.json +++ b/Podcast/obj/Podcast.csproj.nuget.dgspec.json @@ -1,23 +1,23 @@ { "format": 1, "restore": { - "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\Podcast.csproj": {} + "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\Podcast.csproj": {} }, "projects": { - "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\Podcast.csproj": { + "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\Podcast.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\Podcast.csproj", + "projectUniqueName": "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\Podcast.csproj", "projectName": "Podcast", - "projectPath": "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\Podcast.csproj", - "packagesPath": "C:\\Users\\guill\\.nuget\\packages\\", - "outputPath": "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\obj\\", + "projectPath": "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\Podcast.csproj", + "packagesPath": "C:\\Users\\Usuario\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\guill\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Usuario\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -26,6 +26,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -35,6 +36,7 @@ } }, "warningProperties": { + "allWarningsAsErrors": true, "warnAsError": [ "NU1605" ] @@ -44,7 +46,7 @@ "auditLevel": "low", "auditMode": "direct" }, - "SdkAnalysisLevel": "9.0.300" + "SdkAnalysisLevel": "10.0.300" }, "frameworks": { "net9.0": { @@ -92,7 +94,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.314/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.301/PortableRuntimeIdentifierGraph.json" } } } diff --git a/Podcast/obj/Podcast.csproj.nuget.g.props b/Podcast/obj/Podcast.csproj.nuget.g.props index 291af75..871b3b0 100644 --- a/Podcast/obj/Podcast.csproj.nuget.g.props +++ b/Podcast/obj/Podcast.csproj.nuget.g.props @@ -5,12 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\guill\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\Usuario\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.14.3 + 7.0.0 - + @@ -21,8 +21,8 @@ - C:\Users\guill\.nuget\packages\microsoft.extensions.apidescription.server\9.0.0 - C:\Users\guill\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 - C:\Users\guill\.nuget\packages\microsoft.entityframeworkcore.tools\9.0.4 + C:\Users\Usuario\.nuget\packages\microsoft.extensions.apidescription.server\9.0.0 + C:\Users\Usuario\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 + C:\Users\Usuario\.nuget\packages\microsoft.entityframeworkcore.tools\9.0.4 \ No newline at end of file diff --git a/Podcast/obj/project.assets.json b/Podcast/obj/project.assets.json index be35746..7db327d 100644 --- a/Podcast/obj/project.assets.json +++ b/Podcast/obj/project.assets.json @@ -5212,23 +5212,23 @@ ] }, "packageFolders": { - "C:\\Users\\guill\\.nuget\\packages\\": {}, + "C:\\Users\\Usuario\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\Podcast.csproj", + "projectUniqueName": "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\Podcast.csproj", "projectName": "Podcast", - "projectPath": "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\Podcast.csproj", - "packagesPath": "C:\\Users\\guill\\.nuget\\packages\\", - "outputPath": "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\obj\\", + "projectPath": "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\Podcast.csproj", + "packagesPath": "C:\\Users\\Usuario\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\guill\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Usuario\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -5237,6 +5237,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -5246,6 +5247,7 @@ } }, "warningProperties": { + "allWarningsAsErrors": true, "warnAsError": [ "NU1605" ] @@ -5255,7 +5257,7 @@ "auditLevel": "low", "auditMode": "direct" }, - "SdkAnalysisLevel": "9.0.300" + "SdkAnalysisLevel": "10.0.300" }, "frameworks": { "net9.0": { @@ -5303,7 +5305,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.314/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.301/PortableRuntimeIdentifierGraph.json" } } } diff --git a/Podcast/obj/project.nuget.cache b/Podcast/obj/project.nuget.cache index a537a01..09420a7 100644 --- a/Podcast/obj/project.nuget.cache +++ b/Podcast/obj/project.nuget.cache @@ -1,96 +1,96 @@ { "version": 2, - "dgSpecHash": "aW2BMjkdz5I=", + "dgSpecHash": "xaY46zgmXtw=", "success": true, - "projectFilePath": "C:\\Users\\guill\\source\\repos\\Podcast\\Podcast\\Podcast.csproj", + "projectFilePath": "C:\\Users\\Usuario\\source\\repos\\guillecapo34-commits\\Base-de-Datos\\Podcast\\Podcast.csproj", "expectedPackageFiles": [ - "C:\\Users\\guill\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\dapper\\2.1.72\\dapper.2.1.72.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.aspnetcore.openapi\\9.0.13\\microsoft.aspnetcore.openapi.9.0.13.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\7.0.0\\microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.build.framework\\17.8.3\\microsoft.build.framework.17.8.3.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.build.locator\\1.7.8\\microsoft.build.locator.1.7.8.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.codeanalysis.common\\4.8.0\\microsoft.codeanalysis.common.4.8.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.8.0\\microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.8.0\\microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.8.0\\microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.codeanalysis.workspaces.msbuild\\4.8.0\\microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.6\\microsoft.data.sqlclient.5.1.6.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.4\\microsoft.entityframeworkcore.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.4\\microsoft.entityframeworkcore.abstractions.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.4\\microsoft.entityframeworkcore.analyzers.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.entityframeworkcore.design\\9.0.4\\microsoft.entityframeworkcore.design.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.4\\microsoft.entityframeworkcore.relational.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\9.0.4\\microsoft.entityframeworkcore.sqlserver.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\9.0.4\\microsoft.entityframeworkcore.tools.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.apidescription.server\\9.0.0\\microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.4\\microsoft.extensions.caching.abstractions.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.4\\microsoft.extensions.caching.memory.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.4\\microsoft.extensions.configuration.abstractions.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.4\\microsoft.extensions.dependencyinjection.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.4\\microsoft.extensions.dependencyinjection.abstractions.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.dependencymodel\\9.0.4\\microsoft.extensions.dependencymodel.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.logging\\9.0.4\\microsoft.extensions.logging.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.4\\microsoft.extensions.logging.abstractions.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.options\\9.0.4\\microsoft.extensions.options.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.4\\microsoft.extensions.primitives.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.openapi\\1.6.25\\microsoft.openapi.1.6.25.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\swashbuckle.aspnetcore\\9.0.4\\swashbuckle.aspnetcore.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\9.0.4\\swashbuckle.aspnetcore.swagger.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\9.0.4\\swashbuckle.aspnetcore.swaggergen.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\9.0.4\\swashbuckle.aspnetcore.swaggerui.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.composition\\7.0.0\\system.composition.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.composition.attributedmodel\\7.0.0\\system.composition.attributedmodel.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.composition.convention\\7.0.0\\system.composition.convention.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.composition.hosting\\7.0.0\\system.composition.hosting.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.composition.runtime\\7.0.0\\system.composition.runtime.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.composition.typedparts\\7.0.0\\system.composition.typedparts.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.formats.asn1\\9.0.4\\system.formats.asn1.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.reflection.metadata\\7.0.0\\system.reflection.metadata.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.text.json\\9.0.4\\system.text.json.9.0.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\guill\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + "C:\\Users\\Usuario\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\dapper\\2.1.72\\dapper.2.1.72.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.aspnetcore.openapi\\9.0.13\\microsoft.aspnetcore.openapi.9.0.13.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\7.0.0\\microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.build.framework\\17.8.3\\microsoft.build.framework.17.8.3.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.build.locator\\1.7.8\\microsoft.build.locator.1.7.8.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.codeanalysis.common\\4.8.0\\microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.8.0\\microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.8.0\\microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.8.0\\microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.codeanalysis.workspaces.msbuild\\4.8.0\\microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.6\\microsoft.data.sqlclient.5.1.6.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.4\\microsoft.entityframeworkcore.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.4\\microsoft.entityframeworkcore.abstractions.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.4\\microsoft.entityframeworkcore.analyzers.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.entityframeworkcore.design\\9.0.4\\microsoft.entityframeworkcore.design.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.4\\microsoft.entityframeworkcore.relational.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\9.0.4\\microsoft.entityframeworkcore.sqlserver.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\9.0.4\\microsoft.entityframeworkcore.tools.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.apidescription.server\\9.0.0\\microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.4\\microsoft.extensions.caching.abstractions.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.4\\microsoft.extensions.caching.memory.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.4\\microsoft.extensions.configuration.abstractions.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.4\\microsoft.extensions.dependencyinjection.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.4\\microsoft.extensions.dependencyinjection.abstractions.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.dependencymodel\\9.0.4\\microsoft.extensions.dependencymodel.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.logging\\9.0.4\\microsoft.extensions.logging.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.4\\microsoft.extensions.logging.abstractions.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.options\\9.0.4\\microsoft.extensions.options.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.4\\microsoft.extensions.primitives.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.openapi\\1.6.25\\microsoft.openapi.1.6.25.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\swashbuckle.aspnetcore\\9.0.4\\swashbuckle.aspnetcore.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\9.0.4\\swashbuckle.aspnetcore.swagger.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\9.0.4\\swashbuckle.aspnetcore.swaggergen.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\9.0.4\\swashbuckle.aspnetcore.swaggerui.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.composition\\7.0.0\\system.composition.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.composition.attributedmodel\\7.0.0\\system.composition.attributedmodel.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.composition.convention\\7.0.0\\system.composition.convention.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.composition.hosting\\7.0.0\\system.composition.hosting.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.composition.runtime\\7.0.0\\system.composition.runtime.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.composition.typedparts\\7.0.0\\system.composition.typedparts.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.formats.asn1\\9.0.4\\system.formats.asn1.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.reflection.metadata\\7.0.0\\system.reflection.metadata.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.text.json\\9.0.4\\system.text.json.9.0.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Usuario\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file From 30c363fed4b440fefc485d68f13693199070289d Mon Sep 17 00:00:00 2001 From: Guille Date: Tue, 30 Jun 2026 19:14:20 -0300 Subject: [PATCH 2/2] Fixes on lint.yml --- Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs | 2 +- Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs b/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs index 0315256..8b8bbf1 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs +++ b/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfo.cs @@ -13,7 +13,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("Podcast")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f5f72eac48739356f110f6ca37cc7b9410908fba")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b708ad975630fee4e3fa1f872ca72867a05019f6")] [assembly: System.Reflection.AssemblyProductAttribute("Podcast")] [assembly: System.Reflection.AssemblyTitleAttribute("Podcast")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache b/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache index 51f8064..f1910f6 100644 --- a/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache +++ b/Podcast/obj/Debug/net9.0/Podcast.AssemblyInfoInputs.cache @@ -1 +1 @@ -0b7921f99f9fc14a2dd49cb9692966a5ae3964133752d0bdf8a4fe14630d9808 +6fc4f35342452aecab8e3326c3fcbb7fbf62b37497eb1dd313bf75ad1dafa8ac