diff --git a/dotnetproject/dotnetmicroservicetwo/Controllers/ChannelController.cs b/dotnetproject/dotnetmicroservicetwo/Controllers/ChannelController.cs new file mode 100644 index 0000000..e68abc4 --- /dev/null +++ b/dotnetproject/dotnetmicroservicetwo/Controllers/ChannelController.cs @@ -0,0 +1,60 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using System.Collections.Generic; +using System.Threading.Tasks; +using dotnetmicroservicetwo.Models; + +namespace dotnetmicroservicetwo.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class ChannelController : ControllerBase + { + private readonly ChannelDbContext _context; + + public ChannelController(ChannelDbContext context) + { + _context = context; + } + + [HttpGet] + public async Task>> GetAllChannels() + { + var channels = await _context.Channels.ToListAsync(); + return Ok(channels); + } +[HttpGet("ChannelNames")] +public async Task>> Get() +{ + // Project the ChannelTitle property using Select + var ChannelNames = await _context.Channels + .OrderBy(x => x.ChannelName) + .Select(x => x.ChannelName) + .ToListAsync(); + + return ChannelNames; +} + [HttpPost] + public async Task AddChannel(Channel channel) + { + if (!ModelState.IsValid) + { + return BadRequest(ModelState); // Return detailed validation errors + } + await _context.Channels.AddAsync(channel); + await _context.SaveChangesAsync(); + return Ok(); + } + [HttpDelete("{id}")] + public async Task DeleteChannel(int id) + { + if (id <= 0) + return BadRequest("Not a valid Channel id"); + + var channel = await _context.Channels.FindAsync(id); + _context.Channels.Remove(channel); + await _context.SaveChangesAsync(); + return NoContent(); + } + } +} diff --git a/dotnetproject/dotnetmicroservicetwo/Models/Channel.cs b/dotnetproject/dotnetmicroservicetwo/Models/Channel.cs new file mode 100644 index 0000000..4f74d78 --- /dev/null +++ b/dotnetproject/dotnetmicroservicetwo/Models/Channel.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; + +namespace dotnetmicroservicetwo.Models; +public class Channel +{ + public int ChannelID { get; set; } + + public string? ChannelName { get; set; } + + public string? POCName { get; set; } + + public decimal? CommercialPerAd { get; set; } + + public string? MailID { get; set; } + public string? ContactNumber { get; set; } + +} \ No newline at end of file diff --git a/dotnetproject/dotnetmicroservicetwo/Models/ChannelDbContext.cs b/dotnetproject/dotnetmicroservicetwo/Models/ChannelDbContext.cs new file mode 100644 index 0000000..49a840d --- /dev/null +++ b/dotnetproject/dotnetmicroservicetwo/Models/ChannelDbContext.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore; + +namespace dotnetmicroservicetwo.Models; + +public class ChannelDbContext : DbContext +{ + + public ChannelDbContext(DbContextOptions options) + : base(options) + { + } + public virtual DbSet Channels { get; set; } +} diff --git a/dotnetproject/dotnetmicroservicetwo/Models/Song.cs b/dotnetproject/dotnetmicroservicetwo/Models/Song.cs deleted file mode 100644 index a11f915..0000000 --- a/dotnetproject/dotnetmicroservicetwo/Models/Song.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace dotnetmicroserviceone.Models; -public class Song -{ - public int SongID { get; set; } - public string SongName { get; set; } - public string ReleaseYear { get; set; } - public string SingerName { get; set; } -} \ No newline at end of file diff --git a/dotnetproject/dotnetmicroservicetwo/Models/SongDbContext.cs b/dotnetproject/dotnetmicroservicetwo/Models/SongDbContext.cs deleted file mode 100644 index b93b194..0000000 --- a/dotnetproject/dotnetmicroservicetwo/Models/SongDbContext.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using Microsoft.EntityFrameworkCore; - -namespace dotnetmicroserviceone.Models; - -public class SongDbContext : DbContext -{ - public SongDbContext() - { - } - - public SongDbContext(DbContextOptions options) - : base(options) - { - } - - public virtual DbSet Songs { get; set; } - -} - diff --git a/dotnetproject/dotnetmicroservicetwo/Properties/launchSettings.json b/dotnetproject/dotnetmicroservicetwo/Properties/launchSettings.json index f1e3e50..b981b84 100644 --- a/dotnetproject/dotnetmicroservicetwo/Properties/launchSettings.json +++ b/dotnetproject/dotnetmicroservicetwo/Properties/launchSettings.json @@ -14,7 +14,7 @@ "dotnetRunMessages": true, "launchBrowser": true, "launchUrl": "swagger", - "applicationUrl": "https://localhost:7277;http://localhost:5202", + "applicationUrl": "https://0.0.0.0:8081", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/dotnetproject/dotnetmicroservicetwo/appsettings.json b/dotnetproject/dotnetmicroservicetwo/appsettings.json index 4d56694..af93e37 100644 --- a/dotnetproject/dotnetmicroservicetwo/appsettings.json +++ b/dotnetproject/dotnetmicroservicetwo/appsettings.json @@ -5,5 +5,8 @@ "Microsoft.AspNetCore": "Warning" } }, - "AllowedHosts": "*" + "AllowedHosts": "*", + "ConnectionStrings": { + "MyConnString":"User ID=sa;password=examlyMssql@123;server=localhost;Database=ChannelsDB;trusted_connection=false;Persist Security Info=False;Encrypt=False;" + } } diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Azure.Core.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Azure.Core.dll new file mode 100755 index 0000000..7a2ceec Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Azure.Core.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Azure.Identity.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Azure.Identity.dll new file mode 100755 index 0000000..3508843 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Azure.Identity.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Humanizer.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Humanizer.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..a5b7ff9 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll new file mode 100755 index 0000000..cc62e64 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..96ea845 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100755 index 0000000..44b215b Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll new file mode 100755 index 0000000..1e551fb Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..ca681c4 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll new file mode 100755 index 0000000..d04f876 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..37ace74 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Caching.Abstractions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..be73869 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..561804a Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..3a12ec4 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..11e5f2e Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..2c64257 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..072af1f Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..03edd8f Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..c53f5d2 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..3987d66 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..081abea Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100755 index 0000000..04be9fc Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Identity.Client.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Identity.Client.dll new file mode 100755 index 0000000..5e06934 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Identity.Client.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100755 index 0000000..422bfb9 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 0000000..fa2330d Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 0000000..454079e Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 0000000..da3da51 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 0000000..68bc57c Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 0000000..7f087c7 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.SqlServer.Server.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.SqlServer.Server.dll new file mode 100755 index 0000000..ddeaa86 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.SqlServer.Server.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 0000000..3ab5850 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Mono.TextTemplating.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Mono.TextTemplating.dll new file mode 100755 index 0000000..d5a4b3c Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Mono.TextTemplating.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.CodeDom.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.CodeDom.dll new file mode 100755 index 0000000..3128b6a Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.CodeDom.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100755 index 0000000..14f8ef6 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Drawing.Common.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100755 index 0000000..be6915e Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 0000000..af8fc34 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Memory.Data.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Memory.Data.dll new file mode 100755 index 0000000..6f2a3e0 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Memory.Data.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Runtime.Caching.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Runtime.Caching.dll new file mode 100755 index 0000000..14826eb Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Runtime.Caching.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 0000000..1ba8770 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Security.Permissions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100755 index 0000000..39dd4df Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Text.Encodings.Web.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..13a219a Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Text.Encodings.Web.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Text.Json.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Text.Json.dll new file mode 100755 index 0000000..2078226 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Text.Json.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Windows.Extensions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100755 index 0000000..c3e8844 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.deps.json b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.deps.json index 79fb900..c8f9a71 100644 --- a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.deps.json +++ b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.deps.json @@ -8,13 +8,415 @@ ".NETCoreApp,Version=v6.0": { "dotnetmicroservicetwo/1.0.0": { "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.11", + "Microsoft.EntityFrameworkCore.Design": "7.0.11", + "Microsoft.EntityFrameworkCore.InMemory": "7.0.11", + "Microsoft.EntityFrameworkCore.SqlServer": "7.0.11", + "Microsoft.EntityFrameworkCore.Tools": "7.0.11", "Swashbuckle.AspNetCore": "6.5.0" }, "runtime": { "dotnetmicroservicetwo.dll": {} } }, + "Azure.Core/1.25.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net5.0/Azure.Core.dll": { + "assemblyVersion": "1.25.0.0", + "fileVersion": "1.2500.22.33004" + } + } + }, + "Azure.Identity/1.7.0": { + "dependencies": { + "Azure.Core": "1.25.0", + "Microsoft.Identity.Client": "4.47.2", + "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Text.Json": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.7.0.0", + "fileVersion": "1.700.22.46903" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.20.21406" + } + } + }, + "Microsoft.CSharp/4.5.0": {}, + "Microsoft.Data.SqlClient/5.1.1": { + "dependencies": { + "Azure.Identity": "1.7.0", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.0", + "Microsoft.Identity.Client": "4.47.2", + "Microsoft.IdentityModel.JsonWebTokens": "6.24.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.24.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.0": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Microsoft.EntityFrameworkCore/7.0.11": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "7.0.11", + "Microsoft.EntityFrameworkCore.Analyzers": "7.0.11", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "7.0.11.0", + "fileVersion": "7.0.1123.40906" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.11": { + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "7.0.11.0", + "fileVersion": "7.0.1123.40906" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.11": {}, + "Microsoft.EntityFrameworkCore.Design/7.0.11": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.EntityFrameworkCore.Relational": "7.0.11", + "Microsoft.Extensions.DependencyModel": "7.0.0", + "Mono.TextTemplating": "2.2.1" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "7.0.11.0", + "fileVersion": "7.0.1123.40906" + } + } + }, + "Microsoft.EntityFrameworkCore.InMemory/7.0.11": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.11" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll": { + "assemblyVersion": "7.0.11.0", + "fileVersion": "7.0.1123.40906" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.11": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.11", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "7.0.11.0", + "fileVersion": "7.0.1123.40906" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/7.0.11": { + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.1", + "Microsoft.EntityFrameworkCore.Relational": "7.0.11" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "7.0.11.0", + "fileVersion": "7.0.1123.40906" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.11": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "7.0.11" + } + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Options/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Identity.Client/4.47.2": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.24.0" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.47.2.0", + "fileVersion": "4.47.2.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { + "dependencies": { + "Microsoft.Identity.Client": "4.47.2", + "System.Security.Cryptography.ProtectedData": "6.0.0" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "2.19.3.0", + "fileVersion": "2.19.3.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.24.0": { + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "6.24.0.0", + "fileVersion": "6.24.0.31013" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.24.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.24.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Json": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.24.0.0", + "fileVersion": "6.24.0.31013" + } + } + }, + "Microsoft.IdentityModel.Logging/6.24.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.24.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.24.0.0", + "fileVersion": "6.24.0.31013" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.24.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.24.0", + "Microsoft.IdentityModel.Tokens": "6.24.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.24.0.0", + "fileVersion": "6.24.0.31013" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.24.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.24.0", + "System.IdentityModel.Tokens.Jwt": "6.24.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.24.0.0", + "fileVersion": "6.24.0.31013" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.24.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.24.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.24.0.0", + "fileVersion": "6.24.0.31013" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.OpenApi/1.2.3": { "runtime": { "lib/netstandard2.0/Microsoft.OpenApi.dll": { @@ -23,6 +425,41 @@ } } }, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Mono.TextTemplating/2.2.1": { + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.1.1" + } + } + }, "Swashbuckle.AspNetCore/6.5.0": { "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "6.0.5", @@ -60,6 +497,207 @@ "fileVersion": "6.5.0.0" } } + }, + "System.CodeDom/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Formats.Asn1/5.0.0": {}, + "System.IdentityModel.Tokens.Jwt/6.24.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.24.0", + "Microsoft.IdentityModel.Tokens": "6.24.0" + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.24.0.0", + "fileVersion": "6.24.0.31013" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.1" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "5.0.0" + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/7.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Text.Json/7.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "7.0.0" + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } } } }, @@ -69,6 +707,111 @@ "serviceable": false, "sha512": "" }, + "Azure.Core/1.25.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X8Dd4sAggS84KScWIjEbFAdt2U1KDolQopTPoHVubG2y3CM54f9l6asVrP5Uy384NWXjsspPYaJgz5xHc+KvTA==", + "path": "azure.core/1.25.0", + "hashPath": "azure.core.1.25.0.nupkg.sha512" + }, + "Azure.Identity/1.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eHEiCO/8+MfNc9nH5dVew/+FvxdaGrkRL4OMNwIz0W79+wtJyEoeRlXJ3SrXhoy9XR58geBYKmzMR83VO7bcAw==", + "path": "azure.identity/1.7.0", + "hashPath": "azure.identity.1.7.0.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MW5E9HFvCaV069o8b6YpuRDPBux8s96qDnOJ+4N9QNUCs7c5W3KxwQ+ftpAjbMUlImL+c9WR+l+f5hzjkqhu2g==", + "path": "microsoft.data.sqlclient/5.1.1", + "hashPath": "microsoft.data.sqlclient.5.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jVsElisM5sfBzaaV9kdq2NXZLwIbytetnsOIlJ0cQGgQP4zFNBmkfHBnpwtmKrtBJBEV9+9PVQPVrcCVhDgcIg==", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.0", + "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/7.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r7YGITjQ7v1hYtUXIavjSx+T1itKVPUFAIBN7HaKNjbR8x+gep8w9H3NEchglJOh1woZR4b2MhbSo2YFRZwZDg==", + "path": "microsoft.entityframeworkcore/7.0.11", + "hashPath": "microsoft.entityframeworkcore.7.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IoOnhycZ0/VtLowf0HgB0cujxwksokzkS3/5108AHOcbntHUTqwxtCjG4E4FCly/45G+mxb+4PxBdFZhA49lwQ==", + "path": "microsoft.entityframeworkcore.abstractions/7.0.11", + "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qexum5safSSfijx6P1QSq5bVJPPTM/uf7lQmpL/shkiozEC/0FzqNaVUfFpbNN8zsO1jMFYbeDMF4cxJMlTT9w==", + "path": "microsoft.entityframeworkcore.analyzers/7.0.11", + "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/7.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DaykA+XkNNiznnJq8HWVl4jpBycL9/W8NkonoBz7eIrxfU9Q4zH4iPztlvOkJugYCNPS29frPnju3RY72FoPNQ==", + "path": "microsoft.entityframeworkcore.design/7.0.11", + "hashPath": "microsoft.entityframeworkcore.design.7.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.InMemory/7.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wc0YniYccjbzg8URydo3zbVUR0NLdvpIPU5qO0Vyvtl2Ty7fFmD6/RfbESjdcnszgiGt417OZiwmiiC+w3hmTA==", + "path": "microsoft.entityframeworkcore.inmemory/7.0.11", + "hashPath": "microsoft.entityframeworkcore.inmemory.7.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yHEEyah1XARStV1SJOsdKj8ieoMCZ0MkNuQaLfWONMWmbqwuDohfGQZk/FuzdT4aO/lJrUYiXbBSFv0ACzphEw==", + "path": "microsoft.entityframeworkcore.relational/7.0.11", + "hashPath": "microsoft.entityframeworkcore.relational.7.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/7.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CoOGcdXUItIRLELYtyNhb0b3eN0VKb8/zZbv6h4t1BiTlymbK1KwPul9QR3hde2pc5cu6vf67bCsNUM3Zhn8Yw==", + "path": "microsoft.entityframeworkcore.sqlserver/7.0.11", + "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dhNLVQsMi6E4XEkVNmxbaNkLd06Q0ipwgiBz9k9rSjzaNJQVUA+/N6lsKRWXjFjTPgsaVpos+KN5Iimy6TQ2Yg==", + "path": "microsoft.entityframeworkcore.tools/7.0.11", + "hashPath": "microsoft.entityframeworkcore.tools.7.0.11.nupkg.sha512" + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": { "type": "package", "serviceable": true, @@ -76,6 +819,146 @@ "path": "microsoft.extensions.apidescription.server/6.0.5", "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", + "path": "microsoft.extensions.caching.abstractions/7.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", + "path": "microsoft.extensions.caching.memory/7.0.0", + "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", + "path": "microsoft.extensions.configuration.abstractions/7.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", + "path": "microsoft.extensions.dependencymodel/7.0.0", + "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "path": "microsoft.extensions.logging/7.0.0", + "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", + "path": "microsoft.extensions.options/7.0.0", + "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "path": "microsoft.extensions.primitives/7.0.0", + "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.47.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SPgesZRbXoDxg8Vv7k5Ou0ee7uupVw0E8ZCc4GKw25HANRLz1d5OSr0fvTVQRnEswo5Obk8qD4LOapYB+n5kzQ==", + "path": "microsoft.identity.client/4.47.2", + "hashPath": "microsoft.identity.client.4.47.2.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", + "path": "microsoft.identity.client.extensions.msal/2.19.3", + "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/6.24.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X6aBK56Ot15qKyG7X37KsPnrwah+Ka55NJWPppWVTDi8xWq7CJgeNw2XyaeHgE1o/mW4THwoabZkBbeG2TPBiw==", + "path": "microsoft.identitymodel.abstractions/6.24.0", + "hashPath": "microsoft.identitymodel.abstractions.6.24.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.24.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XDWrkThcxfuWp79AvAtg5f+uRS1BxkIbJnsG/e8VPzOWkYYuDg33emLjp5EWcwXYYIDsHnVZD/00kM/PYFQc/g==", + "path": "microsoft.identitymodel.jsonwebtokens/6.24.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.24.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.24.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qLYWDOowM/zghmYKXw1yfYKlHOdS41i8t4hVXr9bSI90zHqhyhQh9GwVy8pENzs5wHeytU23DymluC9NtgYv7w==", + "path": "microsoft.identitymodel.logging/6.24.0", + "hashPath": "microsoft.identitymodel.logging.6.24.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.24.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+NzKCkvsQ8X1r/Ff74V7CFr9OsdMRaB6DsV+qpH7NNLdYJ8O4qHbmTnNEsjFcDmk/gVNDwhoL2gN5pkPVq0lwQ==", + "path": "microsoft.identitymodel.protocols/6.24.0", + "hashPath": "microsoft.identitymodel.protocols.6.24.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.24.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-a/2RRrc8C9qaw8qdD9hv1ES9YKFgxaqr/SnwMSLbwQZJSUQDd4qx1K4EYgWaQWs73R+VXLyKSxN0f/uE9CsBiQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.24.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.24.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.24.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZPqHi86UYuqJXJ7bLnlEctHKkPKT4lGUFbotoCNiXNCSL02emYlcxzGYsRGWWmbFEcYDMi2dcTLLYNzHqWOTsw==", + "path": "microsoft.identitymodel.tokens/6.24.0", + "hashPath": "microsoft.identitymodel.tokens.6.24.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, "Microsoft.OpenApi/1.2.3": { "type": "package", "serviceable": true, @@ -83,6 +966,27 @@ "path": "microsoft.openapi/1.2.3", "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "path": "mono.texttemplating/2.2.1", + "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" + }, "Swashbuckle.AspNetCore/6.5.0": { "type": "package", "serviceable": true, @@ -110,6 +1014,167 @@ "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" + }, + "System.CodeDom/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "path": "system.codedom/4.4.0", + "hashPath": "system.codedom.4.4.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "path": "system.formats.asn1/5.0.0", + "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.24.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qibsj9MPWq8S/C0FgvmsLfIlHLE7ay0MJIaAmK94ivN3VyDdglqReed5qMvdQhSL0BzK6v0Z1wB/sD88zVu6Jw==", + "path": "system.identitymodel.tokens.jwt/6.24.0", + "hashPath": "system.identitymodel.tokens.jwt.6.24.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "path": "system.text.encodings.web/7.0.0", + "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + }, + "System.Text.Json/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", + "path": "system.text.json/7.0.0", + "hashPath": "system.text.json.7.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.dll index e615c58..6768aba 100644 Binary files a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.dll and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.pdb b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.pdb index 13f7973..76cf945 100644 Binary files a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.pdb and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.pdb differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.runtimeconfig.json b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.runtimeconfig.json index dfb1b77..a9cb483 100644 --- a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.runtimeconfig.json +++ b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/dotnetmicroservicetwo.runtimeconfig.json @@ -13,6 +13,7 @@ ], "configProperties": { "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false } } diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..de065f6 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll new file mode 100755 index 0000000..2b29fea Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100755 index 0000000..9e26473 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100755 index 0000000..085ef89 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100755 index 0000000..18053e4 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100755 index 0000000..44f10cb Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100755 index 0000000..21890c5 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll new file mode 100755 index 0000000..384b002 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 0000000..66af198 Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100755 index 0000000..7c9e87b Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll new file mode 100755 index 0000000..bdca76d Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 0000000..332dbfa Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll new file mode 100755 index 0000000..69f0d1b Binary files /dev/null and b/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.assets.cache b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.assets.cache index a91216d..6cdaca6 100644 Binary files a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.assets.cache and b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.assets.cache differ diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.AssemblyReference.cache b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.AssemblyReference.cache index 7a53677..45962d5 100644 Binary files a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.AssemblyReference.cache and b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.AssemblyReference.cache differ diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.CoreCompileInputs.cache b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.CoreCompileInputs.cache index a7540e3..149ffd0 100644 --- a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.CoreCompileInputs.cache +++ b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -fb94372a10d7a45a4568c5364a7769952d0d0c8e +c7db098b4e47c796678a9cd0d085cab0f9237065 diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.FileListAbsolute.txt b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.FileListAbsolute.txt index d7a6e63..60fadae 100644 --- a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.FileListAbsolute.txt +++ b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.csproj.FileListAbsolute.txt @@ -25,3 +25,59 @@ /home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.pdb /home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.genruntimeconfig.cache /home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/ref/dotnetmicroservicetwo.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Azure.Core.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Azure.Identity.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Humanizer.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Caching.Abstractions.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Identity.Client.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.SqlServer.Server.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/Mono.TextTemplating.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.CodeDom.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Drawing.Common.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Memory.Data.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Runtime.Caching.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Security.Permissions.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Text.Encodings.Web.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Text.Json.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/System.Windows.Extensions.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll +/home/coder/project/workspace/dotnetproject/dotnetmicroservicetwo/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.dll b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.dll index e615c58..6768aba 100644 Binary files a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.dll and b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.genruntimeconfig.cache b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.genruntimeconfig.cache index 40e33f2..7d2ee3d 100644 --- a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.genruntimeconfig.cache +++ b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.genruntimeconfig.cache @@ -1 +1 @@ -cc7f42f5353c7cc03d8bf53e0f908d7746673b65 +c8efcc003928bce1757c4061a93386d8ca7f2252 diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.pdb b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.pdb index 13f7973..76cf945 100644 Binary files a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.pdb and b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/dotnetmicroservicetwo.pdb differ diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/ref/dotnetmicroservicetwo.dll b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/ref/dotnetmicroservicetwo.dll index 2654b02..bef2894 100644 Binary files a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/ref/dotnetmicroservicetwo.dll and b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/ref/dotnetmicroservicetwo.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/refint/dotnetmicroservicetwo.dll b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/refint/dotnetmicroservicetwo.dll index 2654b02..bef2894 100644 Binary files a/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/refint/dotnetmicroservicetwo.dll and b/dotnetproject/dotnetmicroservicetwo/obj/Debug/net6.0/refint/dotnetmicroservicetwo.dll differ diff --git a/dotnetproject/dotnetmicroservicetwo/obj/staticwebassets.pack.sentinel b/dotnetproject/dotnetmicroservicetwo/obj/staticwebassets.pack.sentinel index cd5ac03..20d8666 100644 --- a/dotnetproject/dotnetmicroservicetwo/obj/staticwebassets.pack.sentinel +++ b/dotnetproject/dotnetmicroservicetwo/obj/staticwebassets.pack.sentinel @@ -1 +1,2 @@ 2.0 +2.0