diff --git a/Base/XBaseIdentityHttpProvider.cs b/Base/XBaseIdentityHttpProvider.cs new file mode 100644 index 0000000..c6ffaf9 --- /dev/null +++ b/Base/XBaseIdentityHttpProvider.cs @@ -0,0 +1,653 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging; +using RestSharp; +using RestSharp.Authenticators; +using xCommons.Constants; +using xCommons.Extensions; +using xCommons.Providers; +using xExceptions.Constants; +using xHttpService.Constants; +using xIdentityModels.Constants; +using xIdentityModels.Extensions; +using xIdentityModels.Models; +using xIdentityService.Constants; +using xIdentityService.Interfaces; +using xIdentityService.Models; + +namespace xAiService.Base +{ + public interface IXBaseIdentityHttpProvider + { + string BaseUrl { get; } + ILogger Logger { get; } + string XPoweredValue { get; } + int DefaultClientTimeout { get; } + XValidationProvider ValidationProvider { get; } + + HttpClient GetHttpClient(); + RestClient GetRestClient(XTokenResponse tokens = null); + RestRequest GetRestRequet( + Enum endpoint, + bool addXPoweredValue = true, + IDictionary @params = null, + IDictionary headers = null, + IDictionary queryStrings = null + ); + + Task RunRestRequest( + RestClient client, + RestRequest request, + XHttpMethod method, + bool supportRefreshingTokens = true, + CancellationToken cancellationToken = default + ); + + Task> RunRestRequestByResponse( + RestClient client, + RestRequest request, + XHttpMethod method, + bool supportRefreshingTokens = true, + CancellationToken cancellationToken = default + ); + + string GetUserSelectByParam( + XActionRequest model, + bool forceNotNull = true, + ICollection excludes = null + ); + } + + public abstract class XBaseIdentityHttpProvider : IXBaseIdentityHttpProvider + { + public string BaseUrl { get; } + public ILogger Logger { get; } + public string XPoweredValue { get; } + public int DefaultClientTimeout { get; } + public XValidationProvider ValidationProvider { get; } + + private readonly IXTokenProvider tokenProvider; + private readonly IXIdentityProvider identityProvider; + + public XBaseIdentityHttpProvider( + string baseUrl, + ILogger logger, + string poweredValue, + int defaultClientTimeout, + IXTokenProvider tokenProvider, + IXIdentityProvider identityProvider, + XValidationProvider validationProvider + ) + { + // + Logger = logger; + BaseUrl = baseUrl; + XPoweredValue = poweredValue; + this.tokenProvider = tokenProvider; + ValidationProvider = validationProvider; + this.identityProvider = identityProvider; + DefaultClientTimeout = defaultClientTimeout; + } + + // + #region Tools ... + /// + /// Get an Instance of Http Client + /// + /// + public HttpClient GetHttpClient() + { + // + HttpClient httpClient = null; + + // + // httpClient = new HttpClient (); + var httpClientHandler = new HttpClientHandler() + { + ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => + { + // + Logger.LogInformation( + $"XSSL Handler: {Environment.NewLine}, sender: {sender}, {Environment.NewLine} cert: {cert}, {Environment.NewLine} chain: {chain}, {Environment.NewLine} sslPolicyErrors: {sslPolicyErrors}" + ); + + // + return true; + }, + ClientCertificateOptions = ClientCertificateOption.Manual, + }; + httpClient = new HttpClient(httpClientHandler); + + // + // Set Timeout ... + // TODO: Fix this ... + // httpClient.Timeout = TimeSpan + // .FromSeconds (identityConfiguration.DefaultClientTimeout); + + // + return httpClient; + } + + /// + /// Get an Instance of RestClient + /// + /// + public RestClient GetRestClient(XTokenResponse tokens = null) + { + // + var client = new RestClient(BaseUrl); + + // + // Set Authenticator ... + if (!tokens.IsNull() && + !tokens.AccessToken.IsNullOrEmpty()) + { + client.Authenticator = new JwtAuthenticator(tokens.AccessToken); + } + + // + // Refresh Token ... + if (!tokens.IsNull() && + !tokens.RefreshToken.IsNullOrEmpty()) + { + client.AddDefaultHeader(XAuthorization.RefreshToken, tokens.RefreshToken); + } + + // + // ExpiresAt ... + if (!tokens.IsNull() && + tokens.ExpiresAt > 0) + { + client.AddDefaultHeader(XAuthorization.ExpiresAt, tokens.ExpiresAt.AsHttpParamString()); + } + + // + // Set Default Timeout ... + client.Timeout = DefaultClientTimeout; + + // + // SSL Validation Handler ... + client.RemoteCertificateValidationCallback = (sender, cert, chain, sslPolicyErrors) => + { + // + Logger.LogInformation( + $"XSSL Handler: {Environment.NewLine}, sender: {sender}, {Environment.NewLine} cert: {cert}, {Environment.NewLine} chain: {chain}, {Environment.NewLine} sslPolicyErrors: {sslPolicyErrors}" + ); + + // + return true; + }; + + // + return client; + } + + /// + /// Get an Instance of RestRequest + /// + public RestRequest GetRestRequet( + Enum endpoint, + bool addXPoweredValue = true, + IDictionary @params = null, + IDictionary headers = null, + IDictionary queryStrings = null + ) + { + // + var url = endpoint.GetStringValue(); + + // + // Add Route Payloads ... + if (!@params.IsNull() && @params.Count > 0) + { + // + var enumerator = @params.GetEnumerator(); + while (enumerator.MoveNext()) + { + // + var item = enumerator.Current; + + // + url = url.Replace(item.Key, item.Value.ToUrlEncoded()); + } + } + + // + // Add Query Strings ... + if (!queryStrings.IsNull() && queryStrings.Count > 0) + { + // + url = $"{url}?"; + var enumerator = queryStrings.GetEnumerator(); + while (enumerator.MoveNext()) + { + // + var item = enumerator.Current; + + // + url += $"{item.Key}={item.Value.ToUrlEncoded()}&"; + } + + // + // remove lates & ... + if (url.EndsWith("&")) + { + url = url.Substring(0, url.Length - 1); + } + } + + // + // Create request ... + var request = new RestRequest(url, DataFormat.Json); + + // + if (addXPoweredValue) + { + request.AddHeader(XAuthorization.XPoweredBy, XPoweredValue); + } + + // + // Add Headers to request ... + if (!headers.IsNull() && headers.Count > 0) + { + // + var enumerator = headers.GetEnumerator(); + while (enumerator.MoveNext()) + { + // + var item = enumerator.Current; + request.AddHeader(item.Key, item.Value); + } + } + + // + return request; + } + + /// + /// Handle Call Specific Request and retrieve Response + /// + /// + /// + /// + /// + /// + public async Task RunRestRequest( + RestClient client, + RestRequest request, + XHttpMethod method, + bool supportRefreshingTokens = true, + CancellationToken cancellationToken = default + ) + { + // + var response = await Task.Run(async () => + { + // + IRestResponse resp = null; + + // + // Call Endpoint Service using Specified Method ... + switch (method) + { + // + // Get ... + case XHttpMethod.GET: + resp = client.Get(request); + break; + + // + // Put ... + case XHttpMethod.PUT: + resp = client.Put(request); + break; + + // + // Post ... + case XHttpMethod.POST: + resp = client.Post(request); + break; + + // + // Delete ... + case XHttpMethod.DELETE: + resp = client.Delete(request); + break; + } + + // + if (!resp.IsSuccessful) + { + // + // Log Exception ... + Logger.LogError($"Error: {resp.ErrorMessage}"); + Logger.LogError($"Exception: {resp.ErrorException.ToJSON()}"); + if (!resp.ErrorMessage.IsNullOrEmpty() && + resp.ErrorMessage.Contains("timed out")) + { + XException.Timeout.Throw(); + } + + // + // TODO: Check UnAuthorized Status here for + // Refresh Tokens or Issue Correct Exception ... + if (supportRefreshingTokens && + resp.StatusCode == System.Net.HttpStatusCode.Unauthorized) + { + // + var isRefreshed = request.Parameters.Any(rp => + rp.Name == XParam.XIsRefreshed.GetStringValue() && + rp.Value.ToString().ToNormalString() == true.ToJSON()); + + // + Logger.LogInformation($"isRefreshed: {isRefreshed}"); + + // + // Get Access Token ... + XTokenResponse tokens = null; + var accessToken = request.Parameters.FirstOrDefault(rp => + rp.Name.ToNormalString() == XAuthorization.Header.ToNormalString()).Value.ToString(); + if (!accessToken.IsNullOrEmpty()) + { + // + accessToken = accessToken.Replace(XAuthorization.TokenIdentifier, ""); + + // + if (!accessToken.IsNullOrEmpty()) + { + tokens = await tokenProvider.RetrieveToken(accessToken); + } + } + + // + // Refresh Token and then re do request ... + if (!isRefreshed && + !accessToken.IsNullOrEmpty() && + !tokens.IsNull() && + tokens.IsRefreshable()) + { + // + request.AddHeader(XParam.XIsRefreshed.GetStringValue(), true.ToJSON()); + + // + // Refreshe Tokens ... + var refreshedTokens = await identityProvider + .RefreshTokens(tokens); + + // + // Renew Rest Client with Refreshed Tokens ... + var timeout = client.Timeout; + client = GetRestClient(refreshedTokens); + client.Timeout = Timeout.Infinite; + + // + // Do Request Again using renew Client ... + return await RunRestRequest( + client: client, + request: request, + method: method); + } + } + + // + var ex = resp.Content.ToXError(); + if (!ex.IsNull()) + { + throw ex.ToException(); + } + + // + // UnAuthorized ... + if (resp.StatusCode == System.Net.HttpStatusCode.Unauthorized) + { + XException.NotAuthorized.Throw(); + } + + // + // NotFound ... + if (resp.StatusCode == System.Net.HttpStatusCode.NotFound) + { + XException.NotFound.Throw(); + } + + // + XException.ActionFailed.Throw(); + } + + // + var result = resp.Content.FromJSON(); + return result; + }, + cancellationToken: cancellationToken); + + // + return response; + } + public async Task> RunRestRequestByResponse( + RestClient client, + RestRequest request, + XHttpMethod method, + bool supportRefreshingTokens = true, + CancellationToken cancellationToken = default + ) + { + // + var response = await Task.Run(async () => + { + // + IRestResponse resp = null; + + // + // Call Endpoint Service using Specified Method ... + switch (method) + { + // + // Get ... + case XHttpMethod.GET: + resp = client.Get(request); + break; + + // + // Put ... + case XHttpMethod.PUT: + resp = client.Put(request); + break; + + // + // Post ... + case XHttpMethod.POST: + resp = client.Post(request); + break; + + // + // Delete ... + case XHttpMethod.DELETE: + resp = client.Delete(request); + break; + } + + // + if (!resp.IsSuccessful) + { + // + // Log Exception ... + Logger.LogError($"Error: {resp.ErrorMessage}"); + Logger.LogError($"Exception: {resp.ErrorException.ToJSON()}"); + if (!resp.ErrorMessage.IsNullOrEmpty() && + resp.ErrorMessage.Contains("timed out")) + { + XException.Timeout.Throw(); + } + + // + // TODO: Check UnAuthorized Status here for + // Refresh Tokens or Issue Correct Exception ... + if (supportRefreshingTokens && + resp.StatusCode == System.Net.HttpStatusCode.Unauthorized) + { + // + var isRefreshed = request.Parameters.Any(rp => + rp.Name == XParam.XIsRefreshed.GetStringValue() && + rp.Value.ToString().ToNormalString() == true.ToJSON()); + + // + Logger.LogInformation($"isRefreshed: {isRefreshed}"); + + // + // Get Access Token ... + XTokenResponse tokens = null; + var accessToken = request.Parameters.FirstOrDefault(rp => + rp.Name.ToNormalString() == XAuthorization.Header.ToNormalString()).Value.ToString(); + if (!accessToken.IsNullOrEmpty()) + { + // + accessToken = accessToken.Replace(XAuthorization.TokenIdentifier, ""); + + // + if (!accessToken.IsNullOrEmpty()) + { + tokens = await tokenProvider.RetrieveToken(accessToken); + } + } + + // + // Refresh Token and then re do request ... + if (!isRefreshed && + !accessToken.IsNullOrEmpty() && + !tokens.IsNull() && + tokens.IsRefreshable()) + { + // + request.AddHeader(XParam.XIsRefreshed.GetStringValue(), true.ToJSON()); + + // + // Refreshe Tokens ... + var refreshedTokens = await identityProvider + .RefreshTokens(tokens); + + // + // Renew Rest Client with Refreshed Tokens ... + var timeout = client.Timeout; + client = GetRestClient(refreshedTokens); + client.Timeout = Timeout.Infinite; + + // + // Do Request Again using renew Client ... + return await RunRestRequestByResponse( + client: client, + request: request, + method: method + ); + } + } + + // + var ex = resp.Content.ToXError(); + if (!ex.IsNull()) + { + throw ex.ToException(); + } + + // + // UnAuthorized ... + if (resp.StatusCode == System.Net.HttpStatusCode.Unauthorized) + { + XException.NotAuthorized.Throw(); + } + + // + // NotFound ... + if (resp.StatusCode == System.Net.HttpStatusCode.NotFound) + { + XException.NotFound.Throw(); + } + + // + XException.ActionFailed.Throw(); + } + + // + var result = new XBaseRestResponse + { + Response = resp, + Model = resp.Content.FromJSON() + }; + + // + return result; + }, + cancellationToken: cancellationToken); + + // + return response; + } + + /// + /// Get User SelectBy Param + /// + /// + /// + /// + /// + public string GetUserSelectByParam( + XActionRequest model, + bool forceNotNull = true, + ICollection excludes = null + ) + { + // + // Validate Args ... + ValidationProvider.NotNull(model); + + // + var id = model.UserId; + var userName = model.UserName; + var email = model.Email; + var phoneNumber = model.MobileNumber; + + // + if (excludes != null) + { + // + if (excludes.Contains(XUserSelectBy.ID)) + { + id = null; + } + if (excludes.Contains(XUserSelectBy.Email)) + { + email = null; + } + if (excludes.Contains(XUserSelectBy.MobileNumber)) + { + phoneNumber = null; + } + if (excludes.Contains(XUserSelectBy.Username)) + { + userName = null; + } + } + + var selectByParam = + id.IsNullOrEmpty() ? + userName.IsNullOrEmpty() ? + email.IsNullOrEmpty() ? + phoneNumber.IsNullOrEmpty() ? null : phoneNumber : email : userName : id; + + // + // Check result ... + if (forceNotNull && + selectByParam.IsNullOrEmpty()) + { + XException.InvalidData.Throw(); + } + + // + return selectByParam; + } + #endregion + } +} \ No newline at end of file diff --git a/Configurations/XAIServiceConfiguration.cs b/Configurations/XAIServiceConfiguration.cs index 6dadfc1..b739ef0 100644 --- a/Configurations/XAIServiceConfiguration.cs +++ b/Configurations/XAIServiceConfiguration.cs @@ -1,20 +1,9 @@ -using System.Collections.Generic; -using xAiService.Models; - namespace xAiService.Configurations { public partial class XAIServiceConfiguration { - /// - /// List of Text Generator Models ... - /// - /// - public Dictionary TextGenerators { get; set; } - - /// - /// List of Image Generator Models ... - /// - /// - public Dictionary ImageGenerators { get; set; } + public string Url { get; set; } + public string XPoweredValue { get; set; } + public int DefaultClientTimeout { get; set; } = 360; } } \ No newline at end of file diff --git a/Constants/XAiApiConstants.cs b/Constants/XAiApiConstants.cs new file mode 100644 index 0000000..4c02778 --- /dev/null +++ b/Constants/XAiApiConstants.cs @@ -0,0 +1,7 @@ +namespace xAiService.Constants +{ + public struct XAiApiQueryParams + { + public const string Prompt = "prompt"; + } +} \ No newline at end of file diff --git a/Constants/XAiApiEndpoint.cs b/Constants/XAiApiEndpoint.cs new file mode 100644 index 0000000..c392813 --- /dev/null +++ b/Constants/XAiApiEndpoint.cs @@ -0,0 +1,10 @@ +using xExceptions.Attributes; + +namespace xAiService.Constants +{ + public enum XAiApiEndpoint + { + [StringValue("AskAI")] + Ask, + } +} \ No newline at end of file diff --git a/Controllers/XAiServiceControllerBase.cs b/Controllers/XAiServiceControllerBase.cs new file mode 100644 index 0000000..97737aa --- /dev/null +++ b/Controllers/XAiServiceControllerBase.cs @@ -0,0 +1,68 @@ +using System; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using xAiService.Interfaces; +using xCommons.Configurations; +using xCommons.Providers; +using xIdentityService.Controllers; +using xIdentityService.Interfaces; + +namespace xAiService.Controllers +{ + /// + /// a Controller base Class which implement based Actions to Provides AI Service Access ... + /// + public abstract class XAiServiceControllerBase : XIBaseProviderController, IXAiServiceControllerBase + { + private readonly IXAiService aiService; + + protected XAiServiceControllerBase( + ILogger logger, + IXAiService aiService, + XAppConfiguration appConfiguration, + IXIdentityProvider identityProvider, + XValidationProvider validationProvider + ) : base( + logger, + appConfiguration, + identityProvider, + validationProvider + ) + { + this.aiService = aiService; + } + + // + #region Text Actions ... + [HttpGet("Ask")] + public virtual async Task> Ask( + [FromQuery] string prompt, + CancellationToken cancellationToken = default + ) + { + // + // Do ... + try + { + // + var result = await aiService + .GetTextResponseAsync( + prompt: prompt, + cancellationToken: cancellationToken + ); + + // + return Ok(result); + } + catch (Exception ex) + { + // + var result = GetExceptionActionResult(ex); + return result; + } + } + #endregion + } +} \ No newline at end of file diff --git a/DI/XDIHelperExtension.cs b/DI/XDIHelperExtension.cs index a3a3a1d..d2ea949 100644 --- a/DI/XDIHelperExtension.cs +++ b/DI/XDIHelperExtension.cs @@ -4,6 +4,8 @@ using Microsoft.Extensions.DependencyInjection; using xAiService.Configurations; using xAiService.Constants; using xAiService.Extensions; +using xAiService.Interfaces; +using xAiService.Services; using xCommons.Extensions; using xExceptions.Constants; @@ -45,30 +47,44 @@ namespace xAiService.DI source.AddSingleton(configuration); } + /// + /// Adding XAiService ... + /// + /// + /// + /// public static void AddXAIService( this IServiceCollection services, IConfiguration configuration, - ServiceLifetime lifeTime = ServiceLifetime.Singleton + ServiceLifetime lifeTime = ServiceLifetime.Scoped ) { // var config = configuration.GetXAIServiceConfiguration(); AddAIService( services, - config + config, + lifeTime ); } + /// + /// Adding XAiService ... + /// + /// + /// + /// public static void AddXAIService( this IServiceCollection services, XAIServiceConfiguration configuration, - ServiceLifetime lifeTime = ServiceLifetime.Singleton + ServiceLifetime lifeTime = ServiceLifetime.Scoped ) { // AddAIService( services, - configuration + configuration, + lifeTime ); } @@ -88,6 +104,12 @@ namespace xAiService.DI Console.WriteLine($"{XLogTag} => {message}"); } + /// + /// Adding Ai Service ... + /// + /// + /// + /// private static void AddAIService( this IServiceCollection services, XAIServiceConfiguration configuration, @@ -145,6 +167,7 @@ namespace xAiService.DI // // Register Services ... + services.Add(new ServiceDescriptor(typeof(IXAiService), typeof(XAiService), lifeTime)); } #endregion } diff --git a/Extensions/ModelExtensions.cs b/Extensions/ModelExtensions.cs index d6cac59..47d4335 100644 --- a/Extensions/ModelExtensions.cs +++ b/Extensions/ModelExtensions.cs @@ -1,5 +1,4 @@ using xAiService.Configurations; -using xAiService.Models; using xCommons.Extensions; namespace xAiService.Extensions @@ -7,33 +6,17 @@ namespace xAiService.Extensions public static class ModelExtensions { /// - /// Validating LLM Descriptor ... - /// - /// - /// - public static bool IsValid(this XAILLMDescriptor source) - { - // - var result = - !source.IsNull() && - !source.Url.IsNullOrEmpty() && - !source.Client.IsNullOrEmpty(); - - // - return result; - } - - /// - /// Validate XAIServiceConfiguration ... + /// Validate XAiServiceConfiguration ... /// /// /// public static bool IsValid(this XAIServiceConfiguration source) { // - var result = + bool result = !source.IsNull() && - (source.TextGenerators.Count > 0); + !source.Url.IsNullOrEmpty() && + source.Url.IsValidUrl(); // return result; diff --git a/Interfaces/IXAiService.cs b/Interfaces/IXAiService.cs new file mode 100644 index 0000000..e094e26 --- /dev/null +++ b/Interfaces/IXAiService.cs @@ -0,0 +1,42 @@ +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.AI; +using xAiService.Base; +using xAiService.Configurations; + +namespace xAiService.Interfaces +{ + public interface IXAiService : IXBaseIdentityHttpProvider + { + /// + /// XAiService Configurations ... + /// + /// + XAIServiceConfiguration Configuration { get; } + + // + #region Text Actions ... + /// + /// Generated Response ... + /// + /// + /// + /// + public Task GetResponseAsync( + string prompt, + CancellationToken cancellationToken = default + ); + + /// + /// Generated Response ... + /// + /// + /// + /// + public Task GetTextResponseAsync( + string prompt, + CancellationToken cancellationToken = default + ); + #endregion + } +} \ No newline at end of file diff --git a/Interfaces/IXAiServiceControllerBase.cs b/Interfaces/IXAiServiceControllerBase.cs new file mode 100644 index 0000000..49239da --- /dev/null +++ b/Interfaces/IXAiServiceControllerBase.cs @@ -0,0 +1,14 @@ +using System.Threading; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; + +namespace xAiService.Interfaces +{ + public interface IXAiServiceControllerBase + { + Task> Ask( + [FromQuery] string prompt, + CancellationToken cancellationToken = default + ); + } +} \ No newline at end of file diff --git a/Models/XAILLMDescriptor.cs b/Models/XAILLMDescriptor.cs deleted file mode 100644 index d94649f..0000000 --- a/Models/XAILLMDescriptor.cs +++ /dev/null @@ -1,13 +0,0 @@ -using AutoMapper.Configuration.Conventions; - -namespace xAiService.Models -{ - public class XAILLMDescriptor - { - public string Url { get; set; } - public string Port { get; set; } - public string Name { get; set; } - public string Client { get; set; } - public string Descriptor { get; set; } - } -} \ No newline at end of file diff --git a/Services/XAiService.cs b/Services/XAiService.cs new file mode 100644 index 0000000..e3a814c --- /dev/null +++ b/Services/XAiService.cs @@ -0,0 +1,96 @@ +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.AI; +using Microsoft.Extensions.Logging; +using xAiService.Base; +using xAiService.Configurations; +using xAiService.Constants; +using xAiService.Interfaces; +using xCommons.Providers; +using xHttpService.Constants; +using xIdentityService.Interfaces; + +namespace xAiService.Services +{ + public class XAiService : XBaseIdentityHttpProvider, IXAiService + { + /// + /// XAiService Configurations ... + /// + /// + public XAIServiceConfiguration Configuration { get; } + + public XAiService( + ILogger logger, + IXTokenProvider tokenProvider, + IXIdentityProvider identityProvider, + XAIServiceConfiguration configuration, + XValidationProvider validationProvider + ) : base( + configuration.Url, + logger, + configuration.XPoweredValue, + configuration.DefaultClientTimeout, + tokenProvider, + identityProvider, + validationProvider + ) + { } + + // + #region Text Actions ... + /// + /// Generated Response ... + /// + /// + /// + /// + public Task GetResponseAsync( + string prompt, + CancellationToken cancellationToken = default + ) + { + throw new System.NotImplementedException(); + } + + /// + /// Generated Response ... + /// + /// + /// + /// + public async Task GetTextResponseAsync( + string prompt, + CancellationToken cancellationToken = default + ) + { + // + // Validate Args ... + ValidationProvider.NotEmpty(prompt); + + // + var client = GetRestClient(); + var request = GetRestRequet( + endpoint: XAiApiEndpoint.Ask, + addXPoweredValue: true, + queryStrings: new Dictionary + { + { XAiApiQueryParams.Prompt, prompt } + } + ); + + // + var response = await RunRestRequest( + client, + request, + XHttpMethod.GET, + cancellationToken: cancellationToken + ); + + // + return response; + } + #endregion + } +} \ No newline at end of file diff --git a/bin/Debug/netstandard2.0/xAiService.deps.json b/bin/Debug/netstandard2.0/xAiService.deps.json index 67d016e..244798c 100644 --- a/bin/Debug/netstandard2.0/xAiService.deps.json +++ b/bin/Debug/netstandard2.0/xAiService.deps.json @@ -7,13 +7,15 @@ "targets": { ".NETStandard,Version=v2.0": {}, ".NETStandard,Version=v2.0/": { - "xAiService/1.0.0": { + "XAiService/1.0.0": { "dependencies": { + "Microsoft.Extensions.AI": "10.4.1", "NETStandard.Library": "2.0.3", - "xDashboard.xCommons": "1.0.0" + "xDashboard.xCommons": "1.0.0", + "xDashboard.xIdentityService": "1.0.0" }, "runtime": { - "xAiService.dll": {} + "XAiService.dll": {} } }, "AutoMapper/10.1.1": { @@ -31,8 +33,8 @@ "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.0": { "dependencies": { "AutoMapper": "10.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "3.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0" }, "runtime": { "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { @@ -41,10 +43,178 @@ } } }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "DnsClient/1.4.0": { + "dependencies": { + "System.Buffers": "4.6.1" + }, + "runtime": { + "lib/netstandard2.0/DnsClient.dll": { + "assemblyVersion": "1.4.0.0", + "fileVersion": "1.4.0.0" + } + } + }, + "Google.Protobuf/3.14.0": { + "dependencies": { + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" + }, + "runtime": { + "lib/netstandard2.0/Google.Protobuf.dll": { + "assemblyVersion": "3.14.0.0", + "fileVersion": "3.14.0.0" + } + } + }, + "GraphQL/3.0.0.2026": { + "dependencies": { + "GraphQL-Parser": "5.3.0", + "Microsoft.CSharp": "4.7.0", + "System.Buffers": "4.6.1", + "System.ComponentModel.Annotations": "5.0.0", + "System.Reactive.Core": "4.4.1", + "System.Reactive.Linq": "4.4.1" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "GraphQL-Parser/5.3.0": { + "runtime": { + "lib/netstandard2.0/GraphQL-Parser.dll": { + "assemblyVersion": "5.3.0.0", + "fileVersion": "5.3.0.0" + } + } + }, + "GraphQL.NewtonsoftJson/3.0.0.2026": { + "dependencies": { + "GraphQL": "3.0.0.2026", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.NewtonsoftJson.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "GraphQL.Server.Core/4.0.1": { + "dependencies": { + "GraphQL": "3.0.0.2026", + "Microsoft.Extensions.Options": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Core.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "GraphQL.Server.Transports.AspNetCore/4.0.1": { + "dependencies": { + "GraphQL.Server.Core": "4.0.1", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Transports.AspNetCore.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "GraphQL.Server.Transports.AspNetCore.NewtonsoftJson/4.0.1": { + "dependencies": { + "GraphQL.NewtonsoftJson": "3.0.0.2026", + "GraphQL.Server.Transports.AspNetCore": "4.0.1" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Transports.AspNetCore.NewtonsoftJson.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "GraphQL.Server.Transports.Subscriptions.Abstractions/4.0.1": { + "dependencies": { + "GraphQL.NewtonsoftJson": "3.0.0.2026", + "GraphQL.Server.Core": "4.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Threading.Tasks.Dataflow": "4.9.0" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Transports.Subscriptions.Abstractions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "GraphQL.Server.Transports.WebSockets/4.0.1": { + "dependencies": { + "GraphQL.Server.Transports.Subscriptions.Abstractions": "4.0.1", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.1", + "Microsoft.Extensions.Logging": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Transports.WebSockets.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "GraphQL.Server.Ui.Playground/4.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Ui.Playground.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "GraphQL.Server.Ui.Voyager/4.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Ui.Voyager.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "GraphQL.SystemTextJson/3.0.0.2026": { + "dependencies": { + "GraphQL": "3.0.0.2026", + "System.Text.Json": "10.0.4" + }, + "runtime": { + "lib/netstandard2.0/GraphQL.SystemTextJson.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, "IdentityModel/5.0.1": { "dependencies": { - "System.Text.Encodings.Web": "5.0.0", - "System.Text.Json": "5.0.0" + "System.Text.Encodings.Web": "10.0.4", + "System.Text.Json": "10.0.4" }, "runtime": { "lib/netstandard2.0/IdentityModel.dll": { @@ -53,6 +223,55 @@ } } }, + "IdentityModel.AspNetCore.OAuth2Introspection/4.0.0-preview.6": { + "dependencies": { + "IdentityModel": "5.0.1", + "Microsoft.AspNetCore.Authentication": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "3.1.14", + "Microsoft.Extensions.Http": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/IdentityModel.AspNetCore.OAuth2Introspection.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "K4os.Compression.LZ4/1.1.11": { + "dependencies": { + "System.Memory": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.1.11.0", + "fileVersion": "1.1.11.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.1.11": { + "dependencies": { + "K4os.Compression.LZ4": "1.1.11", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.1.11.0", + "fileVersion": "1.1.11.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, "libphonenumber-csharp/8.12.17": { "dependencies": { "System.Collections.Immutable": "1.7.1" @@ -70,8 +289,8 @@ "Microsoft.AspNetCore.DataProtection": "2.2.0", "Microsoft.AspNetCore.Http": "2.2.0", "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "3.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0", "Microsoft.Extensions.WebEncoders": "2.2.0" }, "runtime": { @@ -84,8 +303,8 @@ "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { "dependencies": { "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "3.0.0" + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { @@ -121,8 +340,8 @@ }, "Microsoft.AspNetCore.Authorization/2.2.0": { "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "3.0.0" + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { @@ -147,9 +366,9 @@ "dependencies": { "Microsoft.AspNetCore.Http.Extensions": "2.2.0", "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "3.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": { @@ -158,25 +377,36 @@ } } }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { + "Microsoft.AspNetCore.Cryptography.Internal/5.0.2": { "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.220.61302" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.2": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "5.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.220.61302" } } }, "Microsoft.AspNetCore.DataProtection/2.2.0": { "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0", + "Microsoft.AspNetCore.Cryptography.Internal": "5.0.2", "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "3.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0", "Microsoft.Win32.Registry": "4.5.0", "System.Security.Cryptography.Xml": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" + "System.Security.Principal.Windows": "4.7.0" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": { @@ -223,7 +453,7 @@ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", "Microsoft.AspNetCore.WebUtilities": "2.2.0", "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "3.0.0", + "Microsoft.Extensions.Options": "5.0.0", "Microsoft.Net.Http.Headers": "2.2.0" }, "runtime": { @@ -236,7 +466,7 @@ "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { "dependencies": { "Microsoft.AspNetCore.Http.Features": "2.2.0", - "System.Text.Encodings.Web": "5.0.0" + "System.Text.Encodings.Web": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { @@ -250,7 +480,7 @@ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", "Microsoft.Net.Http.Headers": "2.2.0", - "System.Buffers": "4.5.1" + "System.Buffers": "4.6.1" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { @@ -261,7 +491,7 @@ }, "Microsoft.AspNetCore.Http.Features/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" + "Microsoft.Extensions.Primitives": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { @@ -305,11 +535,11 @@ "Microsoft.AspNetCore.Routing": "2.2.0", "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.DependencyModel": "3.1.6", "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "System.Diagnostics.DiagnosticSource": "4.5.0", - "System.Threading.Tasks.Extensions": "4.5.4" + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "System.Diagnostics.DiagnosticSource": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": { @@ -322,7 +552,7 @@ "dependencies": { "Microsoft.AspNetCore.Mvc.Core": "2.2.5", "Microsoft.Extensions.Localization": "2.1.0", - "System.ComponentModel.Annotations": "4.6.0" + "System.ComponentModel.Annotations": "5.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": { @@ -333,7 +563,7 @@ }, "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" + "Microsoft.Extensions.Primitives": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { @@ -346,9 +576,9 @@ "dependencies": { "Microsoft.AspNetCore.Http.Extensions": "2.2.0", "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "3.0.0" + "Microsoft.Extensions.Options": "5.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": { @@ -373,7 +603,7 @@ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", "Microsoft.AspNetCore.Http.Extensions": "2.2.0", "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", "Microsoft.Extensions.WebEncoders": "2.2.0" }, "runtime": { @@ -383,10 +613,24 @@ } } }, + "Microsoft.AspNetCore.WebSockets/2.2.1": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.18346" + } + } + }, "Microsoft.AspNetCore.WebUtilities/2.2.0": { "dependencies": { "Microsoft.Net.Http.Headers": "2.2.0", - "System.Text.Encodings.Web": "5.0.0" + "System.Text.Encodings.Web": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { @@ -395,14 +639,30 @@ } } }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "Microsoft.Bcl.AsyncInterfaces/10.0.4": { "dependencies": { - "System.Threading.Tasks.Extensions": "4.5.4" + "System.Threading.Tasks.Extensions": "4.6.3" }, "runtime": { "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "10.0.0.4", + "fileVersion": "10.0.426.12010" + } + } + }, + "Microsoft.Bcl.HashCode/1.1.1": { + "runtime": { + "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.20.56604" + } + } + }, + "Microsoft.Bcl.Numerics/10.0.4": { + "runtime": { + "lib/netstandard2.0/Microsoft.Bcl.Numerics.dll": { + "assemblyVersion": "10.0.0.4", + "fileVersion": "10.0.426.12010" } } }, @@ -414,29 +674,176 @@ } } }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "Microsoft.Data.SqlClient/1.1.3": { "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" + "Microsoft.Identity.Client": "3.0.8", + "Microsoft.Win32.Registry": "4.5.0", + "System.Buffers": "4.6.1", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Diagnostics.DiagnosticSource": "10.0.4", + "System.Memory": "4.6.3", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.5.1", + "runtime.native.System.Data.SqlClient.sni": "4.4.0" }, "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.1.0.0" + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "1.13.20136.2", + "fileVersion": "1.13.20136.2" + } + } + }, + "Microsoft.Data.Sqlite.Core/3.1.14": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "3.1.14.0", + "fileVersion": "3.100.1421.16508" + } + } + }, + "Microsoft.DotNet.PlatformAbstractions/3.1.6": { + "runtime": { + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.EntityFrameworkCore/3.1.14": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "Microsoft.Bcl.HashCode": "1.1.1", + "Microsoft.EntityFrameworkCore.Abstractions": "3.1.14", + "Microsoft.EntityFrameworkCore.Analyzers": "3.1.14", + "Microsoft.Extensions.Caching.Memory": "3.1.14", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "1.7.1", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "3.1.14.0", + "fileVersion": "3.100.1421.16508" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": { + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "3.1.14.0", + "fileVersion": "3.100.1421.16508" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {}, + "Microsoft.EntityFrameworkCore.Relational/3.1.14": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "3.1.14" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "3.1.14.0", + "fileVersion": "3.100.1421.16508" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/3.1.14": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "3.1.14", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.2" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/3.1.14": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "3.1.14", + "Microsoft.DotNet.PlatformAbstractions": "3.1.6", + "Microsoft.EntityFrameworkCore.Relational": "3.1.14", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "3.1.14.0", + "fileVersion": "3.100.1421.16508" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/3.1.14": { + "dependencies": { + "Microsoft.Data.SqlClient": "1.1.3", + "Microsoft.EntityFrameworkCore.Relational": "3.1.14" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "3.1.14.0", + "fileVersion": "3.100.1421.16508" + } + } + }, + "Microsoft.Extensions.AI/10.4.1": { + "dependencies": { + "Microsoft.Extensions.AI.Abstractions": "10.4.1", + "Microsoft.Extensions.Caching.Abstractions": "10.0.4", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "System.Diagnostics.DiagnosticSource": "10.0.4", + "System.Numerics.Tensors": "10.0.4", + "System.Text.Json": "10.0.4", + "System.Threading.Channels": "10.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.AI.dll": { + "assemblyVersion": "10.4.0.0", + "fileVersion": "10.400.126.16803" + } + } + }, + "Microsoft.Extensions.AI.Abstractions/10.4.1": { + "dependencies": { + "System.Text.Json": "10.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.AI.Abstractions.dll": { + "assemblyVersion": "10.4.0.0", + "fileVersion": "10.400.126.16803" } } }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/10.0.4": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" + } + } + }, + "Microsoft.Extensions.Caching.Memory/3.1.14": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.4", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "3.1.14.0", + "fileVersion": "3.100.1421.16509" + } + } + }, "Microsoft.Extensions.Configuration/5.0.0": { "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" + "Microsoft.Extensions.Primitives": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { @@ -447,7 +854,7 @@ }, "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" + "Microsoft.Extensions.Primitives": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { @@ -469,9 +876,9 @@ }, "Microsoft.Extensions.DependencyInjection/5.0.1": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": { @@ -480,32 +887,32 @@ } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" + }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" } } }, - "Microsoft.Extensions.DependencyModel/2.1.0": { + "Microsoft.Extensions.DependencyModel/3.1.6": { "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "2.1.0", - "Newtonsoft.Json": "12.0.3", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Linq": "4.3.0" + "System.Text.Json": "10.0.4" }, "runtime": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.1.0.0" + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" } } }, "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" + "Microsoft.Extensions.Primitives": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { @@ -528,9 +935,9 @@ "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + "Microsoft.Extensions.Logging.Abstractions": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { @@ -539,12 +946,52 @@ } } }, + "Microsoft.Extensions.Http/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Logging": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.Extensions.Identity.Core/5.0.2": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.2", + "Microsoft.Extensions.Logging": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.220.61302" + } + } + }, + "Microsoft.Extensions.Identity.Stores/5.0.2": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.4", + "Microsoft.Extensions.Identity.Core": "5.0.2", + "Microsoft.Extensions.Logging": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.220.61302" + } + } + }, "Microsoft.Extensions.Localization/2.1.0": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", "Microsoft.Extensions.Localization.Abstractions": "2.1.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "3.0.0" + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": { @@ -561,11 +1008,32 @@ } } }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "Microsoft.Extensions.Logging/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.4": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "System.Buffers": "4.6.1", + "System.Diagnostics.DiagnosticSource": "10.0.4", + "System.Memory": "4.6.3" + }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" } } }, @@ -577,37 +1045,35 @@ } } }, - "Microsoft.Extensions.Options/3.0.0": { + "Microsoft.Extensions.Options/5.0.0": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0", - "System.ComponentModel.Annotations": "4.6.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Primitives": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.19.46305" - } - } - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { "assemblyVersion": "5.0.0.0", "fileVersion": "5.0.20.51904" } } }, + "Microsoft.Extensions.Primitives/10.0.4": { + "dependencies": { + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" + } + } + }, "Microsoft.Extensions.WebEncoders/2.2.0": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "3.0.0", - "System.Text.Encodings.Web": "5.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Options": "5.0.0", + "System.Text.Encodings.Web": "10.0.4" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": { @@ -616,36 +1082,51 @@ } } }, - "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { + "Microsoft.Identity.Client/3.0.8": { "dependencies": { - "Microsoft.IdentityModel.Tokens": "5.3.0", + "Microsoft.CSharp": "4.7.0", + "NETStandard.Library": "2.0.3", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Json": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.SecureString": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Identity.Client.dll": { + "assemblyVersion": "3.0.8.0", + "fileVersion": "3.0.8.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/5.6.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "5.6.0", "Newtonsoft.Json": "12.0.3" }, "runtime": { "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "5.3.0.0", - "fileVersion": "5.3.0.51005" + "assemblyVersion": "5.6.0.0", + "fileVersion": "5.6.0.61018" } } }, - "Microsoft.IdentityModel.Logging/5.3.0": { - "dependencies": { - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0" - }, + "Microsoft.IdentityModel.Logging/5.6.0": { "runtime": { "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "5.3.0.0", - "fileVersion": "5.3.0.51005" + "assemblyVersion": "5.6.0.0", + "fileVersion": "5.6.0.61018" } } }, "Microsoft.IdentityModel.Protocols/5.3.0": { "dependencies": { - "Microsoft.IdentityModel.Logging": "5.3.0", - "Microsoft.IdentityModel.Tokens": "5.3.0", + "Microsoft.IdentityModel.Logging": "5.6.0", + "Microsoft.IdentityModel.Tokens": "5.6.0", "System.Collections.Specialized": "4.3.0", "System.Diagnostics.Contracts": "4.3.0", "System.Net.Http": "4.3.0" @@ -662,7 +1143,7 @@ "Microsoft.IdentityModel.Protocols": "5.3.0", "Newtonsoft.Json": "12.0.3", "System.Dynamic.Runtime": "4.3.0", - "System.IdentityModel.Tokens.Jwt": "5.3.0" + "System.IdentityModel.Tokens.Jwt": "5.6.0" }, "runtime": { "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { @@ -671,28 +1152,16 @@ } } }, - "Microsoft.IdentityModel.Tokens/5.3.0": { + "Microsoft.IdentityModel.Tokens/5.6.0": { "dependencies": { - "Microsoft.IdentityModel.Logging": "5.3.0", + "Microsoft.IdentityModel.Logging": "5.6.0", "Newtonsoft.Json": "12.0.3", - "System.Collections": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Serialization.Xml": "4.3.0", - "System.Security.Claims": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0" + "System.Security.Cryptography.Cng": "4.5.0" }, "runtime": { "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "5.3.0.0", - "fileVersion": "5.3.0.51005" + "assemblyVersion": "5.6.0.0", + "fileVersion": "5.6.0.61018" } } }, @@ -706,8 +1175,8 @@ }, "Microsoft.Net.Http.Headers/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0", - "System.Buffers": "4.5.1" + "Microsoft.Extensions.Primitives": "10.0.4", + "System.Buffers": "4.6.1" }, "runtime": { "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { @@ -728,10 +1197,10 @@ }, "Microsoft.Win32.Registry/4.5.0": { "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Security.AccessControl": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" + "System.Buffers": "4.6.1", + "System.Memory": "4.6.3", + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" }, "runtime": { "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { @@ -740,6 +1209,92 @@ } } }, + "MongoDB.Bson/2.13.2": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.1.2" + }, + "runtime": { + "lib/netstandard2.0/MongoDB.Bson.dll": { + "assemblyVersion": "2.13.2.0", + "fileVersion": "2.13.2.0" + } + } + }, + "MongoDB.Driver/2.13.2": { + "dependencies": { + "MongoDB.Bson": "2.13.2", + "MongoDB.Driver.Core": "2.13.2", + "MongoDB.Libmongocrypt": "1.2.2" + }, + "runtime": { + "lib/netstandard2.0/MongoDB.Driver.dll": { + "assemblyVersion": "2.13.2.0", + "fileVersion": "2.13.2.0" + } + } + }, + "MongoDB.Driver.Core/2.13.2": { + "dependencies": { + "DnsClient": "1.4.0", + "MongoDB.Bson": "2.13.2", + "MongoDB.Libmongocrypt": "1.2.2", + "SharpCompress": "0.23.0", + "System.Buffers": "4.6.1" + }, + "runtime": { + "lib/netstandard2.0/MongoDB.Driver.Core.dll": { + "assemblyVersion": "2.13.2.0", + "fileVersion": "2.13.2.0" + } + } + }, + "MongoDB.Libmongocrypt/1.2.2": { + "runtime": { + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll": { + "assemblyVersion": "1.2.2.0", + "fileVersion": "1.2.2.0" + } + } + }, + "MySql.Data/8.0.26": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.14.0", + "K4os.Compression.LZ4": "1.1.11", + "K4os.Compression.LZ4.Streams": "1.1.11", + "K4os.Hash.xxHash": "1.0.6", + "System.Buffers": "4.6.1", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.5.1" + }, + "runtime": { + "lib/netstandard2.0/MySql.Data.dll": { + "assemblyVersion": "8.0.26.0", + "fileVersion": "8.0.26.0" + }, + "lib/netstandard2.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/netstandard2.0/Zstandard.Net.dll": { + "assemblyVersion": "1.1.7.0", + "fileVersion": "1.1.7.0" + } + } + }, + "MySql.EntityFrameworkCore/3.1.14": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "3.1.14", + "MySql.Data": "8.0.26" + }, + "runtime": { + "lib/netstandard2.0/MySql.EntityFrameworkCore.dll": { + "assemblyVersion": "3.1.14.0", + "fileVersion": "3.1.14.0" + } + } + }, "NETStandard.Library/2.0.3": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0" @@ -753,6 +1308,14 @@ } } }, + "RestSharp/106.11.7": { + "runtime": { + "lib/netstandard2.0/RestSharp.dll": { + "assemblyVersion": "106.11.7.0", + "fileVersion": "106.11.7.0" + } + } + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, @@ -762,6 +1325,13 @@ "Microsoft.NETCore.Targets": "1.1.0" } }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, "runtime.native.System.Net.Http/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -795,6 +1365,56 @@ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {}, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {}, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {}, + "SharpCompress/0.23.0": { + "dependencies": { + "System.Text.Encoding.CodePages": "4.5.1" + }, + "runtime": { + "lib/netstandard2.0/SharpCompress.dll": { + "assemblyVersion": "0.23.0.0", + "fileVersion": "0.23.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.2": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.2", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.2", + "SQLitePCLRaw.provider.e_sqlite3": "2.0.2" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.2.669", + "fileVersion": "2.0.2.669" + } + } + }, + "SQLitePCLRaw.core/2.0.2": { + "dependencies": { + "System.Memory": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.2.669", + "fileVersion": "2.0.2.669" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.2": {}, + "SQLitePCLRaw.provider.e_sqlite3/2.0.2": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.2" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.0.2.669", + "fileVersion": "2.0.2.669" + } + } + }, "Swashbuckle.AspNetCore/6.0.2": { "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "3.0.0", @@ -820,7 +1440,7 @@ "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.1.0", "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.0", "Swashbuckle.AspNetCore.Swagger": "6.0.2", - "System.Text.Json": "5.0.0" + "System.Text.Json": "10.0.4" }, "runtime": { "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { @@ -834,7 +1454,7 @@ "Microsoft.AspNetCore.Routing": "2.2.0", "Microsoft.AspNetCore.StaticFiles": "2.1.0", "Microsoft.Extensions.FileProviders.Embedded": "2.1.0", - "System.Text.Json": "5.0.0" + "System.Text.Json": "10.0.4" }, "runtime": { "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { @@ -843,22 +1463,11 @@ } } }, - "System.AppContext/4.1.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "1.0.24212.1" - } - } - }, - "System.Buffers/4.5.1": { + "System.Buffers/4.6.1": { "runtime": { "lib/netstandard2.0/System.Buffers.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.28619.1" + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.600.125.16908" } } }, @@ -891,7 +1500,7 @@ }, "System.Collections.Immutable/1.7.1": { "dependencies": { - "System.Memory": "4.5.4" + "System.Memory": "4.6.3" }, "runtime": { "lib/netstandard2.0/System.Collections.Immutable.dll": { @@ -933,7 +1542,18 @@ } } }, - "System.ComponentModel.Annotations/4.6.0": { + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": { "runtime": { "lib/netstandard2.0/System.ComponentModel.Annotations.dll": { "assemblyVersion": "4.2.1.0", @@ -941,6 +1561,56 @@ } } }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, "System.Diagnostics.Contracts/4.3.0": { "dependencies": { "System.Runtime": "4.3.0" @@ -959,11 +1629,15 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource/4.5.0": { + "System.Diagnostics.DiagnosticSource/10.0.4": { + "dependencies": { + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" + }, "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.26515.6" + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" } } }, @@ -1030,16 +1704,16 @@ "System.Runtime.InteropServices": "4.3.0" } }, - "System.IdentityModel.Tokens.Jwt/5.3.0": { + "System.IdentityModel.Tokens.Jwt/5.6.0": { "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "5.3.0", - "Microsoft.IdentityModel.Tokens": "5.3.0", + "Microsoft.IdentityModel.JsonWebTokens": "5.6.0", + "Microsoft.IdentityModel.Tokens": "5.6.0", "Newtonsoft.Json": "12.0.3" }, "runtime": { "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "5.3.0.0", - "fileVersion": "5.3.0.51005" + "assemblyVersion": "5.6.0.0", + "fileVersion": "5.6.0.61018" } } }, @@ -1075,6 +1749,19 @@ } } }, + "System.IO.Pipelines/10.0.4": { + "dependencies": { + "System.Buffers": "4.6.1", + "System.Memory": "4.6.3", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/System.IO.Pipelines.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" + } + } + }, "System.Linq/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1117,16 +1804,16 @@ } } }, - "System.Memory/4.5.4": { + "System.Memory/4.6.3": { "dependencies": { - "System.Buffers": "4.5.1", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" + "System.Buffers": "4.6.1", + "System.Numerics.Vectors": "4.6.1", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" }, "runtime": { "lib/netstandard2.0/System.Memory.dll": { - "assemblyVersion": "4.0.1.1", - "fileVersion": "4.6.28619.1" + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.600.325.20307" } } }, @@ -1135,7 +1822,7 @@ "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Diagnostics.DiagnosticSource": "10.0.4", "System.Diagnostics.Tracing": "4.3.0", "System.Globalization": "4.3.0", "System.Globalization.Extensions": "4.3.0", @@ -1168,11 +1855,39 @@ "System.Runtime.Handles": "4.3.0" } }, - "System.Numerics.Vectors/4.5.0": { + "System.Net.WebSockets.WebSocketProtocol/4.5.3": { + "dependencies": { + "System.Buffers": "4.6.1", + "System.Memory": "4.6.3", + "System.Numerics.Vectors": "4.6.1", + "System.Runtime.CompilerServices.Unsafe": "6.1.2", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.2", + "fileVersion": "4.6.27129.4" + } + } + }, + "System.Numerics.Tensors/10.0.4": { + "dependencies": { + "Microsoft.Bcl.Numerics": "10.0.4", + "System.Memory": "4.6.3", + "System.Numerics.Vectors": "4.6.1" + }, + "runtime": { + "lib/netstandard2.0/System.Numerics.Tensors.dll": { + "assemblyVersion": "10.0.0.4", + "fileVersion": "10.0.426.12010" + } + } + }, + "System.Numerics.Vectors/4.6.1": { "runtime": { "lib/netstandard2.0/System.Numerics.Vectors.dll": { - "assemblyVersion": "4.1.4.0", - "fileVersion": "4.6.26515.6" + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.600.125.16908" } } }, @@ -1229,7 +1944,7 @@ "System.Reactive/5.0.0": { "dependencies": { "System.Runtime.InteropServices.WindowsRuntime": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" + "System.Threading.Tasks.Extensions": "4.6.3" }, "runtime": { "lib/netstandard2.0/System.Reactive.dll": { @@ -1238,6 +1953,30 @@ } } }, + "System.Reactive.Core/4.4.1": { + "dependencies": { + "System.Reactive": "5.0.0", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/System.Reactive.Core.dll": { + "assemblyVersion": "3.0.6000.0", + "fileVersion": "3.0.6000.0" + } + } + }, + "System.Reactive.Linq/4.4.1": { + "dependencies": { + "System.Reactive": "5.0.0", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/System.Reactive.Linq.dll": { + "assemblyVersion": "3.0.6000.0", + "fileVersion": "3.0.6000.0" + } + } + }, "System.Reflection/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -1322,11 +2061,11 @@ "Microsoft.NETCore.Targets": "1.1.0" } }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "System.Runtime.CompilerServices.Unsafe/6.1.2": { "runtime": { "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.100.225.20307" } } }, @@ -1354,23 +2093,6 @@ "System.Runtime.Handles": "4.3.0" } }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, "System.Runtime.InteropServices.WindowsRuntime/4.3.0": { "dependencies": { "System.Runtime": "4.3.0" @@ -1396,6 +2118,34 @@ } } }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Runtime.Serialization.Json/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Private.DataContractSerialization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.24705.1" + } + } + }, "System.Runtime.Serialization.Primitives/4.3.0": { "dependencies": { "System.Resources.ResourceManager": "4.3.0", @@ -1408,47 +2158,14 @@ } } }, - "System.Runtime.Serialization.Xml/4.3.0": { + "System.Security.AccessControl/4.7.0": { "dependencies": { - "System.IO": "4.3.0", - "System.Private.DataContractSerialization": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "4.1.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Security.AccessControl/4.5.0": { - "dependencies": { - "System.Security.Principal.Windows": "4.5.0" + "System.Security.Principal.Windows": "4.7.0" }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Security.Claims/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Security.Principal": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" } } }, @@ -1470,11 +2187,11 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" } }, - "System.Security.Cryptography.Cng/4.4.0": { + "System.Security.Cryptography.Cng/4.5.0": { "runtime": { "lib/netstandard2.0/System.Security.Cryptography.Cng.dll": { "assemblyVersion": "4.3.0.0", - "fileVersion": "4.6.25519.3" + "fileVersion": "4.6.26515.6" } } }, @@ -1536,9 +2253,9 @@ }, "System.Security.Cryptography.Pkcs/4.5.0": { "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Security.Cryptography.Cng": "4.4.0" + "System.Buffers": "4.6.1", + "System.Memory": "4.6.3", + "System.Security.Cryptography.Cng": "4.5.0" }, "runtime": { "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": { @@ -1564,6 +2281,17 @@ } } }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "dependencies": { + "System.Memory": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + } + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -1581,7 +2309,7 @@ "System.Runtime.InteropServices": "4.3.0", "System.Runtime.Numerics": "4.3.0", "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.4.0", + "System.Security.Cryptography.Cng": "4.5.0", "System.Security.Cryptography.Csp": "4.3.0", "System.Security.Cryptography.Encoding": "4.3.0", "System.Security.Cryptography.OpenSsl": "4.3.0", @@ -1596,7 +2324,7 @@ "System.Security.Cryptography.Xml/4.5.0": { "dependencies": { "System.Security.Cryptography.Pkcs": "4.5.0", - "System.Security.Permissions": "4.5.0" + "System.Security.Permissions": "4.7.0" }, "runtime": { "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": { @@ -1605,36 +2333,37 @@ } } }, - "System.Security.Permissions/4.5.0": { + "System.Security.Permissions/4.7.0": { "dependencies": { - "System.Security.AccessControl": "4.5.0" + "System.Security.AccessControl": "4.7.0" }, "runtime": { "lib/netstandard2.0/System.Security.Permissions.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.26515.6" + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" } } }, - "System.Security.Principal/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Security.Principal.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Security.Principal.Windows/4.5.0": { + "System.Security.Principal.Windows/4.7.0": { "runtime": { "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.26515.6" + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" } } }, + "System.Security.SecureString/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, "System.Text.Encoding/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -1642,6 +2371,17 @@ "System.Runtime": "4.3.0" } }, + "System.Text.Encoding.CodePages/4.5.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.1.2" + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.27129.4" + } + } + }, "System.Text.Encoding.Extensions/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -1650,31 +2390,33 @@ "System.Text.Encoding": "4.3.0" } }, - "System.Text.Encodings.Web/5.0.0": { + "System.Text.Encodings.Web/10.0.4": { "dependencies": { - "System.Memory": "4.5.4" + "System.Buffers": "4.6.1", + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" }, "runtime": { "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" } } }, - "System.Text.Json/5.0.0": { + "System.Text.Json/10.0.4": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "5.0.0", - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "5.0.0", - "System.Text.Encodings.Web": "5.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "System.Buffers": "4.6.1", + "System.IO.Pipelines": "10.0.4", + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2", + "System.Text.Encodings.Web": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" }, "runtime": { "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" } } }, @@ -1706,6 +2448,18 @@ } } }, + "System.Threading.Channels/10.0.4": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "runtime": { + "lib/netstandard2.0/System.Threading.Channels.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.426.12010" + } + } + }, "System.Threading.Tasks/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -1713,14 +2467,22 @@ "System.Runtime": "4.3.0" } }, - "System.Threading.Tasks.Extensions/4.5.4": { + "System.Threading.Tasks.Dataflow/4.9.0": { + "runtime": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "4.6.3.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Threading.Tasks.Extensions/4.6.3": { "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "5.0.0" + "System.Runtime.CompilerServices.Unsafe": "6.1.2" }, "runtime": { "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.2.0.1", - "fileVersion": "4.6.28619.1" + "assemblyVersion": "4.2.1.0", + "fileVersion": "4.600.325.20307" } } }, @@ -1740,7 +2502,7 @@ "System.Text.Encoding.Extensions": "4.3.0", "System.Text.RegularExpressions": "4.3.0", "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" + "System.Threading.Tasks.Extensions": "4.6.3" }, "runtime": { "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { @@ -1848,6 +2610,31 @@ } } }, + "xDashboard.xDataService/1.0.0": { + "dependencies": { + "GraphQL": "3.0.0.2026", + "GraphQL.Server.Transports.AspNetCore": "4.0.1", + "GraphQL.Server.Transports.AspNetCore.NewtonsoftJson": "4.0.1", + "GraphQL.Server.Transports.WebSockets": "4.0.1", + "GraphQL.Server.Ui.Playground": "4.0.1", + "GraphQL.Server.Ui.Voyager": "4.0.1", + "GraphQL.SystemTextJson": "3.0.0.2026", + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "Microsoft.EntityFrameworkCore": "3.1.14", + "Microsoft.EntityFrameworkCore.SqlServer": "3.1.14", + "Microsoft.EntityFrameworkCore.Sqlite": "3.1.14", + "MongoDB.Driver": "2.13.2", + "MySql.EntityFrameworkCore": "3.1.14", + "System.Reactive": "5.0.0", + "xDashboard.xModels": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/xDataService.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, "xDashboard.xExceptions/1.0.0": { "runtime": { "lib/netstandard2.0/xExceptions.dll": { @@ -1855,11 +2642,64 @@ "fileVersion": "1.0.0.0" } } + }, + "xDashboard.xHttpService/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.Extensions.Http": "2.2.0", + "RestSharp": "106.11.7", + "xDashboard.xIdentityModels": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/xHttpService.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "xDashboard.xIdentityModels/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Identity.Stores": "5.0.2", + "Microsoft.IdentityModel.Tokens": "5.6.0", + "System.IdentityModel.Tokens.Jwt": "5.6.0", + "xDashboard.xModels": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/xIdentityModels.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "xDashboard.xIdentityService/1.0.0": { + "dependencies": { + "IdentityModel.AspNetCore.OAuth2Introspection": "4.0.0-preview.6", + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "xDashboard.xDataService": "1.0.0", + "xDashboard.xHttpService": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/xIdentityService.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "xDashboard.xModels/1.0.0": { + "dependencies": { + "xDashboard.xCommons": "1.0.0" + }, + "runtime": { + "lib/netstandard2.0/xModels.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } } } }, "libraries": { - "xAiService/1.0.0": { + "XAiService/1.0.0": { "type": "project", "serviceable": false, "sha512": "" @@ -1878,6 +2718,104 @@ "path": "automapper.extensions.microsoft.dependencyinjection/8.1.0", "hashPath": "automapper.extensions.microsoft.dependencyinjection.8.1.0.nupkg.sha512" }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "DnsClient/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", + "path": "dnsclient/1.4.0", + "hashPath": "dnsclient.1.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9AkodyGNmLI+wJJPbwpWLmh4BMHoXDQ9+8qvDPhQQi/BNsleqKMBn3OlyLwC6CALwan2kc5+Cenb8fJSITX3nQ==", + "path": "google.protobuf/3.14.0", + "hashPath": "google.protobuf.3.14.0.nupkg.sha512" + }, + "GraphQL/3.0.0.2026": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IZ5tqBLC8JKgyHL3gIBIjmK8D0PZ4wfT9xe9i3BBB9JNTyx0ItsOO2GHcYrlDZWiaXGz1QyQg5G6CxjCo9c1kg==", + "path": "graphql/3.0.0.2026", + "hashPath": "graphql.3.0.0.2026.nupkg.sha512" + }, + "GraphQL-Parser/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1FoxfgApSL62SlhYMIZg0skaCYt1HDM+u9DxYZQHWF4OheJUnld3xixmfNFNmp/UiyjBv1oNdRafTFXRJIC00A==", + "path": "graphql-parser/5.3.0", + "hashPath": "graphql-parser.5.3.0.nupkg.sha512" + }, + "GraphQL.NewtonsoftJson/3.0.0.2026": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G5SH/qKwY6mOL/fTQNFnQFYt1YKoHebAiQ8L0s77brvOceiv+lFfiUIRVuRhfy7Nwe8zLrJwNq/Y4lWA8pTASw==", + "path": "graphql.newtonsoftjson/3.0.0.2026", + "hashPath": "graphql.newtonsoftjson.3.0.0.2026.nupkg.sha512" + }, + "GraphQL.Server.Core/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YMBZMcf103uCbWMQNXQD5+d5WMvZVV5vM9iYfgWxSi37atKNUGmmJSkF4e1q1Ryy70dfl6mFj1VJfB18fcRSZg==", + "path": "graphql.server.core/4.0.1", + "hashPath": "graphql.server.core.4.0.1.nupkg.sha512" + }, + "GraphQL.Server.Transports.AspNetCore/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcpGGdopp6uanxw9uszQBpknCF6rhP/Y/Xcot4dMJPAECI3HL9XizaY3d7TDZ/za8rRzLkyhJ+cFz8aTSjgxdw==", + "path": "graphql.server.transports.aspnetcore/4.0.1", + "hashPath": "graphql.server.transports.aspnetcore.4.0.1.nupkg.sha512" + }, + "GraphQL.Server.Transports.AspNetCore.NewtonsoftJson/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LNuJPk7WMbDg9AUSoUfZ9Ik9HD1elDq4GkKeHewgltM0sA0SelEvjK+dXnpJeKWLYcy+9vmpWy/4qbbLawS1Zw==", + "path": "graphql.server.transports.aspnetcore.newtonsoftjson/4.0.1", + "hashPath": "graphql.server.transports.aspnetcore.newtonsoftjson.4.0.1.nupkg.sha512" + }, + "GraphQL.Server.Transports.Subscriptions.Abstractions/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y57W8U0Z111lAzSnreTarFRrXeahvNX7rbyVjCovhejqHyXLWE6T3Z7EbhhTFSF76lqTcDe7kxMGlnylI0nDhw==", + "path": "graphql.server.transports.subscriptions.abstractions/4.0.1", + "hashPath": "graphql.server.transports.subscriptions.abstractions.4.0.1.nupkg.sha512" + }, + "GraphQL.Server.Transports.WebSockets/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sLL29jPO9Z3eHE6jiaf8wk8hfmpdiql7vr0q9HDkgZKfNTGkYAf2wB0ZjVVt7kGMsdfF0/10xs6gALMKTPhJuQ==", + "path": "graphql.server.transports.websockets/4.0.1", + "hashPath": "graphql.server.transports.websockets.4.0.1.nupkg.sha512" + }, + "GraphQL.Server.Ui.Playground/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3L/XUm/gTG/CrTsmm7PMwNi4sa3HtF+AtvKcYwCZP5bJI64RWODuHsgLZj+pwKF/7xa8PR6JbXtvZ74iCBAXuA==", + "path": "graphql.server.ui.playground/4.0.1", + "hashPath": "graphql.server.ui.playground.4.0.1.nupkg.sha512" + }, + "GraphQL.Server.Ui.Voyager/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2NoUEF9US+v58ju9508LUN4WqoLfM/F+EZIsxGCz21hKI3Vxijt8PKgm7dotoGkj1aySxnLBPutzE6dW/OY1tg==", + "path": "graphql.server.ui.voyager/4.0.1", + "hashPath": "graphql.server.ui.voyager.4.0.1.nupkg.sha512" + }, + "GraphQL.SystemTextJson/3.0.0.2026": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UsXkftkb46xEtt69Wf0KUEN2yVVFGqqTxAg9BwVKWwGAAcK2DUpBHFFNyl5plmn0/KjIhoa6TNxLgszi0dVbbw==", + "path": "graphql.systemtextjson/3.0.0.2026", + "hashPath": "graphql.systemtextjson.3.0.0.2026.nupkg.sha512" + }, "IdentityModel/5.0.1": { "type": "package", "serviceable": true, @@ -1885,6 +2823,34 @@ "path": "identitymodel/5.0.1", "hashPath": "identitymodel.5.0.1.nupkg.sha512" }, + "IdentityModel.AspNetCore.OAuth2Introspection/4.0.0-preview.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6acMwF7/kk5r5i2lKT4paz1kjtAkS3oaZCpwfdpxt8x73HDOTGD5kuFyGL6aQ48zpQCM1/NfxcoFdODfHDgbxg==", + "path": "identitymodel.aspnetcore.oauth2introspection/4.0.0-preview.6", + "hashPath": "identitymodel.aspnetcore.oauth2introspection.4.0.0-preview.6.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.1.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==", + "path": "k4os.compression.lz4/1.1.11", + "hashPath": "k4os.compression.lz4.1.1.11.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.1.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==", + "path": "k4os.compression.lz4.streams/1.1.11", + "hashPath": "k4os.compression.lz4.streams.1.1.11.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, "libphonenumber-csharp/8.12.17": { "type": "package", "serviceable": true, @@ -1941,12 +2907,19 @@ "path": "microsoft.aspnetcore.cors/2.2.0", "hashPath": "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512" }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { + "Microsoft.AspNetCore.Cryptography.Internal/5.0.2": { "type": "package", "serviceable": true, - "sha512": "sha512-GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==", - "path": "microsoft.aspnetcore.cryptography.internal/2.2.0", - "hashPath": "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512" + "sha512": "sha512-3w5vemQPVEknrewW9xNiYJ1X8f2AjIoy4mSgqDtDJABPM40DupOxJwdO4tDZL+x/fZJL3bXWG7YpkfaXYUBmow==", + "path": "microsoft.aspnetcore.cryptography.internal/5.0.2", + "hashPath": "microsoft.aspnetcore.cryptography.internal.5.0.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s9RQ193ypMuHnV17DZZtiVVcdSBy5mK0q/BxJR77KAUASjfDTmdjnZpUY2JTYivFlt28PLMw+Smy6K8l1Mz1Cg==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/5.0.2", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.5.0.2.nupkg.sha512" }, "Microsoft.AspNetCore.DataProtection/2.2.0": { "type": "package", @@ -2060,6 +3033,13 @@ "path": "microsoft.aspnetcore.staticfiles/2.1.0", "hashPath": "microsoft.aspnetcore.staticfiles.2.1.0.nupkg.sha512" }, + "Microsoft.AspNetCore.WebSockets/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ilk4fQ0xdVpJk1a+72thHv2LglUZPWL+vECOG3mw+gOesNx0/p56HNJXZw8k1pj8ff1cVHn8KtfvyRZxdplNQA==", + "path": "microsoft.aspnetcore.websockets/2.2.1", + "hashPath": "microsoft.aspnetcore.websockets.2.2.1.nupkg.sha512" + }, "Microsoft.AspNetCore.WebUtilities/2.2.0": { "type": "package", "serviceable": true, @@ -2067,12 +3047,26 @@ "path": "microsoft.aspnetcore.webutilities/2.2.0", "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "Microsoft.Bcl.AsyncInterfaces/10.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + "sha512": "sha512-2JmoSZ1wDf1/TUyTtLTXeicXCnWxXkeStGnzRRmAw+5CBIGhg6q9ieJXu4FjeLzawSGd5PMhcropNa3lPJDaKA==", + "path": "microsoft.bcl.asyncinterfaces/10.0.4", + "hashPath": "microsoft.bcl.asyncinterfaces.10.0.4.nupkg.sha512" + }, + "Microsoft.Bcl.HashCode/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==", + "path": "microsoft.bcl.hashcode/1.1.1", + "hashPath": "microsoft.bcl.hashcode.1.1.1.nupkg.sha512" + }, + "Microsoft.Bcl.Numerics/10.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vYbNzQK8hYv9wNVEoIS183JS2tQ74/CfiqBt5Krfub6wpdRkyqWnw0UFgaFztHq+Mws9zkQwCTK7L8o1dz/mCQ==", + "path": "microsoft.bcl.numerics/10.0.4", + "hashPath": "microsoft.bcl.numerics.10.0.4.nupkg.sha512" }, "Microsoft.CSharp/4.7.0": { "type": "package", @@ -2081,12 +3075,89 @@ "path": "microsoft.csharp/4.7.0", "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "Microsoft.Data.SqlClient/1.1.3": { "type": "package", "serviceable": true, - "sha512": "sha512-9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", - "path": "microsoft.dotnet.platformabstractions/2.1.0", - "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512" + "sha512": "sha512-KOT5AoOXIQCF98y+ynMLMaemS05RebDconYlCtqdFGbcpviW+S2/wXhrDNPtZ3MWeB+6ej3t4CrzykRGQKk9gA==", + "path": "microsoft.data.sqlclient/1.1.3", + "hashPath": "microsoft.data.sqlclient.1.1.3.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sm7IMvNCh9ePasIExswSUa6BB25oOfNhC1S/wSjWqbdgPjOZDpYS+OM0Kza5aB7Es+6olvJGjRsPzyPAyCH9qQ==", + "path": "microsoft.data.sqlite.core/3.1.14", + "hashPath": "microsoft.data.sqlite.core.3.1.14.nupkg.sha512" + }, + "Microsoft.DotNet.PlatformAbstractions/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jek4XYaQ/PGUwDKKhwR8K47Uh1189PFzMeLqO83mXrXQVIpARZCcfuDedH50YDTepBkfijCZN5U/vZi++erxtg==", + "path": "microsoft.dotnet.platformabstractions/3.1.6", + "hashPath": "microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-scyR0k8hJ8gR2xmXM7mS5eXyXKTVBNbgVIq+TsURqGXuCQP6KAYxuz0+OScFHBRCkBdb/2fynf0JG/D4UGudxw==", + "path": "microsoft.entityframeworkcore/3.1.14", + "hashPath": "microsoft.entityframeworkcore.3.1.14.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xXArI4pGAB8dc0tIYNfbqKz+9ZpELjF4+2Jcy48nd5IiRVxYpgT9c0+46rFHwAq/GryaTGUOQ0hkJHqkd+jN5Q==", + "path": "microsoft.entityframeworkcore.abstractions/3.1.14", + "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xJwZ+Pzqk6M+EIaKq8E+n0kJsq2iwcD1v2bYHgLI/egqBW4ytpqCjDRcYLqrsExX5isotaOR9KvHECOBjc838w==", + "path": "microsoft.entityframeworkcore.analyzers/3.1.14", + "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t7dp/bMF+iF2WfBF0CqugtAagHLbmjAvSlJLMrKPoAPYINusKrV+WOr+9lPivf6juMog2Lq0VTVsj5N6f5F/CQ==", + "path": "microsoft.entityframeworkcore.relational/3.1.14", + "hashPath": "microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UgWORpbURCgUtauoDv6mVHNUf6jSpPaHjXJZPSYWaKFEf0QEqKSMwcXU++zXacU/vqoZm0TjhBxSJ+ynrGUcVA==", + "path": "microsoft.entityframeworkcore.sqlite/3.1.14", + "hashPath": "microsoft.entityframeworkcore.sqlite.3.1.14.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qQ3tYnK9Nym5P2oTBRAGUlybnEdsc9GAMw3cBQoEGglZtTj/19a7VyjWBGgYSdW4yYxZaJAhqB28qR2303EHfw==", + "path": "microsoft.entityframeworkcore.sqlite.core/3.1.14", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.3.1.14.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QAEsRFqVSRFrjQTz2mjWuzfIl5g6ssC3CizJNdtyNHudvsRCk2v98wMqhaaO8fMyKQ4PGinxAzobR/bMFC/bUA==", + "path": "microsoft.entityframeworkcore.sqlserver/3.1.14", + "hashPath": "microsoft.entityframeworkcore.sqlserver.3.1.14.nupkg.sha512" + }, + "Microsoft.Extensions.AI/10.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-io38o6v3Tpbh++UqIcievOOTRwEyBpbNcudpZDjOo+DnAEQQvc3WqlChPipWLYH65cl9m8jiqH6ahHeasZzmOA==", + "path": "microsoft.extensions.ai/10.4.1", + "hashPath": "microsoft.extensions.ai.10.4.1.nupkg.sha512" + }, + "Microsoft.Extensions.AI.Abstractions/10.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZxhU/wg9BOc3ohibhLl18toPLWm96ysQoE+3OhCgrZ0TUPZd7bsUmGteeatz08yweyuPIEhtyUzEZTF+3bMWEQ==", + "path": "microsoft.extensions.ai.abstractions/10.4.1", + "hashPath": "microsoft.extensions.ai.abstractions.10.4.1.nupkg.sha512" }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { "type": "package", @@ -2095,6 +3166,20 @@ "path": "microsoft.extensions.apidescription.server/3.0.0", "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" }, + "Microsoft.Extensions.Caching.Abstractions/10.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", + "path": "microsoft.extensions.caching.abstractions/10.0.4", + "hashPath": "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aNOymMs1Cv383KoATchVnnW3/k7zRTGUcI81ktd5UMay5NB+elKVuYB2jG7WZzDYasmRysoWbWL/1s85H8J3gQ==", + "path": "microsoft.extensions.caching.memory/3.1.14", + "hashPath": "microsoft.extensions.caching.memory.3.1.14.nupkg.sha512" + }, "Microsoft.Extensions.Configuration/5.0.0": { "type": "package", "serviceable": true, @@ -2123,19 +3208,19 @@ "path": "microsoft.extensions.dependencyinjection/5.0.1", "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" + "sha512": "sha512-SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512" }, - "Microsoft.Extensions.DependencyModel/2.1.0": { + "Microsoft.Extensions.DependencyModel/3.1.6": { "type": "package", "serviceable": true, - "sha512": "sha512-nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", - "path": "microsoft.extensions.dependencymodel/2.1.0", - "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512" + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" }, "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { "type": "package", @@ -2158,6 +3243,27 @@ "path": "microsoft.extensions.hosting.abstractions/2.2.0", "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" }, + "Microsoft.Extensions.Http/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hZ8mz6FgxSeFtkHzw+Ad0QOt2yjjpq4WaG9itnkyChtXYTrDlbkw3af2WJ9wdEAAyYqOlQaVDB6MJSEo8dd/vw==", + "path": "microsoft.extensions.http/2.2.0", + "hashPath": "microsoft.extensions.http.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H0k4/raFOzGYu26B2w89BjyCD7uzwxoXF2D5VFjiHj2JUJiclPpGVJDa+MrfulaYq2gG3rAxflR1ANeAeg6GGA==", + "path": "microsoft.extensions.identity.core/5.0.2", + "hashPath": "microsoft.extensions.identity.core.5.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ypagX4xnw6oJmn951Pt1l5B5U8iLl8xFlcKZRXYp4vJCrPJERaTI38Agh6uWJH0AL12Crs/aIF1/THITWq0Qmg==", + "path": "microsoft.extensions.identity.stores/5.0.2", + "hashPath": "microsoft.extensions.identity.stores.5.0.2.nupkg.sha512" + }, "Microsoft.Extensions.Localization/2.1.0": { "type": "package", "serviceable": true, @@ -2172,12 +3278,19 @@ "path": "microsoft.extensions.localization.abstractions/2.1.0", "hashPath": "microsoft.extensions.localization.abstractions.2.1.0.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "Microsoft.Extensions.Logging/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", - "path": "microsoft.extensions.logging.abstractions/2.2.0", - "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "path": "microsoft.extensions.logging/5.0.0", + "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", + "path": "microsoft.extensions.logging.abstractions/10.0.4", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512" }, "Microsoft.Extensions.ObjectPool/2.2.0": { "type": "package", @@ -2186,19 +3299,19 @@ "path": "microsoft.extensions.objectpool/2.2.0", "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" }, - "Microsoft.Extensions.Options/3.0.0": { + "Microsoft.Extensions.Options/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-aZuVhN/TC872Yb55nrb7an82sfSAdNYxIyzu3zbYHOnhwal5hdkBUxzuoYj1khI2sw0tWq6i82i624zEFmiJhg==", - "path": "microsoft.extensions.options/3.0.0", - "hashPath": "microsoft.extensions.options.3.0.0.nupkg.sha512" + "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "path": "microsoft.extensions.options/5.0.0", + "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Primitives/5.0.0": { + "Microsoft.Extensions.Primitives/10.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "path": "microsoft.extensions.primitives/5.0.0", - "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" + "sha512": "sha512-lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", + "path": "microsoft.extensions.primitives/10.0.4", + "hashPath": "microsoft.extensions.primitives.10.0.4.nupkg.sha512" }, "Microsoft.Extensions.WebEncoders/2.2.0": { "type": "package", @@ -2207,19 +3320,26 @@ "path": "microsoft.extensions.webencoders/2.2.0", "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512" }, - "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { + "Microsoft.Identity.Client/3.0.8": { "type": "package", "serviceable": true, - "sha512": "sha512-5LW5VYvGZLvrbEGxyaE6dSQhT1B5frnpwX/c4/PWrNXeuJ6GkYmiOPf2u5Iwk1qQXPTvDedwEfnBg+i/0cFAyA==", - "path": "microsoft.identitymodel.jsonwebtokens/5.3.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg.sha512" + "sha512": "sha512-9E1gXBRJta8+UXooYpJkp/8g6Cy4kFQl3iURduGhR7/vU8rGKTWEMJ3tUKOO2m1qzJOfaog/n89lyjdi7S56Rg==", + "path": "microsoft.identity.client/3.0.8", + "hashPath": "microsoft.identity.client.3.0.8.nupkg.sha512" }, - "Microsoft.IdentityModel.Logging/5.3.0": { + "Microsoft.IdentityModel.JsonWebTokens/5.6.0": { "type": "package", "serviceable": true, - "sha512": "sha512-o+bBauEMOi6ZI0MlJEC69Sw9UPwKLFmN+lD942g9UCx5pfiLFvJBKp8OPmxtGFL02ZxzXCIUyhyKn85izBDsnQ==", - "path": "microsoft.identitymodel.logging/5.3.0", - "hashPath": "microsoft.identitymodel.logging.5.3.0.nupkg.sha512" + "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==", + "path": "microsoft.identitymodel.jsonwebtokens/5.6.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/5.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==", + "path": "microsoft.identitymodel.logging/5.6.0", + "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512" }, "Microsoft.IdentityModel.Protocols/5.3.0": { "type": "package", @@ -2235,12 +3355,12 @@ "path": "microsoft.identitymodel.protocols.openidconnect/5.3.0", "hashPath": "microsoft.identitymodel.protocols.openidconnect.5.3.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Tokens/5.3.0": { + "Microsoft.IdentityModel.Tokens/5.6.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/piauST4FL0qzVI6oqLWxqhFReg12KwVGy0jRlnVOpGMeOVSKdtNVtHsN/hARc25hOOPEp9WKMce5ILzyMx/tQ==", - "path": "microsoft.identitymodel.tokens/5.3.0", - "hashPath": "microsoft.identitymodel.tokens.5.3.0.nupkg.sha512" + "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==", + "path": "microsoft.identitymodel.tokens/5.6.0", + "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512" }, "Microsoft.IO.RecyclableMemoryStream/1.4.0": { "type": "package", @@ -2284,6 +3404,48 @@ "path": "microsoft.win32.registry/4.5.0", "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512" }, + "MongoDB.Bson/2.13.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qY9271GFCYLA8OB3MdQC8clJh9wnh65gcxUa5Skwh2xYryv21YAHx/VOvv4ILpkb1NhIVgy3LBQhVBldwLaqNg==", + "path": "mongodb.bson/2.13.2", + "hashPath": "mongodb.bson.2.13.2.nupkg.sha512" + }, + "MongoDB.Driver/2.13.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4+fczDJxxx7HPWY1n75hzHCOZiAhpb1Tjpkvj+c3lAeBGmSCvh5THcadxZ7b97F6OdHxz4xy07mIiwfZlPuQVQ==", + "path": "mongodb.driver/2.13.2", + "hashPath": "mongodb.driver.2.13.2.nupkg.sha512" + }, + "MongoDB.Driver.Core/2.13.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VY1ayl9yXcZZ0VoXftZD3quHBgdn2EEMmuKlz4V6z2+8grN2svdASwX9E4p0DmOAAX8Wd5B5lYsUifrbo4M5xA==", + "path": "mongodb.driver.core/2.13.2", + "hashPath": "mongodb.driver.core.2.13.2.nupkg.sha512" + }, + "MongoDB.Libmongocrypt/1.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pKrlKJk4wem4MyfkaMqj+sqJ+RwUDnqnt76/Xwm5DDjMzEU5QtDkzQOLq5bVwFhNgC8LMn6Hr22tl5WsmN5+AA==", + "path": "mongodb.libmongocrypt/1.2.2", + "hashPath": "mongodb.libmongocrypt.1.2.2.nupkg.sha512" + }, + "MySql.Data/8.0.26": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iOxE24dI01JZlZ1EObkz9WwYMzX+0RnBf5a11OkPDCOGv2Yo0tTWmwAJfVXkuuSD47XngOir7l7+xZZ56lZyAA==", + "path": "mysql.data/8.0.26", + "hashPath": "mysql.data.8.0.26.nupkg.sha512" + }, + "MySql.EntityFrameworkCore/3.1.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5fyaHAA7ZUQPZzZaQV0s1Y38E9q7BCVZ+FHFPDh1gaW/uEx4mD4NlvUH8LUVKKydkO/xIIOebp2pnh/ut5RTMw==", + "path": "mysql.entityframeworkcore/3.1.14", + "hashPath": "mysql.entityframeworkcore.3.1.14.nupkg.sha512" + }, "NETStandard.Library/2.0.3": { "type": "package", "serviceable": true, @@ -2298,6 +3460,13 @@ "path": "newtonsoft.json/12.0.3", "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512" }, + "RestSharp/106.11.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NzndH096CTulvq+ihr7u1mBJ29oukdi9A8bypQJk+kaHxbRzTTrtgsEEQAb04ptTUZmQa7cgo7uF5z7NuEPX1Q==", + "path": "restsharp/106.11.7", + "hashPath": "restsharp.106.11.7.nupkg.sha512" + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, @@ -2326,6 +3495,13 @@ "path": "runtime.native.system/4.3.0", "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, "runtime.native.System.Net.Http/4.3.0": { "type": "package", "serviceable": true, @@ -2403,6 +3579,62 @@ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "SharpCompress/0.23.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HBbT47JHvNrsZX2dTBzUBOSzBt+EmIRGLIBkbxcP6Jef7DB4eFWQX5iHWV3Nj7hABFPCjISrZ8s0z72nF2zFHQ==", + "path": "sharpcompress/0.23.0", + "hashPath": "sharpcompress.0.23.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVPI/nh5AqfLCIKhAYqjCa6AHhc7oKApGcGM3UhMRSerFiBx58nSpGwxVFdMgjOCWZR+fA49nzsnKlWp5hFo8w==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.2", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.2.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TFSBX426OelS1tkaVC254NVVlrJIe9YLhWPkEvuqJj2104QpmDmEYOhfdfDJD1E/2SmqDhoRw1ek5cQHj8olcQ==", + "path": "sqlitepclraw.core/2.0.2", + "hashPath": "sqlitepclraw.core.2.0.2.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S+Tsqe/M7wsc+9HeediI6UHtBKf2X586aRwhi1aBVLGe0WxkAo52O9ZxwEy/v8XMLefcrEMupd2e9CDlIT6QCw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.2", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.2.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i85nt+PE5q+85jDDKos+32MyCyPIBjW09DHhTJm8Tr2lXjRza+zBB3/1ovBbHgZP8o/fXzqNwB8bZsRzEtzk4Q==", + "path": "sqlitepclraw.provider.e_sqlite3/2.0.2", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.0.2.nupkg.sha512" + }, "Swashbuckle.AspNetCore/6.0.2": { "type": "package", "serviceable": true, @@ -2431,19 +3663,12 @@ "path": "swashbuckle.aspnetcore.swaggerui/6.0.2", "hashPath": "swashbuckle.aspnetcore.swaggerui.6.0.2.nupkg.sha512" }, - "System.AppContext/4.1.0": { + "System.Buffers/4.6.1": { "type": "package", "serviceable": true, - "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", - "path": "system.appcontext/4.1.0", - "hashPath": "system.appcontext.4.1.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" + "sha512": "sha512-N8GXpmiLMtljq7gwvyS+1QvKT/W2J8sNAvx+HVg4NGmsG/H+2k/y9QI23auLJRterrzCiDH+IWAw4V/GPwsMlw==", + "path": "system.buffers/4.6.1", + "hashPath": "system.buffers.4.6.1.nupkg.sha512" }, "System.Collections/4.3.0": { "type": "package", @@ -2480,12 +3705,40 @@ "path": "system.collections.specialized/4.3.0", "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" }, - "System.ComponentModel.Annotations/4.6.0": { + "System.ComponentModel/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-pOd+UhZ3X8xfwKDlgAzowUJNjp8VYVmOHZm++vCd0kq1HZ0zK3mNo2yRXjYgv7Ik/Xi43fmJfND2PLEsQSALCg==", - "path": "system.componentmodel.annotations/4.6.0", - "hashPath": "system.componentmodel.annotations.4.6.0.nupkg.sha512" + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "path": "system.configuration.configurationmanager/4.5.0", + "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512" }, "System.Diagnostics.Contracts/4.3.0": { "type": "package", @@ -2501,12 +3754,12 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/4.5.0": { + "System.Diagnostics.DiagnosticSource/10.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==", - "path": "system.diagnostics.diagnosticsource/4.5.0", - "hashPath": "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512" + "sha512": "sha512-WBD8SloNQ9Fp+6Iz+H42w5/VdwYPz9q7iuT6V5ng2FrtR1bYsewmQ3i2PqRR4NnuSZobJ/XtiKkbQyrheDHHdQ==", + "path": "system.diagnostics.diagnosticsource/10.0.4", + "hashPath": "system.diagnostics.diagnosticsource.10.0.4.nupkg.sha512" }, "System.Diagnostics.Tools/4.3.0": { "type": "package", @@ -2550,12 +3803,12 @@ "path": "system.globalization.extensions/4.3.0", "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" }, - "System.IdentityModel.Tokens.Jwt/5.3.0": { + "System.IdentityModel.Tokens.Jwt/5.6.0": { "type": "package", "serviceable": true, - "sha512": "sha512-EdcMk+36u9gQtbwTiPQ7ckIfiADBwOmCZ6rGD2rfkaozIdW1t7vbXk/FPVAu2r9KgCQZ5245Z+P0YMM/0Q0G2g==", - "path": "system.identitymodel.tokens.jwt/5.3.0", - "hashPath": "system.identitymodel.tokens.jwt.5.3.0.nupkg.sha512" + "sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==", + "path": "system.identitymodel.tokens.jwt/5.6.0", + "hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512" }, "System.IO/4.3.0": { "type": "package", @@ -2578,6 +3831,13 @@ "path": "system.io.filesystem.primitives/4.3.0", "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" }, + "System.IO.Pipelines/10.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V7+RO17s/tzCpgqyj6t5vb54HFCvrRaMEwTcKDwpoQK66DRROzSff6kqtzHyiWRj6hrQQUmW80NL4pFSNhYpYA==", + "path": "system.io.pipelines/10.0.4", + "hashPath": "system.io.pipelines.10.0.4.nupkg.sha512" + }, "System.Linq/4.3.0": { "type": "package", "serviceable": true, @@ -2592,12 +3852,12 @@ "path": "system.linq.expressions/4.3.0", "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" }, - "System.Memory/4.5.4": { + "System.Memory/4.6.3": { "type": "package", "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" + "sha512": "sha512-qdcDOgnFZY40+Q9876JUHnlHu7bosOHX8XISRoH94fwk6hgaeQGSgfZd8srWRZNt5bV9ZW2TljcegDNxsf+96A==", + "path": "system.memory/4.6.3", + "hashPath": "system.memory.4.6.3.nupkg.sha512" }, "System.Net.Http/4.3.0": { "type": "package", @@ -2613,12 +3873,26 @@ "path": "system.net.primitives/4.3.0", "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" }, - "System.Numerics.Vectors/4.5.0": { + "System.Net.WebSockets.WebSocketProtocol/4.5.3": { "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" + "sha512": "sha512-O8RIMEVeOFzT8fscu6MDc4y+0LfnlXdqGovb0rJHBNVKhwn6BsNJmTY1oYUZPPsMfcc5OP20WpX4vj/aK8n98g==", + "path": "system.net.websockets.websocketprotocol/4.5.3", + "hashPath": "system.net.websockets.websocketprotocol.4.5.3.nupkg.sha512" + }, + "System.Numerics.Tensors/10.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EK8wJVxnVfeCzchnEqVjIfZDpVIcmjfjUs9x1nzI41X2naPGT57QjoHlQJma2vDQUxEtPQiGv/v90mwcflx6mQ==", + "path": "system.numerics.tensors/10.0.4", + "hashPath": "system.numerics.tensors.10.0.4.nupkg.sha512" + }, + "System.Numerics.Vectors/4.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQxefTnhagrhoq2ReR0D/6K0zJcr9Hrd6kikeXsA1I8kOCboTavcUC4r7TSfpKFeE163uMuxZcyfO1mGO3EN8Q==", + "path": "system.numerics.vectors/4.6.1", + "hashPath": "system.numerics.vectors.4.6.1.nupkg.sha512" }, "System.ObjectModel/4.3.0": { "type": "package", @@ -2641,6 +3915,20 @@ "path": "system.reactive/5.0.0", "hashPath": "system.reactive.5.0.0.nupkg.sha512" }, + "System.Reactive.Core/4.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YQHJOt8hZvwFelIIfs19t8Jhz5P6NS1ZZccbVUuE1LFyoFZjaUecdYIYykgXzpyj5Rl40XC3xkyuuhHRaAln2w==", + "path": "system.reactive.core/4.4.1", + "hashPath": "system.reactive.core.4.4.1.nupkg.sha512" + }, + "System.Reactive.Linq/4.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wyOVuUyHmPV667REPwcZjFjOlRLX6qSGVcXMye0qUqBAWFB3bu1RO1XLGWZTnf0d67DQHV69kw7tAtTh+4EYyQ==", + "path": "system.reactive.linq/4.4.1", + "hashPath": "system.reactive.linq.4.4.1.nupkg.sha512" + }, "System.Reflection/4.3.0": { "type": "package", "serviceable": true, @@ -2704,12 +3992,12 @@ "path": "system.runtime/4.3.0", "hashPath": "system.runtime.4.3.0.nupkg.sha512" }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "System.Runtime.CompilerServices.Unsafe/6.1.2": { "type": "package", "serviceable": true, - "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + "sha512": "sha512-2hBr6zdbIBTDE3EhK7NSVNdX58uTK6iHW/P/Axmm9sl1xoGSLqDvMtpecn226TNwHByFokYwJmt/aQQNlO5CRw==", + "path": "system.runtime.compilerservices.unsafe/6.1.2", + "hashPath": "system.runtime.compilerservices.unsafe.6.1.2.nupkg.sha512" }, "System.Runtime.Extensions/4.3.0": { "type": "package", @@ -2732,13 +4020,6 @@ "path": "system.runtime.interopservices/4.3.0", "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, "System.Runtime.InteropServices.WindowsRuntime/4.3.0": { "type": "package", "serviceable": true, @@ -2753,6 +4034,20 @@ "path": "system.runtime.numerics/4.3.0", "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "path": "system.runtime.serialization.formatters/4.3.0", + "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Json/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==", + "path": "system.runtime.serialization.json/4.3.0", + "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512" + }, "System.Runtime.Serialization.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -2760,26 +4055,12 @@ "path": "system.runtime.serialization.primitives/4.3.0", "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" }, - "System.Runtime.Serialization.Xml/4.3.0": { + "System.Security.AccessControl/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==", - "path": "system.runtime.serialization.xml/4.3.0", - "hashPath": "system.runtime.serialization.xml.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", - "path": "system.security.accesscontrol/4.5.0", - "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" - }, - "System.Security.Claims/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", - "path": "system.security.claims/4.3.0", - "hashPath": "system.security.claims.4.3.0.nupkg.sha512" + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", @@ -2788,12 +4069,12 @@ "path": "system.security.cryptography.algorithms/4.3.0", "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.Cng/4.4.0": { + "System.Security.Cryptography.Cng/4.5.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3d/d+7sdNpfYfqJFzuE/o6Pl/reaMbH7rlUMNvtm4+XVYHY32tdFa45yjB3vhb6q0YY+IV8GUuiBPRsBFP3yaw==", - "path": "system.security.cryptography.cng/4.4.0", - "hashPath": "system.security.cryptography.cng.4.4.0.nupkg.sha512" + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" }, "System.Security.Cryptography.Csp/4.3.0": { "type": "package", @@ -2830,6 +4111,13 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "path": "system.security.cryptography.protecteddata/4.5.0", + "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512" + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", "serviceable": true, @@ -2844,26 +4132,26 @@ "path": "system.security.cryptography.xml/4.5.0", "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512" }, - "System.Security.Permissions/4.5.0": { + "System.Security.Permissions/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", - "path": "system.security.permissions/4.5.0", - "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" }, - "System.Security.Principal/4.3.0": { + "System.Security.Principal.Windows/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", - "path": "system.security.principal/4.3.0", - "hashPath": "system.security.principal.4.3.0.nupkg.sha512" + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" }, - "System.Security.Principal.Windows/4.5.0": { + "System.Security.SecureString/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", - "path": "system.security.principal.windows/4.5.0", - "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==", + "path": "system.security.securestring/4.3.0", + "hashPath": "system.security.securestring.4.3.0.nupkg.sha512" }, "System.Text.Encoding/4.3.0": { "type": "package", @@ -2872,6 +4160,13 @@ "path": "system.text.encoding/4.3.0", "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "path": "system.text.encoding.codepages/4.5.1", + "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512" + }, "System.Text.Encoding.Extensions/4.3.0": { "type": "package", "serviceable": true, @@ -2879,19 +4174,19 @@ "path": "system.text.encoding.extensions/4.3.0", "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" }, - "System.Text.Encodings.Web/5.0.0": { + "System.Text.Encodings.Web/10.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", - "path": "system.text.encodings.web/5.0.0", - "hashPath": "system.text.encodings.web.5.0.0.nupkg.sha512" + "sha512": "sha512-6g3B7jNsPRNf4luuYt1qE4R8S3JI+zMsfGWL9Idv4Mk1Z9Gh+rCagp9sG3AejPS87yBj1DjopM4i3wSz0WnEqg==", + "path": "system.text.encodings.web/10.0.4", + "hashPath": "system.text.encodings.web.10.0.4.nupkg.sha512" }, - "System.Text.Json/5.0.0": { + "System.Text.Json/10.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", - "path": "system.text.json/5.0.0", - "hashPath": "system.text.json.5.0.0.nupkg.sha512" + "sha512": "sha512-1tRPRt8D/kzjGL7em1uJ3iJlvVIC3G/sZJ+ZgSvtVYLXGGO26Clkqy2b5uts/pyR706Yw8/xA7exeI2PI50dpw==", + "path": "system.text.json/10.0.4", + "hashPath": "system.text.json.10.0.4.nupkg.sha512" }, "System.Text.RegularExpressions/4.3.0": { "type": "package", @@ -2907,6 +4202,13 @@ "path": "system.threading/4.3.0", "hashPath": "system.threading.4.3.0.nupkg.sha512" }, + "System.Threading.Channels/10.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YkecPP9I3PjRouQJzG/JwUoiASqHKddXQrgu+CKHra6yFv6AmTr8PCwzHanNus/kDeujWM4Bqunx7dYFRiPErg==", + "path": "system.threading.channels/10.0.4", + "hashPath": "system.threading.channels.10.0.4.nupkg.sha512" + }, "System.Threading.Tasks/4.3.0": { "type": "package", "serviceable": true, @@ -2914,12 +4216,19 @@ "path": "system.threading.tasks/4.3.0", "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" }, - "System.Threading.Tasks.Extensions/4.5.4": { + "System.Threading.Tasks.Dataflow/4.9.0": { "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" + "sha512": "sha512-dTS+3D/GtG2/Pvc3E5YzVvAa7aQJgLDlZDIzukMOJjYudVOQOUXEU68y6Zi3Nn/jqIeB5kOCwrGbQFAKHVzXEQ==", + "path": "system.threading.tasks.dataflow/4.9.0", + "hashPath": "system.threading.tasks.dataflow.4.9.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7sCiwilJLYbTZELaKnc7RecBBXWXA+xMLQWZKWawBxYjp6DBlSE3v9/UcvKBvr1vv2tTOhipiogM8rRmxlhrVA==", + "path": "system.threading.tasks.extensions/4.6.3", + "hashPath": "system.threading.tasks.extensions.4.6.3.nupkg.sha512" }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", @@ -2956,12 +4265,47 @@ "path": "xdashboard.xcommons/1.0.0", "hashPath": "xdashboard.xcommons.1.0.0.nupkg.sha512" }, + "xDashboard.xDataService/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cKdH1fqyEkH0sIzAY4Y5KbsyORDTI1rQ/SL71c4GXY3ruY7vA6CebqEPBDsQQxGflJwI3RiIsRl3Ms5eULejzA==", + "path": "xdashboard.xdataservice/1.0.0", + "hashPath": "xdashboard.xdataservice.1.0.0.nupkg.sha512" + }, "xDashboard.xExceptions/1.0.0": { "type": "package", "serviceable": true, "sha512": "sha512-VQzY7lVQLimslT4DUPvtHskX4lb6N+lBbWlySzzohOWcU+w1zFpz6pEcsEFZwnAsADbCiGebubMR2nFexiWbYw==", "path": "xdashboard.xexceptions/1.0.0", "hashPath": "xdashboard.xexceptions.1.0.0.nupkg.sha512" + }, + "xDashboard.xHttpService/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f9akpO5K8VioWTHkKCC0+zuDz1BQarwRcBWtDx0ESEqsJHKr/Ad4iSNJYYQ/5I1gU6R8vULm523ddeebn36zwQ==", + "path": "xdashboard.xhttpservice/1.0.0", + "hashPath": "xdashboard.xhttpservice.1.0.0.nupkg.sha512" + }, + "xDashboard.xIdentityModels/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VbTXDZWcy/1iDCsW3QFM7lKO+Q+9TAPYcpXzNCrOQethdUYMQlPY9s/pXRg3+bQVIc8FH/TxJQJt6h1M2UFKFw==", + "path": "xdashboard.xidentitymodels/1.0.0", + "hashPath": "xdashboard.xidentitymodels.1.0.0.nupkg.sha512" + }, + "xDashboard.xIdentityService/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/MEQ6UoBFwQnQADarkT2EAOmKyKziMYFw5pcboU0xJQARQhz2sLoDVXYrziCufNilImlG6zNGt2a2GuCc461Jg==", + "path": "xdashboard.xidentityservice/1.0.0", + "hashPath": "xdashboard.xidentityservice.1.0.0.nupkg.sha512" + }, + "xDashboard.xModels/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w4lcmCD2B2VugvC2w1NT8XZKsF1fguSQGlQyvi+BlQh0UhHKhdR6oCqesLEiBB0guvgFQAmHHXVT2NS0K67yYA==", + "path": "xdashboard.xmodels/1.0.0", + "hashPath": "xdashboard.xmodels.1.0.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/bin/Debug/netstandard2.0/xAiService.dll b/bin/Debug/netstandard2.0/xAiService.dll index 3a7d3ef..8c72797 100644 Binary files a/bin/Debug/netstandard2.0/xAiService.dll and b/bin/Debug/netstandard2.0/xAiService.dll differ diff --git a/bin/Debug/netstandard2.0/xAiService.pdb b/bin/Debug/netstandard2.0/xAiService.pdb index 16ba0e9..cf010b2 100644 Binary files a/bin/Debug/netstandard2.0/xAiService.pdb and b/bin/Debug/netstandard2.0/xAiService.pdb differ diff --git a/nuget.config b/nuget.config new file mode 100644 index 0000000..ddee910 --- /dev/null +++ b/nuget.config @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/obj/Debug/netstandard2.0/xAiService.AssemblyInfo.cs b/obj/Debug/netstandard2.0/xAiService.AssemblyInfo.cs index 65517be..8c423fe 100644 --- a/obj/Debug/netstandard2.0/xAiService.AssemblyInfo.cs +++ b/obj/Debug/netstandard2.0/xAiService.AssemblyInfo.cs @@ -15,9 +15,9 @@ using System.Reflection; [assembly: System.Reflection.AssemblyDescriptionAttribute(("\r\n it is a Part of xSaherElm project which Provides Services to use xSaherEl" + "m AI Features ...\r\n "))] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c538f9555ab8bfc86ea124ed5bfbd2d63c27f7f9")] -[assembly: System.Reflection.AssemblyProductAttribute("xAiService")] -[assembly: System.Reflection.AssemblyTitleAttribute("xAiService")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9b271d15725deb547d40f0de46749880ce499e26")] +[assembly: System.Reflection.AssemblyProductAttribute("XAiService")] +[assembly: System.Reflection.AssemblyTitleAttribute("XAiService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] // Generated by the MSBuild WriteCodeFragment class. diff --git a/obj/Debug/netstandard2.0/xAiService.AssemblyInfoInputs.cache b/obj/Debug/netstandard2.0/xAiService.AssemblyInfoInputs.cache index 5626683..9c8192a 100644 --- a/obj/Debug/netstandard2.0/xAiService.AssemblyInfoInputs.cache +++ b/obj/Debug/netstandard2.0/xAiService.AssemblyInfoInputs.cache @@ -1 +1 @@ -67816ea562b25f672b311e2c73d380d615ccf404089ec562f84575f6211c1c89 +3751af62e393104aa7cc93fb29dadb0ce87a2742a42c91243d02c956bbb0a2bd diff --git a/obj/Debug/netstandard2.0/xAiService.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netstandard2.0/xAiService.GeneratedMSBuildEditorConfig.editorconfig index d319cb7..a0a382d 100644 --- a/obj/Debug/netstandard2.0/xAiService.GeneratedMSBuildEditorConfig.editorconfig +++ b/obj/Debug/netstandard2.0/xAiService.GeneratedMSBuildEditorConfig.editorconfig @@ -1,6 +1,6 @@ is_global = true -build_property.RootNamespace = xAiService -build_property.ProjectDir = C:\Users\saherelm\Documents\Projects\xSaherElmAIWorkspace\Modules\xAiService\ +build_property.RootNamespace = XAiService +build_property.ProjectDir = C:\Users\saherelm\Documents\Projects\xSaherElmAIWorkspace\Modules\XAiService\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.CsWinRTUseWindowsUIXamlProjections = false diff --git a/obj/Debug/netstandard2.0/xAiService.assets.cache b/obj/Debug/netstandard2.0/xAiService.assets.cache index bfef07e..3c9809a 100644 Binary files a/obj/Debug/netstandard2.0/xAiService.assets.cache and b/obj/Debug/netstandard2.0/xAiService.assets.cache differ diff --git a/obj/Debug/netstandard2.0/xAiService.csproj.AssemblyReference.cache b/obj/Debug/netstandard2.0/xAiService.csproj.AssemblyReference.cache index 4486f44..67a6b45 100644 Binary files a/obj/Debug/netstandard2.0/xAiService.csproj.AssemblyReference.cache and b/obj/Debug/netstandard2.0/xAiService.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/netstandard2.0/xAiService.csproj.CoreCompileInputs.cache b/obj/Debug/netstandard2.0/xAiService.csproj.CoreCompileInputs.cache index faa539d..8462a71 100644 --- a/obj/Debug/netstandard2.0/xAiService.csproj.CoreCompileInputs.cache +++ b/obj/Debug/netstandard2.0/xAiService.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -f0ead02c1068f207eba3bb08fcbc39f19ac31910334cf9e965e52b12f4a586f1 +e4c628925dc39b7029af0ce70fd6736a86a5225a7029db8fb0a535173642b3b1 diff --git a/obj/Debug/netstandard2.0/xAiService.dll b/obj/Debug/netstandard2.0/xAiService.dll index 3a7d3ef..8c72797 100644 Binary files a/obj/Debug/netstandard2.0/xAiService.dll and b/obj/Debug/netstandard2.0/xAiService.dll differ diff --git a/obj/Debug/netstandard2.0/xAiService.pdb b/obj/Debug/netstandard2.0/xAiService.pdb index 16ba0e9..cf010b2 100644 Binary files a/obj/Debug/netstandard2.0/xAiService.pdb and b/obj/Debug/netstandard2.0/xAiService.pdb differ diff --git a/obj/project.assets.json b/obj/project.assets.json index fea6d74..cf8eb7a 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -33,6 +33,212 @@ "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} } }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "related": ".xml" + } + } + }, + "DnsClient/1.4.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/DnsClient.dll": { + "related": ".xml" + } + } + }, + "Google.Protobuf/3.14.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + } + }, + "GraphQL/3.0.0.2026": { + "type": "package", + "dependencies": { + "GraphQL-Parser": "5.3.0", + "Microsoft.CSharp": "4.7.0", + "System.Buffers": "4.5.1", + "System.ComponentModel.Annotations": "4.7.0", + "System.Reactive.Core": "4.4.1", + "System.Reactive.Linq": "4.4.1" + }, + "compile": { + "lib/netstandard2.0/GraphQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/GraphQL.dll": { + "related": ".xml" + } + } + }, + "GraphQL-Parser/5.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/GraphQL-Parser.dll": {} + }, + "runtime": { + "lib/netstandard2.0/GraphQL-Parser.dll": {} + } + }, + "GraphQL.NewtonsoftJson/3.0.0.2026": { + "type": "package", + "dependencies": { + "GraphQL": "3.0.0.2026", + "Newtonsoft.Json": "12.0.3" + }, + "compile": { + "lib/netstandard2.0/GraphQL.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/GraphQL.NewtonsoftJson.dll": { + "related": ".xml" + } + } + }, + "GraphQL.Server.Core/4.0.1": { + "type": "package", + "dependencies": { + "GraphQL": "3.0.0.2026", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/GraphQL.Server.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Core.dll": {} + } + }, + "GraphQL.Server.Transports.AspNetCore/4.0.1": { + "type": "package", + "dependencies": { + "GraphQL.Server.Core": "4.0.1", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/GraphQL.Server.Transports.AspNetCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Transports.AspNetCore.dll": {} + } + }, + "GraphQL.Server.Transports.AspNetCore.NewtonsoftJson/4.0.1": { + "type": "package", + "dependencies": { + "GraphQL.NewtonsoftJson": "3.0.0.2026", + "GraphQL.Server.Transports.AspNetCore": "4.0.1" + }, + "compile": { + "lib/netstandard2.0/GraphQL.Server.Transports.AspNetCore.NewtonsoftJson.dll": {} + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Transports.AspNetCore.NewtonsoftJson.dll": {} + } + }, + "GraphQL.Server.Transports.Subscriptions.Abstractions/4.0.1": { + "type": "package", + "dependencies": { + "GraphQL.NewtonsoftJson": "3.0.0.2026", + "GraphQL.Server.Core": "4.0.1", + "Microsoft.Extensions.Logging": "2.2.0", + "System.Threading.Tasks.Dataflow": "4.9.0" + }, + "compile": { + "lib/netstandard2.0/GraphQL.Server.Transports.Subscriptions.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Transports.Subscriptions.Abstractions.dll": {} + } + }, + "GraphQL.Server.Transports.WebSockets/4.0.1": { + "type": "package", + "dependencies": { + "GraphQL.Server.Transports.Subscriptions.Abstractions": "4.0.1", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.1", + "Microsoft.Extensions.Logging": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/GraphQL.Server.Transports.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Transports.WebSockets.dll": {} + } + }, + "GraphQL.Server.Ui.Playground/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Newtonsoft.Json": "12.0.3" + }, + "compile": { + "lib/netstandard2.0/GraphQL.Server.Ui.Playground.dll": {} + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Ui.Playground.dll": {} + } + }, + "GraphQL.Server.Ui.Voyager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Newtonsoft.Json": "12.0.3" + }, + "compile": { + "lib/netstandard2.0/GraphQL.Server.Ui.Voyager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/GraphQL.Server.Ui.Voyager.dll": {} + } + }, + "GraphQL.SystemTextJson/3.0.0.2026": { + "type": "package", + "dependencies": { + "GraphQL": "3.0.0.2026", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/GraphQL.SystemTextJson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/GraphQL.SystemTextJson.dll": { + "related": ".xml" + } + } + }, "IdentityModel/5.0.1": { "type": "package", "dependencies": { @@ -50,6 +256,75 @@ } } }, + "IdentityModel.AspNetCore.OAuth2Introspection/4.0.0-preview.6": { + "type": "package", + "dependencies": { + "IdentityModel": "4.0.0-preview.2.13", + "Microsoft.AspNetCore.Authentication": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.Caching.Memory": "2.1.0", + "Microsoft.Extensions.Http": "2.1.0" + }, + "compile": { + "lib/netstandard2.0/IdentityModel.AspNetCore.OAuth2Introspection.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/IdentityModel.AspNetCore.OAuth2Introspection.dll": { + "related": ".pdb;.xml" + } + } + }, + "K4os.Compression.LZ4/1.1.11": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "related": ".xml" + } + } + }, + "K4os.Compression.LZ4.Streams/1.1.11": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.1.11", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": { + "related": ".xml" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "related": ".xml" + } + } + }, "libphonenumber-csharp/8.12.17": { "type": "package", "dependencies": { @@ -195,7 +470,7 @@ } } }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { + "Microsoft.AspNetCore.Cryptography.Internal/5.0.2": { "type": "package", "compile": { "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { @@ -208,6 +483,22 @@ } } }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "5.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, "Microsoft.AspNetCore.DataProtection/2.2.0": { "type": "package", "dependencies": { @@ -505,6 +796,25 @@ } } }, + "Microsoft.AspNetCore.WebSockets/2.2.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": { + "related": ".xml" + } + } + }, "Microsoft.AspNetCore.WebUtilities/2.2.0": { "type": "package", "dependencies": { @@ -522,10 +832,10 @@ } } }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "Microsoft.Bcl.AsyncInterfaces/10.0.4": { "type": "package", "dependencies": { - "System.Threading.Tasks.Extensions": "4.5.4" + "System.Threading.Tasks.Extensions": "4.6.3" }, "compile": { "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": { @@ -538,6 +848,30 @@ } } }, + "Microsoft.Bcl.HashCode/1.1.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.Numerics/10.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Bcl.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Bcl.Numerics.dll": { + "related": ".xml" + } + } + }, "Microsoft.CSharp/4.7.0": { "type": "package", "compile": { @@ -551,23 +885,218 @@ } } }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { + "Microsoft.Data.SqlClient/1.1.3": { "type": "package", "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + "Microsoft.Identity.Client": "3.0.8", + "Microsoft.Win32.Registry": "4.5.0", + "System.Buffers": "4.4.0", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Memory": "4.5.1", + "System.Security.Principal.Windows": "4.5.0", + "System.Text.Encoding.CodePages": "4.5.0", + "runtime.native.System.Data.SqlClient.sni": "4.4.0" }, "compile": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.Sqlite.Core/3.1.14": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.DotNet.PlatformAbstractions/3.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/3.1.14": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "Microsoft.Bcl.HashCode": "1.1.1", + "Microsoft.EntityFrameworkCore.Abstractions": "3.1.14", + "Microsoft.EntityFrameworkCore.Analyzers": "3.1.14", + "Microsoft.Extensions.Caching.Memory": "3.1.14", + "Microsoft.Extensions.DependencyInjection": "3.1.14", + "Microsoft.Extensions.Logging": "3.1.14", + "System.Collections.Immutable": "1.7.1", + "System.ComponentModel.Annotations": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.14": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "3.1.14" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/3.1.14": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "3.1.14", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.2" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/3.1.14": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "3.1.14", + "Microsoft.DotNet.PlatformAbstractions": "3.1.6", + "Microsoft.EntityFrameworkCore.Relational": "3.1.14", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/3.1.14": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "1.1.3", + "Microsoft.EntityFrameworkCore.Relational": "3.1.14" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.AI/10.4.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.AI.Abstractions": "10.4.1", + "Microsoft.Extensions.Caching.Abstractions": "10.0.4", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "Microsoft.Extensions.Logging.Abstractions": "10.0.4", + "System.Diagnostics.DiagnosticSource": "10.0.4", + "System.Numerics.Tensors": "10.0.4", + "System.Text.Json": "10.0.4", + "System.Threading.Channels": "10.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.AI.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.AI.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.AI.Abstractions/10.4.1": { + "type": "package", + "dependencies": { + "System.Text.Json": "10.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.AI.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.AI.Abstractions.dll": { + "related": ".xml" + } } }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { @@ -579,6 +1108,42 @@ "buildMultiTargeting/_._": {} } }, + "Microsoft.Extensions.Caching.Abstractions/10.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Memory/3.1.14": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "3.1.14", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14", + "Microsoft.Extensions.Logging.Abstractions": "3.1.14", + "Microsoft.Extensions.Options": "3.1.14" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + } + }, "Microsoft.Extensions.Configuration/5.0.0": { "type": "package", "dependencies": { @@ -646,8 +1211,12 @@ } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" + }, "compile": { "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { "related": ".xml" @@ -659,20 +1228,20 @@ } } }, - "Microsoft.Extensions.DependencyModel/2.1.0": { + "Microsoft.Extensions.DependencyModel/3.1.6": { "type": "package", "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "2.1.0", - "Newtonsoft.Json": "9.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Linq": "4.1.0" + "System.Text.Json": "4.7.2" }, "compile": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } } }, "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { @@ -732,6 +1301,61 @@ } } }, + "Microsoft.Extensions.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Core/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.2", + "Microsoft.Extensions.Logging": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.Identity.Core": "5.0.2", + "Microsoft.Extensions.Logging": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, "Microsoft.Extensions.Localization/2.1.0": { "type": "package", "dependencies": { @@ -764,8 +1388,34 @@ } } }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "Microsoft.Extensions.Logging/5.0.0": { "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", + "System.Buffers": "4.6.1", + "System.Diagnostics.DiagnosticSource": "10.0.4", + "System.Memory": "4.6.3" + }, "compile": { "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { "related": ".xml" @@ -775,6 +1425,9 @@ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets": {} } }, "Microsoft.Extensions.ObjectPool/2.2.0": { @@ -790,12 +1443,11 @@ } } }, - "Microsoft.Extensions.Options/3.0.0": { + "Microsoft.Extensions.Options/5.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0", - "Microsoft.Extensions.Primitives": "3.0.0", - "System.ComponentModel.Annotations": "4.6.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" }, "compile": { "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { @@ -808,12 +1460,11 @@ } } }, - "Microsoft.Extensions.Primitives/5.0.0": { + "Microsoft.Extensions.Primitives/10.0.4": { "type": "package", "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" }, "compile": { "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { @@ -844,39 +1495,59 @@ } } }, - "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { + "Microsoft.Identity.Client/3.0.8": { "type": "package", "dependencies": { - "Microsoft.IdentityModel.Tokens": "5.3.0", + "Microsoft.CSharp": "4.5.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Json": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.SecureString": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/5.6.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "5.6.0", "Newtonsoft.Json": "10.0.1" }, "compile": { "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".pdb;.xml" + "related": ".xml" } }, "runtime": { "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".pdb;.xml" + "related": ".xml" } } }, - "Microsoft.IdentityModel.Logging/5.3.0": { + "Microsoft.IdentityModel.Logging/5.6.0": { "type": "package", - "dependencies": { - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0" - }, "compile": { "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".pdb;.xml" + "related": ".xml" } }, "runtime": { "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".pdb;.xml" + "related": ".xml" } } }, @@ -919,33 +1590,21 @@ } } }, - "Microsoft.IdentityModel.Tokens/5.3.0": { + "Microsoft.IdentityModel.Tokens/5.6.0": { "type": "package", "dependencies": { - "Microsoft.IdentityModel.Logging": "5.3.0", + "Microsoft.IdentityModel.Logging": "5.6.0", "Newtonsoft.Json": "10.0.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Serialization.Xml": "4.3.0", - "System.Security.Claims": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0" + "System.Security.Cryptography.Cng": "4.5.0" }, "compile": { "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".pdb;.xml" + "related": ".xml" } }, "runtime": { "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".pdb;.xml" + "related": ".xml" } } }, @@ -1037,6 +1696,162 @@ } } }, + "MongoDB.Bson/2.13.2": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/2.13.2": { + "type": "package", + "dependencies": { + "MongoDB.Bson": "2.13.2", + "MongoDB.Driver.Core": "2.13.2", + "MongoDB.Libmongocrypt": "1.2.2" + }, + "compile": { + "lib/netstandard2.0/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.Core/2.13.2": { + "type": "package", + "dependencies": { + "DnsClient": "1.4.0", + "MongoDB.Bson": "2.13.2", + "MongoDB.Libmongocrypt": "1.2.2", + "SharpCompress": "0.23.0", + "System.Buffers": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/win/native/libzstd.dll": { + "assetType": "native", + "rid": "win" + }, + "runtimes/win/native/snappy32.dll": { + "assetType": "native", + "rid": "win" + }, + "runtimes/win/native/snappy64.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "MongoDB.Libmongocrypt/1.2.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win/native/mongocrypt.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "MySql.Data/8.0.26": { + "type": "package", + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.14.0", + "K4os.Compression.LZ4": "1.1.11", + "K4os.Compression.LZ4.Streams": "1.1.11", + "K4os.Hash.xxHash": "1.0.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/MySql.Data.dll": { + "related": ".xml" + }, + "lib/netstandard2.0/Ubiety.Dns.Core.dll": {}, + "lib/netstandard2.0/Zstandard.Net.dll": {} + }, + "runtime": { + "lib/netstandard2.0/MySql.Data.dll": { + "related": ".xml" + }, + "lib/netstandard2.0/Ubiety.Dns.Core.dll": {}, + "lib/netstandard2.0/Zstandard.Net.dll": {} + } + }, + "MySql.EntityFrameworkCore/3.1.14": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "3.1.14", + "MySql.Data": "8.0.26" + }, + "compile": { + "lib/netstandard2.0/MySql.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MySql.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, "NETStandard.Library/2.0.3": { "type": "package", "dependencies": { @@ -1065,6 +1880,19 @@ } } }, + "RestSharp/106.11.7": { + "type": "package", + "compile": { + "lib/netstandard2.0/RestSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/RestSharp.dll": { + "related": ".xml" + } + } + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "runtimeTargets": { @@ -1105,6 +1933,14 @@ "lib/netstandard1.0/_._": {} } }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, "runtime.native.System.Net.Http/4.3.0": { "type": "package", "dependencies": { @@ -1223,6 +2059,142 @@ } } }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SharpCompress/0.23.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SharpCompress.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.2": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.2", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.2", + "SQLitePCLRaw.provider.e_sqlite3": "2.0.2" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.2": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.0.2": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.2" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, "Swashbuckle.AspNetCore/6.0.2": { "type": "package", "dependencies": { @@ -1290,24 +2262,10 @@ } } }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.5.1": { + "System.Buffers/4.6.1": { "type": "package", "compile": { - "ref/netstandard2.0/System.Buffers.dll": { + "lib/netstandard2.0/System.Buffers.dll": { "related": ".xml" } }, @@ -1325,7 +2283,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Collections.dll": { + "ref/netstandard1.3/_._": { "related": ".xml" } } @@ -1408,7 +2366,21 @@ "lib/netstandard1.3/System.Collections.Specialized.dll": {} } }, - "System.ComponentModel.Annotations/4.6.0": { + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { "type": "package", "compile": { "ref/netstandard2.0/System.ComponentModel.Annotations.dll": { @@ -1419,6 +2391,65 @@ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {} } }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, "System.Diagnostics.Contracts/4.3.0": { "type": "package", "dependencies": { @@ -1441,20 +2472,24 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { + "ref/netstandard1.3/_._": { "related": ".xml" } } }, - "System.Diagnostics.DiagnosticSource/4.5.0": { + "System.Diagnostics.DiagnosticSource/10.0.4": { "type": "package", + "dependencies": { + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" + }, "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { "related": ".xml" } } @@ -1467,7 +2502,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Diagnostics.Tools.dll": { + "ref/netstandard1.0/_._": { "related": ".xml" } } @@ -1480,7 +2515,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { + "ref/netstandard1.5/_._": { "related": ".xml" } } @@ -1520,7 +2555,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Globalization.dll": { + "ref/netstandard1.3/_._": { "related": ".xml" } } @@ -1565,21 +2600,21 @@ } } }, - "System.IdentityModel.Tokens.Jwt/5.3.0": { + "System.IdentityModel.Tokens.Jwt/5.6.0": { "type": "package", "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "5.3.0", - "Microsoft.IdentityModel.Tokens": "5.3.0", + "Microsoft.IdentityModel.JsonWebTokens": "5.6.0", + "Microsoft.IdentityModel.Tokens": "5.6.0", "Newtonsoft.Json": "10.0.1" }, "compile": { "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".pdb;.xml" + "related": ".xml" } }, "runtime": { "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".pdb;.xml" + "related": ".xml" } } }, @@ -1611,7 +2646,7 @@ "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { + "ref/netstandard1.3/_._": { "related": ".xml" } } @@ -1622,7 +2657,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "ref/netstandard1.3/_._": { "related": ".xml" } }, @@ -1630,6 +2665,24 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, + "System.IO.Pipelines/10.0.4": { + "type": "package", + "dependencies": { + "System.Buffers": "4.6.1", + "System.Memory": "4.6.3", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "compile": { + "lib/netstandard2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, "System.Linq/4.3.0": { "type": "package", "dependencies": { @@ -1640,7 +2693,7 @@ "System.Runtime.Extensions": "4.3.0" }, "compile": { - "ref/netstandard1.6/System.Linq.dll": { + "ref/netstandard1.6/_._": { "related": ".xml" } }, @@ -1678,12 +2731,12 @@ "lib/netstandard1.6/System.Linq.Expressions.dll": {} } }, - "System.Memory/4.5.4": { + "System.Memory/4.6.3": { "type": "package", "dependencies": { - "System.Buffers": "4.5.1", - "System.Numerics.Vectors": "4.4.0", - "System.Runtime.CompilerServices.Unsafe": "4.5.3" + "System.Buffers": "4.6.1", + "System.Numerics.Vectors": "4.6.1", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" }, "compile": { "lib/netstandard2.0/System.Memory.dll": { @@ -1756,10 +2809,44 @@ } } }, - "System.Numerics.Vectors/4.5.0": { + "System.Net.WebSockets.WebSocketProtocol/4.5.3": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0", + "System.Memory": "4.5.1", + "System.Numerics.Vectors": "4.4.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {} + } + }, + "System.Numerics.Tensors/10.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.Numerics": "10.0.4", + "System.Memory": "4.6.3", + "System.Numerics.Vectors": "4.6.1" + }, + "compile": { + "lib/netstandard2.0/System.Numerics.Tensors.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Numerics.Tensors.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.6.1": { "type": "package", "compile": { - "ref/netstandard2.0/System.Numerics.Vectors.dll": { + "lib/netstandard2.0/System.Numerics.Vectors.dll": { "related": ".xml" } }, @@ -1840,6 +2927,40 @@ } } }, + "System.Reactive.Core/4.4.1": { + "type": "package", + "dependencies": { + "System.Reactive": "4.4.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/System.Reactive.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reactive.Core.dll": { + "related": ".xml" + } + } + }, + "System.Reactive.Linq/4.4.1": { + "type": "package", + "dependencies": { + "System.Reactive": "4.4.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/System.Reactive.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reactive.Linq.dll": { + "related": ".xml" + } + } + }, "System.Reflection/4.3.0": { "type": "package", "dependencies": { @@ -1935,7 +3056,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": { + "ref/netstandard1.5/_._": { "related": ".xml" } }, @@ -1970,10 +3091,10 @@ } } }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "System.Runtime.CompilerServices.Unsafe/6.1.2": { "type": "package", "compile": { - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { "related": ".xml" } }, @@ -1991,7 +3112,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { + "ref/netstandard1.5/_._": { "related": ".xml" } } @@ -2020,39 +3141,11 @@ "System.Runtime.Handles": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.Runtime.InteropServices.dll": { + "ref/netstandard1.5/_._": { "related": ".xml" } } }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, "System.Runtime.InteropServices.WindowsRuntime/4.3.0": { "type": "package", "dependencies": { @@ -2084,6 +3177,38 @@ "lib/netstandard1.3/System.Runtime.Numerics.dll": {} } }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Private.DataContractSerialization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, "System.Runtime.Serialization.Primitives/4.3.0": { "type": "package", "dependencies": { @@ -2091,7 +3216,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": { + "ref/netstandard1.3/_._": { "related": ".xml" } }, @@ -2099,29 +3224,10 @@ "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} } }, - "System.Runtime.Serialization.Xml/4.3.0": { + "System.Security.AccessControl/4.7.0": { "type": "package", "dependencies": { - "System.IO": "4.3.0", - "System.Private.DataContractSerialization": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Security.AccessControl/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.Principal.Windows": "4.5.0" + "System.Security.Principal.Windows": "4.7.0" }, "compile": { "ref/netstandard2.0/System.Security.AccessControl.dll": { @@ -2129,7 +3235,9 @@ } }, "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } }, "runtimeTargets": { "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll": { @@ -2138,26 +3246,6 @@ } } }, - "System.Security.Claims/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Security.Principal": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", "dependencies": { @@ -2194,10 +3282,10 @@ } } }, - "System.Security.Cryptography.Cng/4.4.0": { + "System.Security.Cryptography.Cng/4.5.0": { "type": "package", "compile": { - "ref/netstandard2.0/_._": { + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll": { "related": ".xml" } }, @@ -2344,6 +3432,26 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", "dependencies": { @@ -2404,10 +3512,10 @@ "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {} } }, - "System.Security.Permissions/4.5.0": { + "System.Security.Permissions/4.7.0": { "type": "package", "dependencies": { - "System.Security.AccessControl": "4.5.0" + "System.Security.AccessControl": "4.7.0" }, "compile": { "ref/netstandard2.0/System.Security.Permissions.dll": { @@ -2415,24 +3523,12 @@ } }, "runtime": { - "lib/netstandard2.0/System.Security.Permissions.dll": {} - } - }, - "System.Security.Principal/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Security.Principal.dll": { + "lib/netstandard2.0/System.Security.Permissions.dll": { "related": ".xml" } - }, - "runtime": { - "lib/netstandard1.0/System.Security.Principal.dll": {} } }, - "System.Security.Principal.Windows/4.5.0": { + "System.Security.Principal.Windows/4.7.0": { "type": "package", "compile": { "ref/netstandard2.0/System.Security.Principal.Windows.dll": { @@ -2440,7 +3536,9 @@ } }, "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } }, "runtimeTargets": { "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": { @@ -2449,6 +3547,34 @@ } } }, + "System.Security.SecureString/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Text.Encoding/4.3.0": { "type": "package", "dependencies": { @@ -2462,6 +3588,24 @@ } } }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Text.Encoding.Extensions/4.3.0": { "type": "package", "dependencies": { @@ -2476,10 +3620,12 @@ } } }, - "System.Text.Encodings.Web/5.0.0": { + "System.Text.Encodings.Web/10.0.4": { "type": "package", "dependencies": { - "System.Memory": "4.5.4" + "System.Buffers": "4.6.1", + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2" }, "compile": { "lib/netstandard2.0/System.Text.Encodings.Web.dll": { @@ -2492,16 +3638,16 @@ } } }, - "System.Text.Json/5.0.0": { + "System.Text.Json/10.0.4": { "type": "package", "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "5.0.0", - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "5.0.0", - "System.Text.Encodings.Web": "5.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "System.Buffers": "4.6.1", + "System.IO.Pipelines": "10.0.4", + "System.Memory": "4.6.3", + "System.Runtime.CompilerServices.Unsafe": "6.1.2", + "System.Text.Encodings.Web": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" }, "compile": { "lib/netstandard2.0/System.Text.Json.dll": { @@ -2512,6 +3658,9 @@ "lib/netstandard2.0/System.Text.Json.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/netstandard2.0/System.Text.Json.targets": {} } }, "System.Text.RegularExpressions/4.3.0": { @@ -2525,7 +3674,7 @@ "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.6/System.Text.RegularExpressions.dll": { + "ref/netstandard1.6/_._": { "related": ".xml" } }, @@ -2540,7 +3689,7 @@ "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Threading.dll": { + "ref/netstandard1.3/_._": { "related": ".xml" } }, @@ -2548,6 +3697,23 @@ "lib/netstandard1.3/System.Threading.dll": {} } }, + "System.Threading.Channels/10.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.4", + "System.Threading.Tasks.Extensions": "4.6.3" + }, + "compile": { + "lib/netstandard2.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Threading.Channels.dll": { + "related": ".xml" + } + } + }, "System.Threading.Tasks/4.3.0": { "type": "package", "dependencies": { @@ -2561,10 +3727,23 @@ } } }, - "System.Threading.Tasks.Extensions/4.5.4": { + "System.Threading.Tasks.Dataflow/4.9.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.6.3": { "type": "package", "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "4.5.3" + "System.Runtime.CompilerServices.Unsafe": "6.1.2" }, "compile": { "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": { @@ -2597,7 +3776,7 @@ "System.Threading.Tasks.Extensions": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "ref/netstandard1.3/_._": { "related": ".xml" } }, @@ -2718,6 +3897,32 @@ } } }, + "xDashboard.xDataService/1.0.0": { + "type": "package", + "dependencies": { + "GraphQL": "3.0.0.2026", + "GraphQL.Server.Transports.AspNetCore": "4.0.1", + "GraphQL.Server.Transports.AspNetCore.NewtonsoftJson": "4.0.1", + "GraphQL.Server.Transports.WebSockets": "4.0.1", + "GraphQL.Server.Ui.Playground": "4.0.1", + "GraphQL.Server.Ui.Voyager": "4.0.1", + "GraphQL.SystemTextJson": "3.0.0.2026", + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.EntityFrameworkCore": "3.1.14", + "Microsoft.EntityFrameworkCore.SqlServer": "3.1.14", + "Microsoft.EntityFrameworkCore.Sqlite": "3.1.14", + "MongoDB.Driver": "2.13.2", + "MySql.EntityFrameworkCore": "3.1.14", + "System.Reactive": "5.0.0", + "xDashboard.xModels": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/xDataService.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xDataService.dll": {} + } + }, "xDashboard.xExceptions/1.0.0": { "type": "package", "compile": { @@ -2726,6 +3931,63 @@ "runtime": { "lib/netstandard2.0/xExceptions.dll": {} } + }, + "xDashboard.xHttpService/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.Extensions.Http": "2.2.0", + "RestSharp": "106.11.7", + "xDashboard.xIdentityModels": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/xHttpService.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xHttpService.dll": {} + } + }, + "xDashboard.xIdentityModels/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Identity.Stores": "5.0.2", + "Microsoft.IdentityModel.Tokens": "5.6.0", + "System.IdentityModel.Tokens.Jwt": "5.6.0", + "xDashboard.xModels": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/xIdentityModels.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xIdentityModels.dll": {} + } + }, + "xDashboard.xIdentityService/1.0.0": { + "type": "package", + "dependencies": { + "IdentityModel.AspNetCore.OAuth2Introspection": "4.0.0-preview.6", + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "xDashboard.xDataService": "1.0.0", + "xDashboard.xHttpService": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/xIdentityService.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xIdentityService.dll": {} + } + }, + "xDashboard.xModels/1.0.0": { + "type": "package", + "dependencies": { + "xDashboard.xCommons": "1.0.0" + }, + "compile": { + "lib/netstandard2.0/xModels.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xModels.dll": {} + } } } }, @@ -2759,6 +4021,237 @@ "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" ] }, + "BouncyCastle.NetCore/1.8.5": { + "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "type": "package", + "path": "bouncycastle.netcore/1.8.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bouncycastle.netcore.1.8.5.nupkg.sha512", + "bouncycastle.netcore.nuspec", + "lib/Mono/BouncyCastle.Crypto.dll", + "lib/Mono/BouncyCastle.Crypto.xml", + "lib/MonoAndroid/BouncyCastle.Crypto.dll", + "lib/MonoAndroid/BouncyCastle.Crypto.xml", + "lib/MonoMac/BouncyCastle.Crypto.dll", + "lib/MonoMac/BouncyCastle.Crypto.xml", + "lib/MonoTouch/BouncyCastle.Crypto.dll", + "lib/MonoTouch/BouncyCastle.Crypto.xml", + "lib/net20/BouncyCastle.Crypto.dll", + "lib/net20/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "lib/xamarinios/BouncyCastle.Crypto.dll", + "lib/xamarinios/BouncyCastle.Crypto.xml" + ] + }, + "DnsClient/1.4.0": { + "sha512": "CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", + "type": "package", + "path": "dnsclient/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dnsclient.1.4.0.nupkg.sha512", + "dnsclient.nuspec", + "icon.png", + "lib/net45/DnsClient.dll", + "lib/net45/DnsClient.xml", + "lib/net471/DnsClient.dll", + "lib/net471/DnsClient.xml", + "lib/netstandard1.3/DnsClient.dll", + "lib/netstandard1.3/DnsClient.xml", + "lib/netstandard2.0/DnsClient.dll", + "lib/netstandard2.0/DnsClient.xml", + "lib/netstandard2.1/DnsClient.dll", + "lib/netstandard2.1/DnsClient.xml" + ] + }, + "Google.Protobuf/3.14.0": { + "sha512": "9AkodyGNmLI+wJJPbwpWLmh4BMHoXDQ9+8qvDPhQQi/BNsleqKMBn3OlyLwC6CALwan2kc5+Cenb8fJSITX3nQ==", + "type": "package", + "path": "google.protobuf/3.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.14.0.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "GraphQL/3.0.0.2026": { + "sha512": "IZ5tqBLC8JKgyHL3gIBIjmK8D0PZ4wfT9xe9i3BBB9JNTyx0ItsOO2GHcYrlDZWiaXGz1QyQg5G6CxjCo9c1kg==", + "type": "package", + "path": "graphql/3.0.0.2026", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.3.0.0.2026.nupkg.sha512", + "graphql.nuspec", + "lib/netstandard2.0/GraphQL.dll", + "lib/netstandard2.0/GraphQL.xml", + "logo.64x64.png" + ] + }, + "GraphQL-Parser/5.3.0": { + "sha512": "1FoxfgApSL62SlhYMIZg0skaCYt1HDM+u9DxYZQHWF4OheJUnld3xixmfNFNmp/UiyjBv1oNdRafTFXRJIC00A==", + "type": "package", + "path": "graphql-parser/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql-parser.5.3.0.nupkg.sha512", + "graphql-parser.nuspec", + "lib/netstandard2.0/GraphQL-Parser.dll", + "logo.64x64.png" + ] + }, + "GraphQL.NewtonsoftJson/3.0.0.2026": { + "sha512": "G5SH/qKwY6mOL/fTQNFnQFYt1YKoHebAiQ8L0s77brvOceiv+lFfiUIRVuRhfy7Nwe8zLrJwNq/Y4lWA8pTASw==", + "type": "package", + "path": "graphql.newtonsoftjson/3.0.0.2026", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.newtonsoftjson.3.0.0.2026.nupkg.sha512", + "graphql.newtonsoftjson.nuspec", + "lib/netstandard2.0/GraphQL.NewtonsoftJson.dll", + "lib/netstandard2.0/GraphQL.NewtonsoftJson.xml", + "logo.64x64.png" + ] + }, + "GraphQL.Server.Core/4.0.1": { + "sha512": "YMBZMcf103uCbWMQNXQD5+d5WMvZVV5vM9iYfgWxSi37atKNUGmmJSkF4e1q1Ryy70dfl6mFj1VJfB18fcRSZg==", + "type": "package", + "path": "graphql.server.core/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.server.core.4.0.1.nupkg.sha512", + "graphql.server.core.nuspec", + "lib/netstandard2.0/Core.xml", + "lib/netstandard2.0/GraphQL.Server.Core.dll" + ] + }, + "GraphQL.Server.Transports.AspNetCore/4.0.1": { + "sha512": "rcpGGdopp6uanxw9uszQBpknCF6rhP/Y/Xcot4dMJPAECI3HL9XizaY3d7TDZ/za8rRzLkyhJ+cFz8aTSjgxdw==", + "type": "package", + "path": "graphql.server.transports.aspnetcore/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.server.transports.aspnetcore.4.0.1.nupkg.sha512", + "graphql.server.transports.aspnetcore.nuspec", + "lib/netcoreapp3.0/GraphQL.Server.Transports.AspNetCore.dll", + "lib/netcoreapp3.0/Transports.AspNetCore.xml", + "lib/netcoreapp3.1/GraphQL.Server.Transports.AspNetCore.dll", + "lib/netcoreapp3.1/Transports.AspNetCore.xml", + "lib/netstandard2.0/GraphQL.Server.Transports.AspNetCore.dll", + "lib/netstandard2.0/Transports.AspNetCore.xml" + ] + }, + "GraphQL.Server.Transports.AspNetCore.NewtonsoftJson/4.0.1": { + "sha512": "LNuJPk7WMbDg9AUSoUfZ9Ik9HD1elDq4GkKeHewgltM0sA0SelEvjK+dXnpJeKWLYcy+9vmpWy/4qbbLawS1Zw==", + "type": "package", + "path": "graphql.server.transports.aspnetcore.newtonsoftjson/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.server.transports.aspnetcore.newtonsoftjson.4.0.1.nupkg.sha512", + "graphql.server.transports.aspnetcore.newtonsoftjson.nuspec", + "lib/netstandard2.0/GraphQL.Server.Transports.AspNetCore.NewtonsoftJson.dll", + "lib/netstandard2.0/Transports.AspNetCore.NewtonsoftJson.xml" + ] + }, + "GraphQL.Server.Transports.Subscriptions.Abstractions/4.0.1": { + "sha512": "y57W8U0Z111lAzSnreTarFRrXeahvNX7rbyVjCovhejqHyXLWE6T3Z7EbhhTFSF76lqTcDe7kxMGlnylI0nDhw==", + "type": "package", + "path": "graphql.server.transports.subscriptions.abstractions/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.server.transports.subscriptions.abstractions.4.0.1.nupkg.sha512", + "graphql.server.transports.subscriptions.abstractions.nuspec", + "lib/netstandard2.0/GraphQL.Server.Transports.Subscriptions.Abstractions.dll", + "lib/netstandard2.0/Transports.Subscriptions.Abstractions.xml" + ] + }, + "GraphQL.Server.Transports.WebSockets/4.0.1": { + "sha512": "sLL29jPO9Z3eHE6jiaf8wk8hfmpdiql7vr0q9HDkgZKfNTGkYAf2wB0ZjVVt7kGMsdfF0/10xs6gALMKTPhJuQ==", + "type": "package", + "path": "graphql.server.transports.websockets/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.server.transports.websockets.4.0.1.nupkg.sha512", + "graphql.server.transports.websockets.nuspec", + "lib/netcoreapp3.0/GraphQL.Server.Transports.WebSockets.dll", + "lib/netcoreapp3.0/Transports.Subscriptions.WebSockets.xml", + "lib/netcoreapp3.1/GraphQL.Server.Transports.WebSockets.dll", + "lib/netcoreapp3.1/Transports.Subscriptions.WebSockets.xml", + "lib/netstandard2.0/GraphQL.Server.Transports.WebSockets.dll", + "lib/netstandard2.0/Transports.Subscriptions.WebSockets.xml" + ] + }, + "GraphQL.Server.Ui.Playground/4.0.1": { + "sha512": "3L/XUm/gTG/CrTsmm7PMwNi4sa3HtF+AtvKcYwCZP5bJI64RWODuHsgLZj+pwKF/7xa8PR6JbXtvZ74iCBAXuA==", + "type": "package", + "path": "graphql.server.ui.playground/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.server.ui.playground.4.0.1.nupkg.sha512", + "graphql.server.ui.playground.nuspec", + "lib/netcoreapp3.0/GraphQL.Server.Ui.Playground.dll", + "lib/netcoreapp3.0/Ui.Playground.xml", + "lib/netcoreapp3.1/GraphQL.Server.Ui.Playground.dll", + "lib/netcoreapp3.1/Ui.Playground.xml", + "lib/netstandard2.0/GraphQL.Server.Ui.Playground.dll", + "lib/netstandard2.0/Ui.Playground.xml" + ] + }, + "GraphQL.Server.Ui.Voyager/4.0.1": { + "sha512": "2NoUEF9US+v58ju9508LUN4WqoLfM/F+EZIsxGCz21hKI3Vxijt8PKgm7dotoGkj1aySxnLBPutzE6dW/OY1tg==", + "type": "package", + "path": "graphql.server.ui.voyager/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.server.ui.voyager.4.0.1.nupkg.sha512", + "graphql.server.ui.voyager.nuspec", + "lib/netcoreapp3.0/GraphQL.Server.Ui.Voyager.dll", + "lib/netcoreapp3.0/Ui.Voyager.xml", + "lib/netcoreapp3.1/GraphQL.Server.Ui.Voyager.dll", + "lib/netcoreapp3.1/Ui.Voyager.xml", + "lib/netstandard2.0/GraphQL.Server.Ui.Voyager.dll", + "lib/netstandard2.0/Ui.Voyager.xml" + ] + }, + "GraphQL.SystemTextJson/3.0.0.2026": { + "sha512": "UsXkftkb46xEtt69Wf0KUEN2yVVFGqqTxAg9BwVKWwGAAcK2DUpBHFFNyl5plmn0/KjIhoa6TNxLgszi0dVbbw==", + "type": "package", + "path": "graphql.systemtextjson/3.0.0.2026", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "graphql.systemtextjson.3.0.0.2026.nupkg.sha512", + "graphql.systemtextjson.nuspec", + "lib/netcoreapp3.0/GraphQL.SystemTextJson.dll", + "lib/netcoreapp3.0/GraphQL.SystemTextJson.xml", + "lib/netstandard2.0/GraphQL.SystemTextJson.dll", + "lib/netstandard2.0/GraphQL.SystemTextJson.xml", + "logo.64x64.png" + ] + }, "IdentityModel/5.0.1": { "sha512": "njk/AnO85Nc0JWiL3Zf4IAI+7PnlfJbsg3YLchC2oKdgmeFf5d4Px3lhmQyzfH32lp54btyYItXnire8wDYmiQ==", "type": "package", @@ -2783,6 +4276,80 @@ "lib/netstandard2.0/IdentityModel.xml" ] }, + "IdentityModel.AspNetCore.OAuth2Introspection/4.0.0-preview.6": { + "sha512": "6acMwF7/kk5r5i2lKT4paz1kjtAkS3oaZCpwfdpxt8x73HDOTGD5kuFyGL6aQ48zpQCM1/NfxcoFdODfHDgbxg==", + "type": "package", + "path": "identitymodel.aspnetcore.oauth2introspection/4.0.0-preview.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "identitymodel.aspnetcore.oauth2introspection.4.0.0-preview.6.nupkg.sha512", + "identitymodel.aspnetcore.oauth2introspection.nuspec", + "lib/net461/IdentityModel.AspNetCore.OAuth2Introspection.dll", + "lib/net461/IdentityModel.AspNetCore.OAuth2Introspection.pdb", + "lib/net461/IdentityModel.AspNetCore.OAuth2Introspection.xml", + "lib/netstandard2.0/IdentityModel.AspNetCore.OAuth2Introspection.dll", + "lib/netstandard2.0/IdentityModel.AspNetCore.OAuth2Introspection.pdb", + "lib/netstandard2.0/IdentityModel.AspNetCore.OAuth2Introspection.xml" + ] + }, + "K4os.Compression.LZ4/1.1.11": { + "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==", + "type": "package", + "path": "k4os.compression.lz4/1.1.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.1.11.nupkg.sha512", + "k4os.compression.lz4.nuspec", + "lib/net45/K4os.Compression.LZ4.dll", + "lib/net45/K4os.Compression.LZ4.xml", + "lib/net46/K4os.Compression.LZ4.dll", + "lib/net46/K4os.Compression.LZ4.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.xml" + ] + }, + "K4os.Compression.LZ4.Streams/1.1.11": { + "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.1.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.1.11.nupkg.sha512", + "k4os.compression.lz4.streams.nuspec", + "lib/net45/K4os.Compression.LZ4.Streams.dll", + "lib/net45/K4os.Compression.LZ4.Streams.xml", + "lib/net46/K4os.Compression.LZ4.Streams.dll", + "lib/net46/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml" + ] + }, + "K4os.Hash.xxHash/1.0.6": { + "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "type": "package", + "path": "k4os.hash.xxhash/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.hash.xxhash.1.0.6.nupkg.sha512", + "k4os.hash.xxhash.nuspec", + "lib/net45/K4os.Hash.xxHash.dll", + "lib/net45/K4os.Hash.xxHash.xml", + "lib/net46/K4os.Hash.xxHash.dll", + "lib/net46/K4os.Hash.xxHash.xml", + "lib/netstandard1.6/K4os.Hash.xxHash.dll", + "lib/netstandard1.6/K4os.Hash.xxHash.xml", + "lib/netstandard2.0/K4os.Hash.xxHash.dll", + "lib/netstandard2.0/K4os.Hash.xxHash.xml" + ] + }, "libphonenumber-csharp/8.12.17": { "sha512": "fzjg8+IC89odtfEWSWE7L9KepWKhslL0Og7UQTc11DRHoRyJfm0h+KJADZh+xMTJlN9rpKAJdBQRSkJVxg1Jew==", "type": "package", @@ -2897,19 +4464,44 @@ "microsoft.aspnetcore.cors.nuspec" ] }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { - "sha512": "GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==", + "Microsoft.AspNetCore.Cryptography.Internal/5.0.2": { + "sha512": "3w5vemQPVEknrewW9xNiYJ1X8f2AjIoy4mSgqDtDJABPM40DupOxJwdO4tDZL+x/fZJL3bXWG7YpkfaXYUBmow==", "type": "package", - "path": "microsoft.aspnetcore.cryptography.internal/2.2.0", + "path": "microsoft.aspnetcore.cryptography.internal/5.0.2", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.xml", "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", - "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.5.0.2.nupkg.sha512", "microsoft.aspnetcore.cryptography.internal.nuspec" ] }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.2": { + "sha512": "s9RQ193ypMuHnV17DZZtiVVcdSBy5mK0q/BxJR77KAUASjfDTmdjnZpUY2JTYivFlt28PLMw+Smy6K8l1Mz1Cg==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/5.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.5.0.2.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, "Microsoft.AspNetCore.DataProtection/2.2.0": { "sha512": "G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", "type": "package", @@ -3120,6 +4712,19 @@ "microsoft.aspnetcore.staticfiles.nuspec" ] }, + "Microsoft.AspNetCore.WebSockets/2.2.1": { + "sha512": "Ilk4fQ0xdVpJk1a+72thHv2LglUZPWL+vECOG3mw+gOesNx0/p56HNJXZw8k1pj8ff1cVHn8KtfvyRZxdplNQA==", + "type": "package", + "path": "microsoft.aspnetcore.websockets/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml", + "microsoft.aspnetcore.websockets.2.2.1.nupkg.sha512", + "microsoft.aspnetcore.websockets.nuspec" + ] + }, "Microsoft.AspNetCore.WebUtilities/2.2.0": { "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", "type": "package", @@ -3133,28 +4738,80 @@ "microsoft.aspnetcore.webutilities.nuspec" ] }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "sha512": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "Microsoft.Bcl.AsyncInterfaces/10.0.4": { + "sha512": "2JmoSZ1wDf1/TUyTtLTXeicXCnWxXkeStGnzRRmAw+5CBIGhg6q9ieJXu4FjeLzawSGd5PMhcropNa3lPJDaKA==", "type": "package", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "path": "microsoft.bcl.asyncinterfaces/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.10.0.4.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Bcl.HashCode/1.1.1": { + "sha512": "MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==", + "type": "package", + "path": "microsoft.bcl.hashcode/1.1.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", - "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", - "microsoft.bcl.asyncinterfaces.nuspec", + "lib/net461/Microsoft.Bcl.HashCode.dll", + "lib/net461/Microsoft.Bcl.HashCode.xml", + "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll", + "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml", + "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll", + "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml", + "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll", + "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml", + "microsoft.bcl.hashcode.1.1.1.nupkg.sha512", + "microsoft.bcl.hashcode.nuspec", + "ref/net461/Microsoft.Bcl.HashCode.dll", + "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll", + "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll", + "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll", "useSharedDesignerContext.txt", "version.txt" ] }, + "Microsoft.Bcl.Numerics/10.0.4": { + "sha512": "vYbNzQK8hYv9wNVEoIS183JS2tQ74/CfiqBt5Krfub6wpdRkyqWnw0UFgaFztHq+Mws9zkQwCTK7L8o1dz/mCQ==", + "type": "package", + "path": "microsoft.bcl.numerics/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.Numerics.targets", + "buildTransitive/net462/_._", + "lib/net462/Microsoft.Bcl.Numerics.dll", + "lib/net462/Microsoft.Bcl.Numerics.xml", + "lib/netstandard2.0/Microsoft.Bcl.Numerics.dll", + "lib/netstandard2.0/Microsoft.Bcl.Numerics.xml", + "lib/netstandard2.1/Microsoft.Bcl.Numerics.dll", + "lib/netstandard2.1/Microsoft.Bcl.Numerics.xml", + "microsoft.bcl.numerics.10.0.4.nupkg.sha512", + "microsoft.bcl.numerics.nuspec", + "useSharedDesignerContext.txt" + ] + }, "Microsoft.CSharp/4.7.0": { "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", "type": "package", @@ -3224,21 +4881,233 @@ "version.txt" ] }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", + "Microsoft.Data.SqlClient/1.1.3": { + "sha512": "KOT5AoOXIQCF98y+ynMLMaemS05RebDconYlCtqdFGbcpviW+S2/wXhrDNPtZ3MWeB+6ej3t4CrzykRGQKk9gA==", "type": "package", - "path": "microsoft.dotnet.platformabstractions/2.1.0", + "path": "microsoft.data.sqlclient/1.1.3", "files": [ ".nupkg.metadata", ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.Data.SqlClient.dll", + "lib/net46/Microsoft.Data.SqlClient.pdb", + "lib/net46/Microsoft.Data.SqlClient.xml", + "lib/net46/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.1.1.3.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net46/Microsoft.Data.SqlClient.dll", + "ref/net46/Microsoft.Data.SqlClient.pdb", + "ref/net46/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.Sqlite.Core/3.1.14": { + "sha512": "sm7IMvNCh9ePasIExswSUa6BB25oOfNhC1S/wSjWqbdgPjOZDpYS+OM0Kza5aB7Es+6olvJGjRsPzyPAyCH9qQ==", + "type": "package", + "path": "microsoft.data.sqlite.core/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.3.1.14.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.DotNet.PlatformAbstractions/3.1.6": { + "sha512": "jek4XYaQ/PGUwDKKhwR8K47Uh1189PFzMeLqO83mXrXQVIpARZCcfuDedH50YDTepBkfijCZN5U/vZi++erxtg==", + "type": "package", + "path": "microsoft.dotnet.platformabstractions/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll", + "lib/net45/Microsoft.DotNet.PlatformAbstractions.xml", "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", - "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512", + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.xml", + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.xml", + "microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512", "microsoft.dotnet.platformabstractions.nuspec" ] }, + "Microsoft.EntityFrameworkCore/3.1.14": { + "sha512": "scyR0k8hJ8gR2xmXM7mS5eXyXKTVBNbgVIq+TsURqGXuCQP6KAYxuz0+OScFHBRCkBdb/2fynf0JG/D4UGudxw==", + "type": "package", + "path": "microsoft.entityframeworkcore/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.3.1.14.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": { + "sha512": "xXArI4pGAB8dc0tIYNfbqKz+9ZpELjF4+2Jcy48nd5IiRVxYpgT9c0+46rFHwAq/GryaTGUOQ0hkJHqkd+jN5Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": { + "sha512": "xJwZ+Pzqk6M+EIaKq8E+n0kJsq2iwcD1v2bYHgLI/egqBW4ytpqCjDRcYLqrsExX5isotaOR9KvHECOBjc838w==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.14": { + "sha512": "t7dp/bMF+iF2WfBF0CqugtAagHLbmjAvSlJLMrKPoAPYINusKrV+WOr+9lPivf6juMog2Lq0VTVsj5N6f5F/CQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/3.1.14": { + "sha512": "UgWORpbURCgUtauoDv6mVHNUf6jSpPaHjXJZPSYWaKFEf0QEqKSMwcXU++zXacU/vqoZm0TjhBxSJ+ynrGUcVA==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.sqlite.3.1.14.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/3.1.14": { + "sha512": "qQ3tYnK9Nym5P2oTBRAGUlybnEdsc9GAMw3cBQoEGglZtTj/19a7VyjWBGgYSdW4yYxZaJAhqB28qR2303EHfw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.3.1.14.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.SqlServer/3.1.14": { + "sha512": "QAEsRFqVSRFrjQTz2mjWuzfIl5g6ssC3CizJNdtyNHudvsRCk2v98wMqhaaO8fMyKQ4PGinxAzobR/bMFC/bUA==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlserver/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.xml", + "microsoft.entityframeworkcore.sqlserver.3.1.14.nupkg.sha512", + "microsoft.entityframeworkcore.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.AI/10.4.1": { + "sha512": "io38o6v3Tpbh++UqIcievOOTRwEyBpbNcudpZDjOo+DnAEQQvc3WqlChPipWLYH65cl9m8jiqH6ahHeasZzmOA==", + "type": "package", + "path": "microsoft.extensions.ai/10.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.AI.dll", + "lib/net10.0/Microsoft.Extensions.AI.xml", + "lib/net462/Microsoft.Extensions.AI.dll", + "lib/net462/Microsoft.Extensions.AI.xml", + "lib/net8.0/Microsoft.Extensions.AI.dll", + "lib/net8.0/Microsoft.Extensions.AI.xml", + "lib/net9.0/Microsoft.Extensions.AI.dll", + "lib/net9.0/Microsoft.Extensions.AI.xml", + "lib/netstandard2.0/Microsoft.Extensions.AI.dll", + "lib/netstandard2.0/Microsoft.Extensions.AI.xml", + "microsoft.extensions.ai.10.4.1.nupkg.sha512", + "microsoft.extensions.ai.nuspec" + ] + }, + "Microsoft.Extensions.AI.Abstractions/10.4.1": { + "sha512": "ZxhU/wg9BOc3ohibhLl18toPLWm96ysQoE+3OhCgrZ0TUPZd7bsUmGteeatz08yweyuPIEhtyUzEZTF+3bMWEQ==", + "type": "package", + "path": "microsoft.extensions.ai.abstractions/10.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.AI.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.AI.Abstractions.xml", + "lib/net462/Microsoft.Extensions.AI.Abstractions.dll", + "lib/net462/Microsoft.Extensions.AI.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.AI.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.AI.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.AI.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.AI.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.AI.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.AI.Abstractions.xml", + "microsoft.extensions.ai.abstractions.10.4.1.nupkg.sha512", + "microsoft.extensions.ai.abstractions.nuspec" + ] + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", "type": "package", @@ -3266,6 +5135,51 @@ "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" ] }, + "Microsoft.Extensions.Caching.Abstractions/10.0.4": { + "sha512": "uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/3.1.14": { + "sha512": "aNOymMs1Cv383KoATchVnnW3/k7zRTGUcI81ktd5UMay5NB+elKVuYB2jG7WZzDYasmRysoWbWL/1s85H8J3gQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.3.1.14.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec" + ] + }, "Microsoft.Extensions.Configuration/5.0.0": { "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==", "type": "package", @@ -3350,39 +5264,56 @@ "version.txt" ] }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { + "sha512": "SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", - "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", "microsoft.extensions.dependencymodel.nuspec" ] }, @@ -3431,6 +5362,57 @@ "microsoft.extensions.hosting.abstractions.nuspec" ] }, + "Microsoft.Extensions.Http/2.2.0": { + "sha512": "hZ8mz6FgxSeFtkHzw+Ad0QOt2yjjpq4WaG9itnkyChtXYTrDlbkw3af2WJ9wdEAAyYqOlQaVDB6MJSEo8dd/vw==", + "type": "package", + "path": "microsoft.extensions.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.2.2.0.nupkg.sha512", + "microsoft.extensions.http.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Core/5.0.2": { + "sha512": "H0k4/raFOzGYu26B2w89BjyCD7uzwxoXF2D5VFjiHj2JUJiclPpGVJDa+MrfulaYq2gG3rAxflR1ANeAeg6GGA==", + "type": "package", + "path": "microsoft.extensions.identity.core/5.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Identity.Core.dll", + "lib/net461/Microsoft.Extensions.Identity.Core.xml", + "lib/net5.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net5.0/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.5.0.2.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/5.0.2": { + "sha512": "ypagX4xnw6oJmn951Pt1l5B5U8iLl8xFlcKZRXYp4vJCrPJERaTI38Agh6uWJH0AL12Crs/aIF1/THITWq0Qmg==", + "type": "package", + "path": "microsoft.extensions.identity.stores/5.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Identity.Stores.dll", + "lib/net461/Microsoft.Extensions.Identity.Stores.xml", + "lib/net5.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net5.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.5.0.2.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, "Microsoft.Extensions.Localization/2.1.0": { "sha512": "EssCj6ZGhZL6ojL8IKLxJEIEgz8RQQHO1ZUgW6uIUoyzcwCMTEnN9mQWDXcXAitx0tyNz8xKNudTJ1RCc3/lkA==", "type": "package", @@ -3457,17 +5439,98 @@ "microsoft.extensions.localization.abstractions.nuspec" ] }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", "type": "package", - "path": "microsoft.extensions.logging.abstractions/2.2.0", + "path": "microsoft.extensions.logging/5.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.4": { + "sha512": "PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec" + "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" ] }, "Microsoft.Extensions.ObjectPool/2.2.0": { @@ -3483,43 +5546,57 @@ "microsoft.extensions.objectpool.nuspec" ] }, - "Microsoft.Extensions.Options/3.0.0": { - "sha512": "aZuVhN/TC872Yb55nrb7an82sfSAdNYxIyzu3zbYHOnhwal5hdkBUxzuoYj1khI2sw0tWq6i82i624zEFmiJhg==", + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", "type": "package", - "path": "microsoft.extensions.options/3.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp3.0/Microsoft.Extensions.Options.dll", - "lib/netcoreapp3.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.3.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec" - ] - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "type": "package", - "path": "microsoft.extensions.primitives/5.0.0", + "path": "microsoft.extensions.options/5.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, + "Microsoft.Extensions.Primitives/10.0.4": { + "sha512": "lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.4.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, "Microsoft.Extensions.WebEncoders/2.2.0": { "sha512": "V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", "type": "package", @@ -3533,55 +5610,85 @@ "microsoft.extensions.webencoders.nuspec" ] }, - "Microsoft.IdentityModel.JsonWebTokens/5.3.0": { - "sha512": "5LW5VYvGZLvrbEGxyaE6dSQhT1B5frnpwX/c4/PWrNXeuJ6GkYmiOPf2u5Iwk1qQXPTvDedwEfnBg+i/0cFAyA==", + "Microsoft.Identity.Client/3.0.8": { + "sha512": "9E1gXBRJta8+UXooYpJkp/8g6Cy4kFQl3iURduGhR7/vU8rGKTWEMJ3tUKOO2m1qzJOfaog/n89lyjdi7S56Rg==", "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/5.3.0", + "path": "microsoft.identity.client/3.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard1.3/Microsoft.Identity.Client.dll", + "lib/netstandard1.3/Microsoft.Identity.Client.xml", + "lib/uap10.0/Microsoft.Identity.Client.dll", + "lib/uap10.0/Microsoft.Identity.Client.pri", + "lib/uap10.0/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "lib/xamarinmac20/Microsoft.Identity.Client.dll", + "lib/xamarinmac20/Microsoft.Identity.Client.xml", + "microsoft.identity.client.3.0.8.nupkg.sha512", + "microsoft.identity.client.nuspec", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml", + "ref/net45/Microsoft.Identity.Client.dll", + "ref/net45/Microsoft.Identity.Client.xml", + "ref/netcoreapp2.1/Microsoft.Identity.Client.dll", + "ref/netcoreapp2.1/Microsoft.Identity.Client.xml", + "ref/netstandard1.3/Microsoft.Identity.Client.dll", + "ref/netstandard1.3/Microsoft.Identity.Client.xml", + "ref/uap10.0/Microsoft.Identity.Client.dll", + "ref/uap10.0/Microsoft.Identity.Client.xml", + "ref/xamarinmac20/Microsoft.Identity.Client.dll", + "ref/xamarinmac20/Microsoft.Identity.Client.xml" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/5.6.0": { + "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/5.6.0", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net45/Microsoft.IdentityModel.JsonWebTokens.pdb", "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net451/Microsoft.IdentityModel.JsonWebTokens.pdb", "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml", "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net461/Microsoft.IdentityModel.JsonWebTokens.pdb", "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.pdb", "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml", "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.pdb", "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512", "microsoft.identitymodel.jsonwebtokens.nuspec" ] }, - "Microsoft.IdentityModel.Logging/5.3.0": { - "sha512": "o+bBauEMOi6ZI0MlJEC69Sw9UPwKLFmN+lD942g9UCx5pfiLFvJBKp8OPmxtGFL02ZxzXCIUyhyKn85izBDsnQ==", + "Microsoft.IdentityModel.Logging/5.6.0": { + "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==", "type": "package", - "path": "microsoft.identitymodel.logging/5.3.0", + "path": "microsoft.identitymodel.logging/5.6.0", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/net45/Microsoft.IdentityModel.Logging.dll", - "lib/net45/Microsoft.IdentityModel.Logging.pdb", "lib/net45/Microsoft.IdentityModel.Logging.xml", "lib/net451/Microsoft.IdentityModel.Logging.dll", - "lib/net451/Microsoft.IdentityModel.Logging.pdb", "lib/net451/Microsoft.IdentityModel.Logging.xml", "lib/net461/Microsoft.IdentityModel.Logging.dll", - "lib/net461/Microsoft.IdentityModel.Logging.pdb", "lib/net461/Microsoft.IdentityModel.Logging.xml", "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Logging.pdb", "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml", "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.pdb", "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.5.3.0.nupkg.sha512", + "microsoft.identitymodel.logging.5.6.0.nupkg.sha512", "microsoft.identitymodel.logging.nuspec" ] }, @@ -3637,29 +5744,24 @@ "microsoft.identitymodel.protocols.openidconnect.nuspec" ] }, - "Microsoft.IdentityModel.Tokens/5.3.0": { - "sha512": "/piauST4FL0qzVI6oqLWxqhFReg12KwVGy0jRlnVOpGMeOVSKdtNVtHsN/hARc25hOOPEp9WKMce5ILzyMx/tQ==", + "Microsoft.IdentityModel.Tokens/5.6.0": { + "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==", "type": "package", - "path": "microsoft.identitymodel.tokens/5.3.0", + "path": "microsoft.identitymodel.tokens/5.6.0", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/net45/Microsoft.IdentityModel.Tokens.dll", - "lib/net45/Microsoft.IdentityModel.Tokens.pdb", "lib/net45/Microsoft.IdentityModel.Tokens.xml", "lib/net451/Microsoft.IdentityModel.Tokens.dll", - "lib/net451/Microsoft.IdentityModel.Tokens.pdb", "lib/net451/Microsoft.IdentityModel.Tokens.xml", "lib/net461/Microsoft.IdentityModel.Tokens.dll", - "lib/net461/Microsoft.IdentityModel.Tokens.pdb", "lib/net461/Microsoft.IdentityModel.Tokens.xml", "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.pdb", "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml", "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.pdb", "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.5.3.0.nupkg.sha512", + "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512", "microsoft.identitymodel.tokens.nuspec" ] }, @@ -3788,6 +5890,170 @@ "version.txt" ] }, + "MongoDB.Bson/2.13.2": { + "sha512": "qY9271GFCYLA8OB3MdQC8clJh9wnh65gcxUa5Skwh2xYryv21YAHx/VOvv4ILpkb1NhIVgy3LBQhVBldwLaqNg==", + "type": "package", + "path": "mongodb.bson/2.13.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "lib/net452/MongoDB.Bson.dll", + "lib/net452/MongoDB.Bson.xml", + "lib/netstandard1.5/MongoDB.Bson.dll", + "lib/netstandard1.5/MongoDB.Bson.xml", + "lib/netstandard2.0/MongoDB.Bson.dll", + "lib/netstandard2.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.2.13.2.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver/2.13.2": { + "sha512": "4+fczDJxxx7HPWY1n75hzHCOZiAhpb1Tjpkvj+c3lAeBGmSCvh5THcadxZ7b97F6OdHxz4xy07mIiwfZlPuQVQ==", + "type": "package", + "path": "mongodb.driver/2.13.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "lib/net452/MongoDB.Driver.dll", + "lib/net452/MongoDB.Driver.xml", + "lib/netstandard1.5/MongoDB.Driver.dll", + "lib/netstandard1.5/MongoDB.Driver.xml", + "lib/netstandard2.0/MongoDB.Driver.dll", + "lib/netstandard2.0/MongoDB.Driver.xml", + "lib/netstandard2.1/MongoDB.Driver.dll", + "lib/netstandard2.1/MongoDB.Driver.xml", + "mongodb.driver.2.13.2.nupkg.sha512", + "mongodb.driver.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver.Core/2.13.2": { + "sha512": "VY1ayl9yXcZZ0VoXftZD3quHBgdn2EEMmuKlz4V6z2+8grN2svdASwX9E4p0DmOAAX8Wd5B5lYsUifrbo4M5xA==", + "type": "package", + "path": "mongodb.driver.core/2.13.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "THIRD-PARTY-NOTICES", + "build/MongoDB.Driver.Core.targets", + "content/Core/Compression/Snappy/lib/win/snappy32.dll", + "content/Core/Compression/Snappy/lib/win/snappy64.dll", + "content/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/net452/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/net452/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/net452/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/netstandard1.5/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/netstandard1.5/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/netstandard1.5/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/win/libzstd.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy32.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy64.dll", + "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/win/libzstd.dll", + "lib/net452/MongoDB.Driver.Core.dll", + "lib/net452/MongoDB.Driver.Core.xml", + "lib/netstandard1.5/MongoDB.Driver.Core.dll", + "lib/netstandard1.5/MongoDB.Driver.Core.xml", + "lib/netstandard2.0/MongoDB.Driver.Core.dll", + "lib/netstandard2.0/MongoDB.Driver.Core.xml", + "lib/netstandard2.1/MongoDB.Driver.Core.dll", + "lib/netstandard2.1/MongoDB.Driver.Core.xml", + "mongodb.driver.core.2.13.2.nupkg.sha512", + "mongodb.driver.core.nuspec", + "packageIcon.png", + "runtimes/win/native/libzstd.dll", + "runtimes/win/native/snappy32.dll", + "runtimes/win/native/snappy64.dll" + ] + }, + "MongoDB.Libmongocrypt/1.2.2": { + "sha512": "pKrlKJk4wem4MyfkaMqj+sqJ+RwUDnqnt76/Xwm5DDjMzEU5QtDkzQOLq5bVwFhNgC8LMn6Hr22tl5WsmN5+AA==", + "type": "package", + "path": "mongodb.libmongocrypt/1.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "build/MongoDB.Libmongocrypt.targets", + "content/libmongocrypt.dylib", + "content/libmongocrypt.so", + "content/mongocrypt.dll", + "contentFiles/any/net452/libmongocrypt.dylib", + "contentFiles/any/net452/libmongocrypt.so", + "contentFiles/any/net452/mongocrypt.dll", + "contentFiles/any/netstandard1.5/libmongocrypt.dylib", + "contentFiles/any/netstandard1.5/libmongocrypt.so", + "contentFiles/any/netstandard1.5/mongocrypt.dll", + "contentFiles/any/netstandard2.0/libmongocrypt.dylib", + "contentFiles/any/netstandard2.0/libmongocrypt.so", + "contentFiles/any/netstandard2.0/mongocrypt.dll", + "contentFiles/any/netstandard2.1/libmongocrypt.dylib", + "contentFiles/any/netstandard2.1/libmongocrypt.so", + "contentFiles/any/netstandard2.1/mongocrypt.dll", + "lib/net452/MongoDB.Libmongocrypt.dll", + "lib/netstandard1.5/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", + "mongodb.libmongocrypt.1.2.2.nupkg.sha512", + "mongodb.libmongocrypt.nuspec", + "runtimes/linux/native/libmongocrypt.so", + "runtimes/osx/native/libmongocrypt.dylib", + "runtimes/win/native/mongocrypt.dll" + ] + }, + "MySql.Data/8.0.26": { + "sha512": "iOxE24dI01JZlZ1EObkz9WwYMzX+0RnBf5a11OkPDCOGv2Yo0tTWmwAJfVXkuuSD47XngOir7l7+xZZ56lZyAA==", + "type": "package", + "path": "mysql.data/8.0.26", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/Ubiety.Dns.Core.dll", + "lib/net452/Zstandard.Net.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/Ubiety.Dns.Core.dll", + "lib/net48/Zstandard.Net.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/Ubiety.Dns.Core.dll", + "lib/net5.0/Zstandard.Net.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/Ubiety.Dns.Core.dll", + "lib/netstandard2.0/Zstandard.Net.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/Ubiety.Dns.Core.dll", + "lib/netstandard2.1/Zstandard.Net.dll", + "mysql.data.8.0.26.nupkg.sha512", + "mysql.data.nuspec" + ] + }, + "MySql.EntityFrameworkCore/3.1.14": { + "sha512": "5fyaHAA7ZUQPZzZaQV0s1Y38E9q7BCVZ+FHFPDh1gaW/uEx4mD4NlvUH8LUVKKydkO/xIIOebp2pnh/ut5RTMw==", + "type": "package", + "path": "mysql.entityframeworkcore/3.1.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/MySql.EntityFrameworkCore.dll", + "lib/netstandard2.0/MySql.EntityFrameworkCore.xml", + "lib/netstandard2.1/MySql.EntityFrameworkCore.dll", + "lib/netstandard2.1/MySql.EntityFrameworkCore.xml", + "mysql.entityframeworkcore.3.1.14.nupkg.sha512", + "mysql.entityframeworkcore.nuspec" + ] + }, "NETStandard.Library/2.0.3": { "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", "type": "package", @@ -3948,6 +6214,22 @@ "packageIcon.png" ] }, + "RestSharp/106.11.7": { + "sha512": "NzndH096CTulvq+ihr7u1mBJ29oukdi9A8bypQJk+kaHxbRzTTrtgsEEQAb04ptTUZmQa7cgo7uF5z7NuEPX1Q==", + "type": "package", + "path": "restsharp/106.11.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/RestSharp.dll", + "lib/net452/RestSharp.xml", + "lib/netstandard2.0/RestSharp.dll", + "lib/netstandard2.0/RestSharp.xml", + "restsharp.106.11.7.nupkg.sha512", + "restsharp.nuspec", + "restsharp.png" + ] + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", "type": "package", @@ -4004,6 +6286,21 @@ "runtime.native.system.nuspec" ] }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "runtime.native.System.Net.Http/4.3.0": { "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", "type": "package", @@ -4158,6 +6455,143 @@ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" ] }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "SharpCompress/0.23.0": { + "sha512": "HBbT47JHvNrsZX2dTBzUBOSzBt+EmIRGLIBkbxcP6Jef7DB4eFWQX5iHWV3Nj7hABFPCjISrZ8s0z72nF2zFHQ==", + "type": "package", + "path": "sharpcompress/0.23.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/SharpCompress.dll", + "lib/net45/SharpCompress.dll", + "lib/netstandard1.0/SharpCompress.dll", + "lib/netstandard1.3/SharpCompress.dll", + "lib/netstandard2.0/SharpCompress.dll", + "sharpcompress.0.23.0.nupkg.sha512", + "sharpcompress.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.2": { + "sha512": "OVPI/nh5AqfLCIKhAYqjCa6AHhc7oKApGcGM3UhMRSerFiBx58nSpGwxVFdMgjOCWZR+fA49nzsnKlWp5hFo8w==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.0/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.0.2.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.2": { + "sha512": "TFSBX426OelS1tkaVC254NVVlrJIe9YLhWPkEvuqJj2104QpmDmEYOhfdfDJD1E/2SmqDhoRw1ek5cQHj8olcQ==", + "type": "package", + "path": "sqlitepclraw.core/2.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.2.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.2": { + "sha512": "S+Tsqe/M7wsc+9HeediI6UHtBKf2X586aRwhi1aBVLGe0WxkAo52O9ZxwEy/v8XMLefcrEMupd2e9CDlIT6QCw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.2.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.0.2": { + "sha512": "i85nt+PE5q+85jDDKos+32MyCyPIBjW09DHhTJm8Tr2lXjRza+zBB3/1ovBbHgZP8o/fXzqNwB8bZsRzEtzk4Q==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/uap10.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.0.2.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, "Swashbuckle.AspNetCore/6.0.2": { "sha512": "TNPXYE2hbXJ4bnage9jls2bOWjj9B3iD6vh9sAFyyjnQB48B10+OIW/gMCwKbeX2G+M/V0KswLDYSr3mJECGPw==", "type": "package", @@ -4221,90 +6655,25 @@ "swashbuckle.aspnetcore.swaggerui.nuspec" ] }, - "System.AppContext/4.1.0": { - "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "System.Buffers/4.6.1": { + "sha512": "N8GXpmiLMtljq7gwvyS+1QvKT/W2J8sNAvx+HVg4NGmsG/H+2k/y9QI23auLJRterrzCiDH+IWAw4V/GPwsMlw==", "type": "package", - "path": "system.appcontext/4.1.0", + "path": "system.buffers/4.6.1", "files": [ ".nupkg.metadata", ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.1.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net461/System.Buffers.targets", + "buildTransitive/net462/_._", + "lib/net462/System.Buffers.dll", + "lib/net462/System.Buffers.xml", "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", "lib/netstandard2.0/System.Buffers.dll", "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "lib/netstandard2.1/_._", + "system.buffers.4.6.1.nupkg.sha512", + "system.buffers.nuspec" ] }, "System.Collections/4.3.0": { @@ -4547,13 +6916,73 @@ "system.collections.specialized.nuspec" ] }, - "System.ComponentModel.Annotations/4.6.0": { - "sha512": "pOd+UhZ3X8xfwKDlgAzowUJNjp8VYVmOHZm++vCd0kq1HZ0zK3mNo2yRXjYgv7Ik/Xi43fmJfND2PLEsQSALCg==", + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", "type": "package", - "path": "system.componentmodel.annotations/4.6.0", + "path": "system.componentmodel/4.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/MonoAndroid10/_._", @@ -4630,12 +7059,125 @@ "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.4.6.0.nupkg.sha512", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", "system.componentmodel.annotations.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Diagnostics.Contracts/4.3.0": { "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", "type": "package", @@ -4764,29 +7306,32 @@ "system.diagnostics.debug.nuspec" ] }, - "System.Diagnostics.DiagnosticSource/4.5.0": { - "sha512": "eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==", + "System.Diagnostics.DiagnosticSource/10.0.4": { + "sha512": "WBD8SloNQ9Fp+6Iz+H42w5/VdwYPz9q7iuT6V5ng2FrtR1bYsewmQ3i2PqRR4NnuSZobJ/XtiKkbQyrheDHHdQ==", "type": "package", - "path": "system.diagnostics.diagnosticsource/4.5.0", + "path": "system.diagnostics.diagnosticsource/10.0.4", "files": [ ".nupkg.metadata", ".signature.p7s", - "LICENSE.TXT", + "Icon.png", "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net10.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net10.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net9.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.10.0.4.nupkg.sha512", "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Diagnostics.Tools/4.3.0": { @@ -5154,29 +7699,24 @@ "system.globalization.extensions.nuspec" ] }, - "System.IdentityModel.Tokens.Jwt/5.3.0": { - "sha512": "EdcMk+36u9gQtbwTiPQ7ckIfiADBwOmCZ6rGD2rfkaozIdW1t7vbXk/FPVAu2r9KgCQZ5245Z+P0YMM/0Q0G2g==", + "System.IdentityModel.Tokens.Jwt/5.6.0": { + "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==", "type": "package", - "path": "system.identitymodel.tokens.jwt/5.3.0", + "path": "system.identitymodel.tokens.jwt/5.6.0", "files": [ ".nupkg.metadata", ".signature.p7s", "lib/net45/System.IdentityModel.Tokens.Jwt.dll", - "lib/net45/System.IdentityModel.Tokens.Jwt.pdb", "lib/net45/System.IdentityModel.Tokens.Jwt.xml", "lib/net451/System.IdentityModel.Tokens.Jwt.dll", - "lib/net451/System.IdentityModel.Tokens.Jwt.pdb", "lib/net451/System.IdentityModel.Tokens.Jwt.xml", "lib/net461/System.IdentityModel.Tokens.Jwt.dll", - "lib/net461/System.IdentityModel.Tokens.Jwt.pdb", "lib/net461/System.IdentityModel.Tokens.Jwt.xml", "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.pdb", "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml", "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.pdb", "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.5.3.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512", "system.identitymodel.tokens.jwt.nuspec" ] }, @@ -5338,6 +7878,35 @@ "system.io.filesystem.primitives.nuspec" ] }, + "System.IO.Pipelines/10.0.4": { + "sha512": "V7+RO17s/tzCpgqyj6t5vb54HFCvrRaMEwTcKDwpoQK66DRROzSff6kqtzHyiWRj6hrQQUmW80NL4pFSNhYpYA==", + "type": "package", + "path": "system.io.pipelines/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net10.0/System.IO.Pipelines.dll", + "lib/net10.0/System.IO.Pipelines.xml", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/net9.0/System.IO.Pipelines.dll", + "lib/net9.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.10.0.4.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.Linq/4.3.0": { "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", "type": "package", @@ -5494,27 +8063,25 @@ "system.linq.expressions.nuspec" ] }, - "System.Memory/4.5.4": { - "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "System.Memory/4.6.3": { + "sha512": "qdcDOgnFZY40+Q9876JUHnlHu7bosOHX8XISRoH94fwk6hgaeQGSgfZd8srWRZNt5bV9ZW2TljcegDNxsf+96A==", "type": "package", - "path": "system.memory/4.5.4", + "path": "system.memory/4.6.3", "files": [ ".nupkg.metadata", ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net461/System.Memory.targets", + "buildTransitive/net462/_._", + "lib/net462/System.Memory.dll", + "lib/net462/System.Memory.xml", "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", "lib/netstandard2.0/System.Memory.dll", "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.4.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "lib/netstandard2.1/_._", + "system.memory.4.6.3.nupkg.sha512", + "system.memory.nuspec" ] }, "System.Net.Http/4.3.0": { @@ -5678,53 +8245,74 @@ "system.net.primitives.nuspec" ] }, - "System.Numerics.Vectors/4.5.0": { - "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "System.Net.WebSockets.WebSocketProtocol/4.5.3": { + "sha512": "O8RIMEVeOFzT8fscu6MDc4y+0LfnlXdqGovb0rJHBNVKhwn6BsNJmTY1oYUZPPsMfcc5OP20WpX4vj/aK8n98g==", "type": "package", - "path": "system.numerics.vectors/4.5.0", + "path": "system.net.websockets.websocketprotocol/4.5.3", "files": [ ".nupkg.metadata", ".signature.p7s", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/netstandard2.0/System.Numerics.Vectors.dll", - "lib/netstandard2.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.Numerics.Vectors.dll", - "ref/net45/System.Numerics.Vectors.xml", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/netstandard2.0/System.Numerics.Vectors.dll", - "ref/netstandard2.0/System.Numerics.Vectors.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.numerics.vectors.4.5.0.nupkg.sha512", - "system.numerics.vectors.nuspec", + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll", + "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", + "system.net.websockets.websocketprotocol.4.5.3.nupkg.sha512", + "system.net.websockets.websocketprotocol.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, + "System.Numerics.Tensors/10.0.4": { + "sha512": "EK8wJVxnVfeCzchnEqVjIfZDpVIcmjfjUs9x1nzI41X2naPGT57QjoHlQJma2vDQUxEtPQiGv/v90mwcflx6mQ==", + "type": "package", + "path": "system.numerics.tensors/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Numerics.Tensors.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Numerics.Tensors.targets", + "lib/net10.0/System.Numerics.Tensors.dll", + "lib/net10.0/System.Numerics.Tensors.xml", + "lib/net462/System.Numerics.Tensors.dll", + "lib/net462/System.Numerics.Tensors.xml", + "lib/net8.0/System.Numerics.Tensors.dll", + "lib/net8.0/System.Numerics.Tensors.xml", + "lib/net9.0/System.Numerics.Tensors.dll", + "lib/net9.0/System.Numerics.Tensors.xml", + "lib/netstandard2.0/System.Numerics.Tensors.dll", + "lib/netstandard2.0/System.Numerics.Tensors.xml", + "system.numerics.tensors.10.0.4.nupkg.sha512", + "system.numerics.tensors.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Numerics.Vectors/4.6.1": { + "sha512": "sQxefTnhagrhoq2ReR0D/6K0zJcr9Hrd6kikeXsA1I8kOCboTavcUC4r7TSfpKFeE163uMuxZcyfO1mGO3EN8Q==", + "type": "package", + "path": "system.numerics.vectors/4.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net461/System.Numerics.Vectors.targets", + "buildTransitive/net462/_._", + "lib/net462/System.Numerics.Vectors.dll", + "lib/net462/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/netstandard2.1/_._", + "system.numerics.vectors.4.6.1.nupkg.sha512", + "system.numerics.vectors.nuspec" + ] + }, "System.ObjectModel/4.3.0": { "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", "type": "package", @@ -5840,6 +8428,42 @@ "system.reactive.nuspec" ] }, + "System.Reactive.Core/4.4.1": { + "sha512": "YQHJOt8hZvwFelIIfs19t8Jhz5P6NS1ZZccbVUuE1LFyoFZjaUecdYIYykgXzpyj5Rl40XC3xkyuuhHRaAln2w==", + "type": "package", + "path": "system.reactive.core/4.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/System.Reactive.Core.dll", + "lib/net46/System.Reactive.Core.xml", + "lib/netstandard2.0/System.Reactive.Core.dll", + "lib/netstandard2.0/System.Reactive.Core.xml", + "lib/uap10.0/System.Reactive.Core.dll", + "lib/uap10.0/System.Reactive.Core.pri", + "lib/uap10.0/System.Reactive.Core.xml", + "system.reactive.core.4.4.1.nupkg.sha512", + "system.reactive.core.nuspec" + ] + }, + "System.Reactive.Linq/4.4.1": { + "sha512": "wyOVuUyHmPV667REPwcZjFjOlRLX6qSGVcXMye0qUqBAWFB3bu1RO1XLGWZTnf0d67DQHV69kw7tAtTh+4EYyQ==", + "type": "package", + "path": "system.reactive.linq/4.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/System.Reactive.Linq.dll", + "lib/net46/System.Reactive.Linq.xml", + "lib/netstandard2.0/System.Reactive.Linq.dll", + "lib/netstandard2.0/System.Reactive.Linq.xml", + "lib/uap10.0/System.Reactive.Linq.dll", + "lib/uap10.0/System.Reactive.Linq.pri", + "lib/uap10.0/System.Reactive.Linq.xml", + "system.reactive.linq.4.4.1.nupkg.sha512", + "system.reactive.linq.nuspec" + ] + }, "System.Reflection/4.3.0": { "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", "type": "package", @@ -6395,36 +9019,28 @@ "system.runtime.nuspec" ] }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "System.Runtime.CompilerServices.Unsafe/6.1.2": { + "sha512": "2hBr6zdbIBTDE3EhK7NSVNdX58uTK6iHW/P/Axmm9sl1xoGSLqDvMtpecn226TNwHByFokYwJmt/aQQNlO5CRw==", "type": "package", - "path": "system.runtime.compilerservices.unsafe/5.0.0", + "path": "system.runtime.compilerservices.unsafe/6.1.2", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "PACKAGE.md", + "buildTransitive/net461/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "lib/net462/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net462/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net7.0/_._", "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", - "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "system.runtime.compilerservices.unsafe.6.1.2.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec" ] }, "System.Runtime.Extensions/4.3.0": { @@ -6639,41 +9255,6 @@ "system.runtime.interopservices.nuspec" ] }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, "System.Runtime.InteropServices.WindowsRuntime/4.3.0": { "sha512": "J4GUi3xZQLUBasNwZnjrffN8i5wpHrBtZoLG+OhRyGo/+YunMRWWtwoMDlUAIdmX0uRfpHIBDSV6zyr3yf00TA==", "type": "package", @@ -6792,6 +9373,94 @@ "system.runtime.numerics.nuspec" ] }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Json/4.3.0": { + "sha512": "CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==", + "type": "package", + "path": "system.runtime.serialization.json/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Serialization.Json.dll", + "ref/netcore50/System.Runtime.Serialization.Json.xml", + "ref/netcore50/de/System.Runtime.Serialization.Json.xml", + "ref/netcore50/es/System.Runtime.Serialization.Json.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", + "ref/netcore50/it/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.json.4.3.0.nupkg.sha512", + "system.runtime.serialization.json.nuspec" + ] + }, "System.Runtime.Serialization.Primitives/4.3.0": { "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", "type": "package", @@ -6865,82 +9534,10 @@ "system.runtime.serialization.primitives.nuspec" ] }, - "System.Runtime.Serialization.Xml/4.3.0": { - "sha512": "nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==", + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", "type": "package", - "path": "system.runtime.serialization.xml/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Xml.dll", - "lib/netcore50/System.Runtime.Serialization.Xml.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Xml.dll", - "ref/netcore50/System.Runtime.Serialization.Xml.dll", - "ref/netcore50/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.xml.4.3.0.nupkg.sha512", - "system.runtime.serialization.xml.nuspec" - ] - }, - "System.Security.AccessControl/4.5.0": { - "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", - "type": "package", - "path": "system.security.accesscontrol/4.5.0", + "path": "system.security.accesscontrol/4.7.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -6948,8 +9545,10 @@ "THIRD-PARTY-NOTICES.TXT", "lib/net46/System.Security.AccessControl.dll", "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", "lib/netstandard1.3/System.Security.AccessControl.dll", "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", "lib/uap10.0.16299/_._", "ref/net46/System.Security.AccessControl.dll", "ref/net461/System.Security.AccessControl.dll", @@ -6970,54 +9569,17 @@ "ref/uap10.0.16299/_._", "runtimes/win/lib/net46/System.Security.AccessControl.dll", "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.4.7.0.nupkg.sha512", "system.security.accesscontrol.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, - "System.Security.Claims/4.3.0": { - "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", - "type": "package", - "path": "system.security.claims/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Claims.dll", - "lib/netstandard1.3/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Claims.dll", - "ref/netstandard1.3/System.Security.Claims.dll", - "ref/netstandard1.3/System.Security.Claims.xml", - "ref/netstandard1.3/de/System.Security.Claims.xml", - "ref/netstandard1.3/es/System.Security.Claims.xml", - "ref/netstandard1.3/fr/System.Security.Claims.xml", - "ref/netstandard1.3/it/System.Security.Claims.xml", - "ref/netstandard1.3/ja/System.Security.Claims.xml", - "ref/netstandard1.3/ko/System.Security.Claims.xml", - "ref/netstandard1.3/ru/System.Security.Claims.xml", - "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", - "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.claims.4.3.0.nupkg.sha512", - "system.security.claims.nuspec" - ] - }, "System.Security.Cryptography.Algorithms/4.3.0": { "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", "type": "package", @@ -7059,23 +9621,33 @@ "system.security.cryptography.algorithms.nuspec" ] }, - "System.Security.Cryptography.Cng/4.4.0": { - "sha512": "3d/d+7sdNpfYfqJFzuE/o6Pl/reaMbH7rlUMNvtm4+XVYHY32tdFa45yjB3vhb6q0YY+IV8GUuiBPRsBFP3yaw==", + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", "type": "package", - "path": "system.security.cryptography.cng/4.4.0", + "path": "system.security.cryptography.cng/4.5.0", "files": [ ".nupkg.metadata", ".signature.p7s", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net46/System.Security.Cryptography.Cng.dll", "lib/net461/System.Security.Cryptography.Cng.dll", "lib/net462/System.Security.Cryptography.Cng.dll", "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net46/System.Security.Cryptography.Cng.dll", "ref/net461/System.Security.Cryptography.Cng.dll", "ref/net461/System.Security.Cryptography.Cng.xml", @@ -7085,19 +9657,28 @@ "ref/net47/System.Security.Cryptography.Cng.xml", "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.4.0.nupkg.sha512", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", "system.security.cryptography.cng.nuspec", "useSharedDesignerContext.txt", "version.txt" @@ -7254,6 +9835,47 @@ "system.security.cryptography.primitives.nuspec" ] }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", "type": "package", @@ -7331,90 +9953,37 @@ "version.txt" ] }, - "System.Security.Permissions/4.5.0": { - "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", "type": "package", - "path": "system.security.permissions/4.5.0", + "path": "system.security.permissions/4.7.0", "files": [ ".nupkg.metadata", ".signature.p7s", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", "ref/net461/System.Security.Permissions.dll", "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", "ref/netstandard2.0/System.Security.Permissions.dll", "ref/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.4.7.0.nupkg.sha512", "system.security.permissions.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, - "System.Security.Principal/4.3.0": { - "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", "type": "package", - "path": "system.security.principal/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/netstandard1.0/System.Security.Principal.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/netcore50/de/System.Security.Principal.xml", - "ref/netcore50/es/System.Security.Principal.xml", - "ref/netcore50/fr/System.Security.Principal.xml", - "ref/netcore50/it/System.Security.Principal.xml", - "ref/netcore50/ja/System.Security.Principal.xml", - "ref/netcore50/ko/System.Security.Principal.xml", - "ref/netcore50/ru/System.Security.Principal.xml", - "ref/netcore50/zh-hans/System.Security.Principal.xml", - "ref/netcore50/zh-hant/System.Security.Principal.xml", - "ref/netstandard1.0/System.Security.Principal.dll", - "ref/netstandard1.0/System.Security.Principal.xml", - "ref/netstandard1.0/de/System.Security.Principal.xml", - "ref/netstandard1.0/es/System.Security.Principal.xml", - "ref/netstandard1.0/fr/System.Security.Principal.xml", - "ref/netstandard1.0/it/System.Security.Principal.xml", - "ref/netstandard1.0/ja/System.Security.Principal.xml", - "ref/netstandard1.0/ko/System.Security.Principal.xml", - "ref/netstandard1.0/ru/System.Security.Principal.xml", - "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", - "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.principal.4.3.0.nupkg.sha512", - "system.security.principal.nuspec" - ] - }, - "System.Security.Principal.Windows/4.5.0": { - "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", - "type": "package", - "path": "system.security.principal.windows/4.5.0", + "path": "system.security.principal.windows/4.7.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -7422,12 +9991,16 @@ "THIRD-PARTY-NOTICES.TXT", "lib/net46/System.Security.Principal.Windows.dll", "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", "lib/netstandard1.3/System.Security.Principal.Windows.dll", "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", "lib/uap10.0.16299/_._", "ref/net46/System.Security.Principal.Windows.dll", "ref/net461/System.Security.Principal.Windows.dll", "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", "ref/netstandard1.3/System.Security.Principal.Windows.dll", "ref/netstandard1.3/System.Security.Principal.Windows.xml", "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", @@ -7443,17 +10016,65 @@ "ref/netstandard2.0/System.Security.Principal.Windows.xml", "ref/uap10.0.16299/_._", "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.4.7.0.nupkg.sha512", "system.security.principal.windows.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, + "System.Security.SecureString/4.3.0": { + "sha512": "PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==", + "type": "package", + "path": "system.security.securestring/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.SecureString.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.SecureString.dll", + "ref/netstandard1.3/System.Security.SecureString.dll", + "ref/netstandard1.3/System.Security.SecureString.xml", + "ref/netstandard1.3/de/System.Security.SecureString.xml", + "ref/netstandard1.3/es/System.Security.SecureString.xml", + "ref/netstandard1.3/fr/System.Security.SecureString.xml", + "ref/netstandard1.3/it/System.Security.SecureString.xml", + "ref/netstandard1.3/ja/System.Security.SecureString.xml", + "ref/netstandard1.3/ko/System.Security.SecureString.xml", + "ref/netstandard1.3/ru/System.Security.SecureString.xml", + "ref/netstandard1.3/zh-hans/System.Security.SecureString.xml", + "ref/netstandard1.3/zh-hant/System.Security.SecureString.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll", + "runtimes/win/lib/net46/System.Security.SecureString.dll", + "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll", + "system.security.securestring.4.3.0.nupkg.sha512", + "system.security.securestring.nuspec" + ] + }, "System.Text.Encoding/4.3.0": { "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", "type": "package", @@ -7522,6 +10143,41 @@ "system.text.encoding.nuspec" ] }, + "System.Text.Encoding.CodePages/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Text.Encoding.Extensions/4.3.0": { "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", "type": "package", @@ -7590,52 +10246,113 @@ "system.text.encoding.extensions.nuspec" ] }, - "System.Text.Encodings.Web/5.0.0": { - "sha512": "EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", + "System.Text.Encodings.Web/10.0.4": { + "sha512": "6g3B7jNsPRNf4luuYt1qE4R8S3JI+zMsfGWL9Idv4Mk1Z9Gh+rCagp9sG3AejPS87yBj1DjopM4i3wSz0WnEqg==", "type": "package", - "path": "system.text.encodings.web/5.0.0", + "path": "system.text.encodings.web/10.0.4", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Text.Encodings.Web.dll", - "lib/net461/System.Text.Encodings.Web.xml", - "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", - "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", - "lib/netstandard1.0/System.Text.Encodings.Web.dll", - "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net10.0/System.Text.Encodings.Web.dll", + "lib/net10.0/System.Text.Encodings.Web.xml", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/net9.0/System.Text.Encodings.Web.dll", + "lib/net9.0/System.Text.Encodings.Web.xml", "lib/netstandard2.0/System.Text.Encodings.Web.dll", "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.1/System.Text.Encodings.Web.dll", - "lib/netstandard2.1/System.Text.Encodings.Web.xml", - "system.text.encodings.web.5.0.0.nupkg.sha512", + "runtimes/browser/lib/net10.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net10.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "runtimes/wasi/lib/net10.0/System.Text.Encodings.Web.dll", + "runtimes/wasi/lib/net10.0/System.Text.Encodings.Web.xml", + "runtimes/win/lib/net9.0/System.Text.Encodings.Web.dll", + "runtimes/win/lib/net9.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.10.0.4.nupkg.sha512", "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, - "System.Text.Json/5.0.0": { - "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", + "System.Text.Json/10.0.4": { + "sha512": "1tRPRt8D/kzjGL7em1uJ3iJlvVIC3G/sZJ+ZgSvtVYLXGGO26Clkqy2b5uts/pyR706Yw8/xA7exeI2PI50dpw==", "type": "package", - "path": "system.text.json/5.0.0", + "path": "system.text.json/10.0.4", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Text.Json.dll", - "lib/net461/System.Text.Json.xml", - "lib/netcoreapp3.0/System.Text.Json.dll", - "lib/netcoreapp3.0/System.Text.Json.xml", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net10.0/System.Text.Json.dll", + "lib/net10.0/System.Text.Json.xml", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", "lib/netstandard2.0/System.Text.Json.dll", "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.5.0.0.nupkg.sha512", + "system.text.json.10.0.4.nupkg.sha512", "system.text.json.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Text.RegularExpressions/4.3.0": { @@ -7793,6 +10510,37 @@ "system.threading.nuspec" ] }, + "System.Threading.Channels/10.0.4": { + "sha512": "YkecPP9I3PjRouQJzG/JwUoiASqHKddXQrgu+CKHra6yFv6AmTr8PCwzHanNus/kDeujWM4Bqunx7dYFRiPErg==", + "type": "package", + "path": "system.threading.channels/10.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net10.0/System.Threading.Channels.dll", + "lib/net10.0/System.Threading.Channels.xml", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net8.0/System.Threading.Channels.dll", + "lib/net8.0/System.Threading.Channels.xml", + "lib/net9.0/System.Threading.Channels.dll", + "lib/net9.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.10.0.4.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.Threading.Tasks/4.3.0": { "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", "type": "package", @@ -7861,43 +10609,50 @@ "system.threading.tasks.nuspec" ] }, - "System.Threading.Tasks.Extensions/4.5.4": { - "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "System.Threading.Tasks.Dataflow/4.9.0": { + "sha512": "dTS+3D/GtG2/Pvc3E5YzVvAa7aQJgLDlZDIzukMOJjYudVOQOUXEU68y6Zi3Nn/jqIeB5kOCwrGbQFAKHVzXEQ==", "type": "package", - "path": "system.threading.tasks.extensions/4.5.4", + "path": "system.threading.tasks.dataflow/4.9.0", "files": [ ".nupkg.metadata", ".signature.p7s", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Threading.Tasks.Extensions.dll", - "lib/net461/System.Threading.Tasks.Extensions.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml", + "system.threading.tasks.dataflow.4.9.0.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, + "System.Threading.Tasks.Extensions/4.6.3": { + "sha512": "7sCiwilJLYbTZELaKnc7RecBBXWXA+xMLQWZKWawBxYjp6DBlSE3v9/UcvKBvr1vv2tTOhipiogM8rRmxlhrVA==", + "type": "package", + "path": "system.threading.tasks.extensions/4.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net461/System.Threading.Tasks.Extensions.targets", + "buildTransitive/net462/_._", + "lib/net462/System.Threading.Tasks.Extensions.dll", + "lib/net462/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.1/_._", + "system.threading.tasks.extensions.4.6.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, "System.Xml.ReaderWriter/4.3.0": { "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", "type": "package", @@ -8163,6 +10918,18 @@ "xdashboard.xcommons.nuspec" ] }, + "xDashboard.xDataService/1.0.0": { + "sha512": "cKdH1fqyEkH0sIzAY4Y5KbsyORDTI1rQ/SL71c4GXY3ruY7vA6CebqEPBDsQQxGflJwI3RiIsRl3Ms5eULejzA==", + "type": "package", + "path": "xdashboard.xdataservice/1.0.0", + "files": [ + ".nupkg.metadata", + "icon.png", + "lib/netstandard2.0/xDataService.dll", + "xdashboard.xdataservice.1.0.0.nupkg.sha512", + "xdashboard.xdataservice.nuspec" + ] + }, "xDashboard.xExceptions/1.0.0": { "sha512": "VQzY7lVQLimslT4DUPvtHskX4lb6N+lBbWlySzzohOWcU+w1zFpz6pEcsEFZwnAsADbCiGebubMR2nFexiWbYw==", "type": "package", @@ -8174,12 +10941,62 @@ "xdashboard.xexceptions.1.0.0.nupkg.sha512", "xdashboard.xexceptions.nuspec" ] + }, + "xDashboard.xHttpService/1.0.0": { + "sha512": "f9akpO5K8VioWTHkKCC0+zuDz1BQarwRcBWtDx0ESEqsJHKr/Ad4iSNJYYQ/5I1gU6R8vULm523ddeebn36zwQ==", + "type": "package", + "path": "xdashboard.xhttpservice/1.0.0", + "files": [ + ".nupkg.metadata", + "icon.png", + "lib/netstandard2.0/xHttpService.dll", + "xdashboard.xhttpservice.1.0.0.nupkg.sha512", + "xdashboard.xhttpservice.nuspec" + ] + }, + "xDashboard.xIdentityModels/1.0.0": { + "sha512": "VbTXDZWcy/1iDCsW3QFM7lKO+Q+9TAPYcpXzNCrOQethdUYMQlPY9s/pXRg3+bQVIc8FH/TxJQJt6h1M2UFKFw==", + "type": "package", + "path": "xdashboard.xidentitymodels/1.0.0", + "files": [ + ".nupkg.metadata", + "icon.png", + "lib/netstandard2.0/xIdentityModels.dll", + "xdashboard.xidentitymodels.1.0.0.nupkg.sha512", + "xdashboard.xidentitymodels.nuspec" + ] + }, + "xDashboard.xIdentityService/1.0.0": { + "sha512": "/MEQ6UoBFwQnQADarkT2EAOmKyKziMYFw5pcboU0xJQARQhz2sLoDVXYrziCufNilImlG6zNGt2a2GuCc461Jg==", + "type": "package", + "path": "xdashboard.xidentityservice/1.0.0", + "files": [ + ".nupkg.metadata", + "icon.png", + "lib/netstandard2.0/xIdentityService.dll", + "xdashboard.xidentityservice.1.0.0.nupkg.sha512", + "xdashboard.xidentityservice.nuspec" + ] + }, + "xDashboard.xModels/1.0.0": { + "sha512": "w4lcmCD2B2VugvC2w1NT8XZKsF1fguSQGlQyvi+BlQh0UhHKhdR6oCqesLEiBB0guvgFQAmHHXVT2NS0K67yYA==", + "type": "package", + "path": "xdashboard.xmodels/1.0.0", + "files": [ + ".nupkg.metadata", + "icon.png", + "lib/netstandard2.0/xModels.dll", + "xdashboard.xmodels.1.0.0.nupkg.sha512", + "xdashboard.xmodels.nuspec" + ] } }, "projectFileDependencyGroups": { ".NETStandard,Version=v2.0": [ + "Microsoft.Extensions.AI >= 10.4.1", "NETStandard.Library >= 2.0.3", - "xDashboard.xCommons >= 1.0.0" + "xDashboard.xCommons >= 1.0.0", + "xDashboard.xIdentityService >= 1.0.0" ] }, "packageFolders": { @@ -8188,13 +11005,14 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "projectUniqueName": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "projectName": "xSaherelm.xAiService", - "projectPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "projectPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "packagesPath": "C:\\Users\\saherelm\\.nuget\\packages\\", - "outputPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\obj\\", + "outputPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ + "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\NuGet.Config", "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\NuGet.Config", "C:\\Users\\saherelm\\AppData\\Roaming\\NuGet\\NuGet.Config" ], @@ -8202,6 +11020,7 @@ "netstandard2.0" ], "sources": { + "https://api.nuget.org/v3/index.json": {}, "https://api.nuget.org/v3/index.json": {}, "https://hub.megan.ir/nuget/index.json": {}, "https://nuget.saherelmhub.ir/v3/index.json": {} @@ -8228,6 +11047,10 @@ "netstandard2.0": { "targetAlias": "netstandard2.0", "dependencies": { + "Microsoft.Extensions.AI": { + "target": "Package", + "version": "[10.4.1, )" + }, "NETStandard.Library": { "suppressParent": "All", "target": "Package", @@ -8237,6 +11060,10 @@ "xDashboard.xCommons": { "target": "Package", "version": "[1.0.0, )" + }, + "xDashboard.xIdentityService": { + "target": "Package", + "version": "[1.0.0, )" } }, "imports": [ @@ -8259,7 +11086,7 @@ "code": "NU1900", "level": "Warning", "warningLevel": 1, - "message": "Error occurred while getting package vulnerability data: No such host is known. (api.nuget.org:443)" + "message": "Error occurred while getting package vulnerability data: A socket operation was attempted to an unreachable network. (api.nuget.org:443)" }, { "code": "NU1900", diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 9cb5f60..9962b20 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,12 +1,30 @@ { "version": 2, - "dgSpecHash": "QshGGOb20PA=", + "dgSpecHash": "4NMvJuwPaPw=", "success": true, - "projectFilePath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "projectFilePath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "expectedPackageFiles": [ "C:\\Users\\saherelm\\.nuget\\packages\\automapper\\10.1.1\\automapper.10.1.1.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\8.1.0\\automapper.extensions.microsoft.dependencyinjection.8.1.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\dnsclient\\1.4.0\\dnsclient.1.4.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\google.protobuf\\3.14.0\\google.protobuf.3.14.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql\\3.0.0.2026\\graphql.3.0.0.2026.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql-parser\\5.3.0\\graphql-parser.5.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.newtonsoftjson\\3.0.0.2026\\graphql.newtonsoftjson.3.0.0.2026.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.server.core\\4.0.1\\graphql.server.core.4.0.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.server.transports.aspnetcore\\4.0.1\\graphql.server.transports.aspnetcore.4.0.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.server.transports.aspnetcore.newtonsoftjson\\4.0.1\\graphql.server.transports.aspnetcore.newtonsoftjson.4.0.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.server.transports.subscriptions.abstractions\\4.0.1\\graphql.server.transports.subscriptions.abstractions.4.0.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.server.transports.websockets\\4.0.1\\graphql.server.transports.websockets.4.0.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.server.ui.playground\\4.0.1\\graphql.server.ui.playground.4.0.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.server.ui.voyager\\4.0.1\\graphql.server.ui.voyager.4.0.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\graphql.systemtextjson\\3.0.0.2026\\graphql.systemtextjson.3.0.0.2026.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\identitymodel\\5.0.1\\identitymodel.5.0.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\identitymodel.aspnetcore.oauth2introspection\\4.0.0-preview.6\\identitymodel.aspnetcore.oauth2introspection.4.0.0-preview.6.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\k4os.compression.lz4\\1.1.11\\k4os.compression.lz4.1.1.11.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\k4os.compression.lz4.streams\\1.1.11\\k4os.compression.lz4.streams.1.1.11.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\libphonenumber-csharp\\8.12.17\\libphonenumber-csharp.8.12.17.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.authentication\\2.2.0\\microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", @@ -15,7 +33,8 @@ "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.cors\\2.2.0\\microsoft.aspnetcore.cors.2.2.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\2.2.0\\microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\5.0.2\\microsoft.aspnetcore.cryptography.internal.5.0.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\5.0.2\\microsoft.aspnetcore.cryptography.keyderivation.5.0.2.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\2.2.0\\microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\2.2.0\\microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", @@ -32,44 +51,73 @@ "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.staticfiles\\2.1.0\\microsoft.aspnetcore.staticfiles.2.1.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.websockets\\2.2.1\\microsoft.aspnetcore.websockets.2.2.1.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\10.0.4\\microsoft.bcl.asyncinterfaces.10.0.4.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.1\\microsoft.bcl.hashcode.1.1.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.bcl.numerics\\10.0.4\\microsoft.bcl.numerics.10.0.4.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\2.1.0\\microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.data.sqlclient\\1.1.3\\microsoft.data.sqlclient.1.1.3.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.data.sqlite.core\\3.1.14\\microsoft.data.sqlite.core.3.1.14.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\3.1.6\\microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.14\\microsoft.entityframeworkcore.3.1.14.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.14\\microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.14\\microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.14\\microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\3.1.14\\microsoft.entityframeworkcore.sqlite.3.1.14.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\3.1.14\\microsoft.entityframeworkcore.sqlite.core.3.1.14.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.14\\microsoft.entityframeworkcore.sqlserver.3.1.14.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.ai\\10.4.1\\microsoft.extensions.ai.10.4.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.ai.abstractions\\10.4.1\\microsoft.extensions.ai.abstractions.10.4.1.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\10.0.4\\microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.14\\microsoft.extensions.caching.memory.3.1.14.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.configuration\\5.0.0\\microsoft.extensions.configuration.5.0.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.configuration.binder\\5.0.0\\microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.dependencymodel\\2.1.0\\microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.4\\microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.dependencymodel\\3.1.6\\microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.fileproviders.embedded\\2.1.0\\microsoft.extensions.fileproviders.embedded.2.1.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.http\\2.2.0\\microsoft.extensions.http.2.2.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.identity.core\\5.0.2\\microsoft.extensions.identity.core.5.0.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.identity.stores\\5.0.2\\microsoft.extensions.identity.stores.5.0.2.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.localization\\2.1.0\\microsoft.extensions.localization.2.1.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\2.1.0\\microsoft.extensions.localization.abstractions.2.1.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.4\\microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.options\\3.0.0\\microsoft.extensions.options.3.0.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.4\\microsoft.extensions.primitives.10.0.4.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.extensions.webencoders\\2.2.0\\microsoft.extensions.webencoders.2.2.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.3.0\\microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identitymodel.logging\\5.3.0\\microsoft.identitymodel.logging.5.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.6.0\\microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identitymodel.logging\\5.6.0\\microsoft.identitymodel.logging.5.6.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.3.0\\microsoft.identitymodel.protocols.5.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.3.0\\microsoft.identitymodel.protocols.openidconnect.5.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.3.0\\microsoft.identitymodel.tokens.5.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.6.0\\microsoft.identitymodel.tokens.5.6.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.io.recyclablememorystream\\1.4.0\\microsoft.io.recyclablememorystream.1.4.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\mongodb.bson\\2.13.2\\mongodb.bson.2.13.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\mongodb.driver\\2.13.2\\mongodb.driver.2.13.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\mongodb.driver.core\\2.13.2\\mongodb.driver.core.2.13.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\mongodb.libmongocrypt\\1.2.2\\mongodb.libmongocrypt.1.2.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\mysql.data\\8.0.26\\mysql.data.8.0.26.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\mysql.entityframeworkcore\\3.1.14\\mysql.entityframeworkcore.3.1.14.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\restsharp\\106.11.7\\restsharp.106.11.7.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", @@ -81,40 +129,56 @@ "C:\\Users\\saherelm\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\sharpcompress\\0.23.0\\sharpcompress.0.23.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.2\\sqlitepclraw.bundle_e_sqlite3.2.0.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\sqlitepclraw.core\\2.0.2\\sqlitepclraw.core.2.0.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.2\\sqlitepclraw.lib.e_sqlite3.2.0.2.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.0.2\\sqlitepclraw.provider.e_sqlite3.2.0.2.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\swashbuckle.aspnetcore\\6.0.2\\swashbuckle.aspnetcore.6.0.2.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.0.2\\swashbuckle.aspnetcore.swagger.6.0.2.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.0.2\\swashbuckle.aspnetcore.swaggergen.6.0.2.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.0.2\\swashbuckle.aspnetcore.swaggerui.6.0.2.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.buffers\\4.6.1\\system.buffers.4.6.1.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.componentmodel.annotations\\4.6.0\\system.componentmodel.annotations.4.6.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.diagnostics.contracts\\4.3.0\\system.diagnostics.contracts.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.5.0\\system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.diagnostics.diagnosticsource\\10.0.4\\system.diagnostics.diagnosticsource.10.0.4.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.3.0\\system.identitymodel.tokens.jwt.5.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.6.0\\system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.io.pipelines\\10.0.4\\system.io.pipelines.10.0.4.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.memory\\4.6.3\\system.memory.4.6.3.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.net.websockets.websocketprotocol\\4.5.3\\system.net.websockets.websocketprotocol.4.5.3.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.numerics.tensors\\10.0.4\\system.numerics.tensors.10.0.4.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.numerics.vectors\\4.6.1\\system.numerics.vectors.4.6.1.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.reactive\\5.0.0\\system.reactive.5.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.reactive.core\\4.4.1\\system.reactive.core.4.4.1.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.reactive.linq\\4.4.1\\system.reactive.linq.4.4.1.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.reflection.emit\\4.7.0\\system.reflection.emit.4.7.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.7.0\\system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512", @@ -124,61 +188,69 @@ "C:\\Users\\saherelm\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.1.2\\system.runtime.compilerservices.unsafe.6.1.2.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.interopservices.windowsruntime\\4.3.0\\system.runtime.interopservices.windowsruntime.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.runtime.serialization.xml\\4.3.0\\system.runtime.serialization.xml.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.security.claims\\4.3.0\\system.security.claims.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.cng\\4.4.0\\system.security.cryptography.cng.4.4.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.pkcs\\4.5.0\\system.security.cryptography.pkcs.4.5.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.security.cryptography.xml\\4.5.0\\system.security.cryptography.xml.4.5.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.security.principal\\4.3.0\\system.security.principal.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.text.encodings.web\\5.0.0\\system.text.encodings.web.5.0.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.text.encodings.web\\10.0.4\\system.text.encodings.web.10.0.4.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.text.json\\10.0.4\\system.text.json.10.0.4.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.threading.channels\\10.0.4\\system.threading.channels.10.0.4.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.threading.tasks.dataflow\\4.9.0\\system.threading.tasks.dataflow.4.9.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\system.threading.tasks.extensions\\4.6.3\\system.threading.tasks.extensions.4.6.3.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512", "C:\\Users\\saherelm\\.nuget\\packages\\xdashboard.xcommons\\1.0.0\\xdashboard.xcommons.1.0.0.nupkg.sha512", - "C:\\Users\\saherelm\\.nuget\\packages\\xdashboard.xexceptions\\1.0.0\\xdashboard.xexceptions.1.0.0.nupkg.sha512" + "C:\\Users\\saherelm\\.nuget\\packages\\xdashboard.xdataservice\\1.0.0\\xdashboard.xdataservice.1.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\xdashboard.xexceptions\\1.0.0\\xdashboard.xexceptions.1.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\xdashboard.xhttpservice\\1.0.0\\xdashboard.xhttpservice.1.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\xdashboard.xidentitymodels\\1.0.0\\xdashboard.xidentitymodels.1.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\xdashboard.xidentityservice\\1.0.0\\xdashboard.xidentityservice.1.0.0.nupkg.sha512", + "C:\\Users\\saherelm\\.nuget\\packages\\xdashboard.xmodels\\1.0.0\\xdashboard.xmodels.1.0.0.nupkg.sha512" ], "logs": [ { "code": "NU1900", "level": "Warning", - "message": "Error occurred while getting package vulnerability data: No such host is known. (api.nuget.org:443)", - "projectPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "message": "Error occurred while getting package vulnerability data: A socket operation was attempted to an unreachable network. (api.nuget.org:443)", + "projectPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "warningLevel": 1, - "filePath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "filePath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "targetGraphs": [] }, { "code": "NU1900", "level": "Warning", "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json.", - "projectPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "projectPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "warningLevel": 1, - "filePath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "filePath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "targetGraphs": [] } ] diff --git a/obj/xAiService.csproj.nuget.dgspec.json b/obj/xAiService.csproj.nuget.dgspec.json index 473c71f..7a073f5 100644 --- a/obj/xAiService.csproj.nuget.dgspec.json +++ b/obj/xAiService.csproj.nuget.dgspec.json @@ -1,19 +1,20 @@ { "format": 1, "restore": { - "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj": {} + "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj": {} }, "projects": { - "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj": { + "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "projectUniqueName": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "projectName": "xSaherelm.xAiService", - "projectPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\xAiService.csproj", + "projectPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\XAiService.csproj", "packagesPath": "C:\\Users\\saherelm\\.nuget\\packages\\", - "outputPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\xAiService\\obj\\", + "outputPath": "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ + "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\Modules\\XAiService\\NuGet.Config", "C:\\Users\\saherelm\\Documents\\Projects\\xSaherElmAIWorkspace\\NuGet.Config", "C:\\Users\\saherelm\\AppData\\Roaming\\NuGet\\NuGet.Config" ], @@ -21,6 +22,7 @@ "netstandard2.0" ], "sources": { + "https://api.nuget.org/v3/index.json": {}, "https://api.nuget.org/v3/index.json": {}, "https://hub.megan.ir/nuget/index.json": {}, "https://nuget.saherelmhub.ir/v3/index.json": {} @@ -47,6 +49,10 @@ "netstandard2.0": { "targetAlias": "netstandard2.0", "dependencies": { + "Microsoft.Extensions.AI": { + "target": "Package", + "version": "[10.4.1, )" + }, "NETStandard.Library": { "suppressParent": "All", "target": "Package", @@ -56,6 +62,10 @@ "xDashboard.xCommons": { "target": "Package", "version": "[1.0.0, )" + }, + "xDashboard.xIdentityService": { + "target": "Package", + "version": "[1.0.0, )" } }, "imports": [ diff --git a/obj/xAiService.csproj.nuget.g.targets b/obj/xAiService.csproj.nuget.g.targets index 868c101..04a8a59 100644 --- a/obj/xAiService.csproj.nuget.g.targets +++ b/obj/xAiService.csproj.nuget.g.targets @@ -1,6 +1,8 @@  + + \ No newline at end of file diff --git a/xAiService.csproj b/xAiService.csproj index c4d43da..d638040 100644 --- a/xAiService.csproj +++ b/xAiService.csproj @@ -17,12 +17,17 @@ - + - + + + + + + +