diff --git a/.vs/Plugins/v17/.wsuo b/.vs/Plugins/v17/.wsuo new file mode 100644 index 0000000..95b3763 Binary files /dev/null and b/.vs/Plugins/v17/.wsuo differ diff --git a/.vs/Plugins/v17/DocumentLayout.json b/.vs/Plugins/v17/DocumentLayout.json new file mode 100644 index 0000000..236123c --- /dev/null +++ b/.vs/Plugins/v17/DocumentLayout.json @@ -0,0 +1,23 @@ +{ + "Version": 1, + "WorkspaceRootPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\", + "Documents": [], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": -1, + "Children": [ + { + "$type": "Bookmark", + "Name": "ST:0:0:{6324226f-61b6-4f28-92ee-18d4b5fe1e48}" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..0faed34 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,7 @@ +{ + "ExpandedNodes": [ + "" + ], + "SelectedNode": "\\D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Areas/Admin/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.AuctionPlugin/Areas/Admin/Views/_ViewImports.cshtml new file mode 100644 index 0000000..270744e --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Areas/Admin/Views/_ViewImports.cshtml @@ -0,0 +1,10 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/AuctionDefaults.cs b/Nop.Plugin.Misc.AuctionPlugin/AuctionDefaults.cs new file mode 100644 index 0000000..a2edfc9 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/AuctionDefaults.cs @@ -0,0 +1,32 @@ +using Nop.Core; + +namespace Nop.Plugin.Misc.AuctionPlugin; + +/// +/// Represents plugin constants +/// +public static class AuctionDefaults +{ + /// + /// Gets the system name + /// + public static string SystemName => "Misc.AuctionPlugin"; + + /// + /// Gets the user agent used to request third-party services + /// + public static string UserAgent => $"nopCommerce-{NopVersion.CURRENT_VERSION}"; + + /// + /// Gets the configuration route name + /// + public static string ConfigurationRouteName => "Plugin.Misc.AuctionPlugin.Configure"; + + /// + /// Gets the name of autosuggest component + /// + public static string ComponentName => "auction"; + + + public static string AuctionAttributeName => "isAuctionItem"; +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/AuctionHub.cs b/Nop.Plugin.Misc.AuctionPlugin/AuctionHub.cs new file mode 100644 index 0000000..08b7eec --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/AuctionHub.cs @@ -0,0 +1,24 @@ +using System; +using Microsoft.AspNetCore.SignalR; + +using System.Threading.Tasks; + +namespace Nop.Plugin.Misc.AuctionPlugin + +{ + + public class AuctionHub : Hub + + { + + public Task Send(string announcement) + + { + + return Clients.All.SendAsync("Send", announcement); + + } + + } + +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/AuctionPlugin.cs b/Nop.Plugin.Misc.AuctionPlugin/AuctionPlugin.cs new file mode 100644 index 0000000..98cf2c0 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/AuctionPlugin.cs @@ -0,0 +1,184 @@ +using Nop.Core; +using Nop.Core.Domain.Catalog; +using Nop.Data; +using Nop.Plugin.AuctionPlugin.Components; +using Nop.Plugin.Widgets.AuctionPlugin.Components; +using Nop.Services.Catalog; +using Nop.Services.Cms; +using Nop.Services.Common; +using Nop.Services.Configuration; +using Nop.Services.Localization; +using Nop.Services.Plugins; +using Nop.Web.Framework.Infrastructure; +using Nop.Web.Framework.Menu; + +namespace Nop.Plugin.Misc.AuctionPlugin +{ + /// + /// Rename this file and change to the correct type + /// + public class AuctionPlugin : BasePlugin, IWidgetPlugin, IMiscPlugin, IAdminMenuPlugin + { + + #region Fields + + + + private readonly IWorkContext _context; + + private readonly ILocalizationService _localizationService; + + private readonly ISettingService _settingService; + + private readonly IProductAttributeService _productAttributeService; + + + + #endregion + + + #region Ctr + + + + public AuctionPlugin(IWorkContext context, ILocalizationService localizationService, ISettingService settingService, IProductAttributeService productAttributeService) + + { + + _context = context; + + _localizationService = localizationService; + + _settingService = settingService; + + _productAttributeService = productAttributeService; + + } + + #endregion + + + public override async Task InstallAsync() + { + await _settingService.SaveSettingAsync(new AuctionSettings + { + SomeId = 1, + SomeText = "Hello", + }); + + var auctionAttribute = new ProductAttribute + { + Name = AuctionDefaults.AuctionAttributeName, + Description = "wether the product is on auction" + }; + + await _productAttributeService.InsertProductAttributeAsync(auctionAttribute); + + //await _localizationService.AddOrUpdateLocaleResourceAsync(new Dictionary + //{ + // //add custom translation + //}); + await base.InstallAsync(); + } + + public override async Task UninstallAsync() + { + var result = await _productAttributeService.GetAllProductAttributesAsync(); + var thisAttribute = result.Where(x => x.Name == AuctionDefaults.AuctionAttributeName).FirstOrDefault(); + await _productAttributeService.DeleteProductAttributeAsync(thisAttribute); + await base.UninstallAsync(); + } + + + public bool HideInWidgetList => false; + + public Type GetWidgetViewComponent(string widgetZone) + { + ArgumentNullException.ThrowIfNull(widgetZone); + + if (widgetZone.Equals(PublicWidgetZones.ProductDetailsOverviewTop)) + { + return typeof(AuctionPublicViewComponent); + } + + if (widgetZone.Equals(AdminWidgetZones.OrderBillingAddressDetailsBottom) || + widgetZone.Equals(AdminWidgetZones.OrderShippingAddressDetailsBottom)) + { + return typeof(AuctionAdminViewComponent); + } + + return typeof(AuctionViewComponent); + } + + public Task> GetWidgetZonesAsync() + { + return Task.FromResult>(new List + { + PublicWidgetZones.ProductDetailsOverviewTop, + PublicWidgetZones.OrderSummaryBillingAddress, + + AdminWidgetZones.OrderBillingAddressDetailsBottom, + AdminWidgetZones.OrderShippingAddressDetailsBottom + }); + } + + public async Task ManageSiteMapAsync(SiteMapNode rootNode) + { + var liveAnnouncementPluginNode = rootNode.ChildNodes.FirstOrDefault(x => x.SystemName == "Auction"); + + if (liveAnnouncementPluginNode == null) + + { + + liveAnnouncementPluginNode = new SiteMapNode() + + { + + SystemName = "Auction", + + Title = "Live Auction", + + Visible = true, + + IconClass = "fa-gear" + + }; + + rootNode.ChildNodes.Add(liveAnnouncementPluginNode); + + } + + + + liveAnnouncementPluginNode.ChildNodes.Add(new SiteMapNode() + + { + + Title = await _localizationService.GetResourceAsync("Misc.Announcement"), + + Visible = true, + + IconClass = "fa-dot-circle-o", + + Url = "~/Admin/LiveAnnouncement/Announcement" + + }); + + + + liveAnnouncementPluginNode.ChildNodes.Add(new SiteMapNode() + + { + + Title = await _localizationService.GetResourceAsync("Misc.AnnouncementList"), + + Visible = true, + + IconClass = "fa-dot-circle-o", + + Url = "~/Admin/LiveAnnouncement/AnnouncementList" + + }); + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/AuctionSettings.cs b/Nop.Plugin.Misc.AuctionPlugin/AuctionSettings.cs new file mode 100644 index 0000000..3076537 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/AuctionSettings.cs @@ -0,0 +1,11 @@ +using Nop.Core.Configuration; + +namespace Nop.Plugin.Misc.AuctionPlugin; + +public class AuctionSettings : ISettings +{ + public bool Enabled { get; set; } + public int SomeId { get; set; } + public string SomeText { get; set; } + +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionAdminViewComponent.cs b/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionAdminViewComponent.cs new file mode 100644 index 0000000..205a3c9 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionAdminViewComponent.cs @@ -0,0 +1,73 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Plugin.Misc.AuctionPlugin; +using Nop.Services.Catalog; +using Nop.Services.Cms; +using Nop.Services.Common; +using Nop.Web.Areas.Admin.Models.Orders; +using Nop.Web.Framework.Components; +using Nop.Web.Framework.Infrastructure; +using Nop.Web.Models.Catalog; + +namespace Nop.Plugin.AuctionPlugin.Components +{ + [ViewComponent(Name = "AuctionAdmin")] + public class AuctionAdminViewComponent : NopViewComponent + { + #region Fields + + protected readonly IAddressService _addressService; + protected readonly IProductAttributeService _productAttributeService; + protected readonly IWidgetPluginManager _widgetPluginManager; + protected readonly AuctionSettings _auctionSettings; + + #endregion + + #region Ctor + + public AuctionAdminViewComponent(IAddressService addressService, + IProductAttributeService productAttributeService, + IWidgetPluginManager widgetPluginManager, + AuctionSettings auctionSettings) + { + _addressService = addressService; + _productAttributeService = productAttributeService; + _widgetPluginManager = widgetPluginManager; + _auctionSettings = auctionSettings; + } + + #endregion + + #region Methods + + /// + /// Invoke the widget view component + /// + /// Widget zone + /// Additional parameters + /// + /// A task that represents the asynchronous operation + /// The task result contains the view component result + /// + public async Task InvokeAsync(string widgetZone, object additionalData) + { + + if (!await _widgetPluginManager.IsPluginActiveAsync(AuctionDefaults.SystemName)) + return Content(string.Empty); + + if (!_auctionSettings.Enabled) + return Content(string.Empty); + + //if (additionalData is not ProductDetailsModel model) + // return Content(string.Empty); + + var productId = 0; + if (widgetZone.Equals(AdminWidgetZones.ProductDetailsBlock)) + productId = (additionalData as ProductDetailsModel).Id; + + return View("~/Plugins/Misc.AuctionPlugin/Views/AdminProductAuctionSettingsBox.cshtml", productId.ToString()); + } + + #endregion + } + +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionPublicViewComponent.cs b/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionPublicViewComponent.cs new file mode 100644 index 0000000..e4b7f36 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionPublicViewComponent.cs @@ -0,0 +1,78 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Core; +using Nop.Plugin.Misc.AuctionPlugin; +using Nop.Services.Cms; +using Nop.Services.Common; +using Nop.Web.Framework.Components; +using Nop.Web.Framework.Infrastructure; +using Nop.Web.Models.Catalog; +using Nop.Web.Models.Order; +using Nop.Web.Models.ShoppingCart; + +namespace Nop.Plugin.AuctionPlugin.Components; + +public class AuctionPublicViewComponent : NopViewComponent +{ + #region Fields + + protected readonly IAddressService _addressService; + protected readonly IGenericAttributeService _genericAttributeService; + protected readonly IWidgetPluginManager _widgetPluginManager; + protected readonly IWorkContext _workContext; + protected readonly AuctionSettings _auctionSettings; + + #endregion + + #region Ctor + + public AuctionPublicViewComponent(IAddressService addressService, + IGenericAttributeService genericAttributeService, + IWidgetPluginManager widgetPluginManager, + IWorkContext workContext, + AuctionSettings auctionSettings) + { + _addressService = addressService; + _genericAttributeService = genericAttributeService; + _widgetPluginManager = widgetPluginManager; + _workContext = workContext; + _auctionSettings = auctionSettings; + } + + #endregion + + #region Methods + + /// + /// Invoke the widget view component + /// + /// Widget zone + /// Additional parameters + /// + /// A task that represents the asynchronous operation + /// The task result contains the view component result + /// + public async Task InvokeAsync(string widgetZone, object additionalData) + { + //ensure that what3words widget is active and enabled + var customer = await _workContext.GetCurrentCustomerAsync(); + if (!await _widgetPluginManager.IsPluginActiveAsync(AuctionDefaults.SystemName, customer)) + return Content(string.Empty); + + if (!_auctionSettings.Enabled) + return Content(string.Empty); + + var productDetailsModel = additionalData as ProductDetailsModel; + + if (productDetailsModel is null) + return Content(string.Empty); + + var productId = 0; + if (widgetZone.Equals(PublicWidgetZones.ProductDetailsTop)) + productId = productDetailsModel.Id; + + + return View("~/Plugins/Widgets.What3words/Views/PublicProductBidBox.cshtml", productId.ToString()); + } + + #endregion +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionViewComponent.cs b/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionViewComponent.cs new file mode 100644 index 0000000..db365ca --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Components/AuctionViewComponent.cs @@ -0,0 +1,95 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Core; +using Nop.Plugin.Misc.AuctionPlugin; +using Nop.Plugin.Misc.AuctionPlugin.Models; +using Nop.Services.Cms; +using Nop.Services.Logging; +using Nop.Web.Framework.Components; +using Nop.Web.Framework.Infrastructure; +using Nop.Web.Models.Catalog; + +namespace Nop.Plugin.Widgets.AuctionPlugin.Components; + +public class AuctionViewComponent : NopViewComponent +{ + #region Fields + + protected readonly ILogger _logger; + protected readonly IWidgetPluginManager _widgetPluginManager; + protected readonly IWorkContext _workContext; + protected readonly AuctionSettings _auctionSettings; + + #endregion + + #region Ctor + + public AuctionViewComponent(ILogger logger, + IWidgetPluginManager widgetPluginManager, + IWorkContext workContext, + AuctionSettings auctionSettings) + { + _logger = logger; + _widgetPluginManager = widgetPluginManager; + _workContext = workContext; + _auctionSettings = auctionSettings; + } + + #endregion + + #region Methods + + /// + /// Invoke the widget view component + /// + /// Widget zone + /// Additional parameters + /// + /// A task that represents the asynchronous operation + /// The task result contains the view component result + /// + public async Task InvokeAsync(string widgetZone, object additionalData) + { + + + //ensure that a widget is active and enabled + var customer = await _workContext.GetCurrentCustomerAsync(); + + if (!await _widgetPluginManager.IsPluginActiveAsync(AuctionDefaults.SystemName, customer)) + return Content(string.Empty); + + if (!_auctionSettings.Enabled) + return Content(string.Empty); + + if (string.IsNullOrEmpty(_auctionSettings.SomeText)) + { + await _logger.ErrorAsync("Message error: message is not set", customer: customer); + return Content(string.Empty); + } + + ////display this on the checkout pages only + //if (ViewData.TemplateInfo.HtmlFieldPrefix != What3wordsDefaults.BillingAddressPrefix && + // ViewData.TemplateInfo.HtmlFieldPrefix != What3wordsDefaults.ShippingAddressPrefix) + //{ + // return Content(string.Empty); + //} + var model = new AuctionPublicInfoModel(); + + if (!widgetZone.Equals(PublicWidgetZones.ProductDetailsTop)) + { + + model.Message = $"Auction plugin is active, setting = {_auctionSettings.SomeText}, productId = {((ProductDetailsModel)additionalData).Name}"; + + } + else + { + + model.Message = _auctionSettings.SomeText; + + } + + return View("~/Plugins/Widgets.AuctionPlugin/Views/PublicInfo.cshtml", model); + + } + + #endregion +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Components/LiveAnnouncementViewComponent.cs b/Nop.Plugin.Misc.AuctionPlugin/Components/LiveAnnouncementViewComponent.cs new file mode 100644 index 0000000..6ac48c1 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Components/LiveAnnouncementViewComponent.cs @@ -0,0 +1,28 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Web.Framework.Components; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Nop.Plugin.Misc.AuctionPlugin.Components +{ + + [ViewComponent(Name = "LiveAnnouncementView")] + + public class AnnouncementViewComponent : NopViewComponent + + { + + public IViewComponentResult Invoke(string widgetZone, object additionalData) + + { + + return View("~/Plugins/Misc.AuctionPlugin/Views/LiveAnnouncementView/LiveAnnouncement.cshtml"); + + } + + } + +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/Controllers/AnnouncementController.cs b/Nop.Plugin.Misc.AuctionPlugin/Controllers/AnnouncementController.cs new file mode 100644 index 0000000..1491ae8 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Controllers/AnnouncementController.cs @@ -0,0 +1,193 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.SignalR; +using Nop.Plugin.Misc.AuctionPlugin; +using Nop.Plugin.Misc.AuctionPlugin.Domains; +using Nop.Plugin.Misc.AuctionPlugin.Models; +using Nop.Plugin.Misc.AuctionPlugin.Services; +using Nop.Web.Areas.Admin.Controllers; +//using Nop.Web.Framework.Kendoui; +using Nop.Web.Framework.Mvc; +using System; +using System.Linq; + +namespace Nop.Plugin.Misc.AuctionPlugin.Controllers +{ + + + + public class LiveAnnouncementController : BaseAdminController + + { + + #region Field + + + + private readonly IAnnouncementService _announcementService; + + private IHubContext _announcementHubContext; + + + + #endregion + + + + #region Ctr + + + + public LiveAnnouncementController( + + IAnnouncementService announcementService, + + IHubContext announcementHubContext) + + { + + _announcementService = announcementService; + + _announcementHubContext = announcementHubContext; + + } + + + + #endregion + + #region Methods + + public IActionResult Announcement() + { + + var model = new AnnouncementModel(); + + return View("~/Plugins/Misc.AuctionPlugin/Views/LiveAnnouncementView/Announcement.cshtml", model); + + } + + [HttpPost] + public IActionResult Announcement(AnnouncementModel model) + + { + + AnnouncementTable objOfAnnouncementDomain = new AnnouncementTable(); + + objOfAnnouncementDomain.Name = model.Name; + + objOfAnnouncementDomain.Body = model.Body; + + objOfAnnouncementDomain.IsActive = model.IsActive; + + objOfAnnouncementDomain.CreateDate = DateTime.UtcNow; + + _announcementService.Insert(objOfAnnouncementDomain); + + + + if (model.IsActive == true) + + { + + _announcementHubContext.Clients.All.SendAsync("send", model.Body.ToString()); + + } + + return RedirectToAction("AnnouncementList"); + + } + + [HttpPost] + public IActionResult Edit(AnnouncementTable model) + + { + + var entity = _announcementService.GetAnnouncementByIdAsync(model.Id); + + entity.Name = model.Name; + + entity.Body = model.Body; + + entity.IsActive = model.IsActive; + + entity.CreateDate = DateTime.UtcNow; + + _announcementService.Update(entity); + + + + if (model.IsActive == true) + + { + + _announcementHubContext.Clients.All.SendAsync("send", model.Body.ToString()); + + } + + return RedirectToAction("AnnouncementList"); + + } + + public async Task Edit(int Id) + + { + + var singleAnnouncement = await _announcementService.GetAnnouncementByIdAsync(Id); + + var model = new AnnouncementTable(); + + model.Id = singleAnnouncement.Id; + + model.Name = singleAnnouncement.Name; + + model.Body = singleAnnouncement.Body; + + model.IsActive = singleAnnouncement.IsActive; + + + + return View("~/Plugins/Widget.LiveAnnouncement/Views/LiveAnnouncementView/Announcement.cshtml", model); + + + + } + + public IActionResult Delete(int Id) + + { + + var singleAnnouncement = _announcementService.GetAnnouncementById(Id); + + _announcementService.Delete(singleAnnouncement); + + return new NullJsonResult(); + + } + + + + public IActionResult AnnouncementList() + + { + + var model = new AnnouncementModel(); + + return View("~/Plugins/Widget.LiveAnnouncement/Views/LiveAnnouncementView/AnnouncementList.cshtml", model); + + } + + //[HttpPost] + //public IActionResult AnnouncementList() + //{ + + + + // return View(); + + //} + + #endregion + + } + +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/Domains/AnnouncementTable.cs b/Nop.Plugin.Misc.AuctionPlugin/Domains/AnnouncementTable.cs new file mode 100644 index 0000000..6975f26 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Domains/AnnouncementTable.cs @@ -0,0 +1,20 @@ +using Nop.Core; + +namespace Nop.Plugin.Misc.AuctionPlugin.Domains +{ + + public class AnnouncementTable : BaseEntity + + { + + public string Name { get; set; } + + public string Body { get; set; } + + public bool IsActive { get; set; } + + public DateTime CreateDate { get; set; } + + } + +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Domains/BidTable.cs b/Nop.Plugin.Misc.AuctionPlugin/Domains/BidTable.cs new file mode 100644 index 0000000..055107c --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Domains/BidTable.cs @@ -0,0 +1,21 @@ +using Nop.Core; + +namespace Nop.Plugin.Misc.AuctionPlugin.Domains +{ + + public class BidTable : BaseEntity + + { + + public int CustomerId { get; set; } + + public int ProductId { get; set; } + + public bool IsWinner { get; set; } + public int Value { get; set; } + + public DateTime CreateDate { get; set; } + + } + +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/PluginNopStartup.cs b/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/PluginNopStartup.cs new file mode 100644 index 0000000..28c091e --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/PluginNopStartup.cs @@ -0,0 +1,56 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Mvc.Razor; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Nop.Core.Infrastructure; +using Nop.Plugin.Misc.AuctionPlugin.Services; + +namespace Nop.Plugin.Misc.AuctionPlugin.Infrastructure +{ + public class PluginNopStartup : INopStartup + { + + public int Order => 999; + /// + /// Add and configure any of the middleware + /// + /// Collection of service descriptors + /// Configuration of the application + public void ConfigureServices(IServiceCollection services, IConfiguration configuration) + { + services.Configure(options => + { + options.ViewLocationExpanders.Add(new ViewLocationExpander()); + }); + + services.AddSignalR(hubOptions => + + { + + hubOptions.KeepAliveInterval = TimeSpan.FromMinutes(1); + + }); + + //register services and interfaces + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + } + + /// + /// Configure the using of added middleware + /// + /// Builder for configuring an application's request pipeline + public void Configure(IApplicationBuilder application) + { + + application.UseEndpoints(endpoints => + { + endpoints.MapHub("/announcement"); + }); + application.UseCors(options => { + options.AllowAnyMethod().AllowAnyHeader().AllowCredentials().SetIsOriginAllowed((hosts) => true); + }); + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/RouteProvider.cs b/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/RouteProvider.cs new file mode 100644 index 0000000..d81c353 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/RouteProvider.cs @@ -0,0 +1,25 @@ +using Microsoft.AspNetCore.Routing; +using Nop.Web.Framework.Mvc.Routing; + +namespace Nop.Plugin.Misc.AuctionPlugin.Infrastructure +{ + /// + /// Represents plugin route provider + /// + public class RouteProvider : IRouteProvider + { + /// + /// Register routes + /// + /// Route builder + public void RegisterRoutes(IEndpointRouteBuilder endpointRouteBuilder) + { + + } + + /// + /// Gets a priority of route provider + /// + public int Priority => 0; + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/ViewLocationExpander.cs b/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/ViewLocationExpander.cs new file mode 100644 index 0000000..7b0c085 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Infrastructure/ViewLocationExpander.cs @@ -0,0 +1,39 @@ +using Microsoft.AspNetCore.Mvc.Razor; + +namespace Nop.Plugin.Misc.AuctionPlugin.Infrastructure +{ + public class ViewLocationExpander : IViewLocationExpander + { + /// + /// Invoked by a to determine the values that would be consumed by this instance + /// of . The calculated values are used to determine if the view location + /// has changed since the last time it was located. + /// + /// The for the current view location + /// expansion operation. + public void PopulateValues(ViewLocationExpanderContext context) + { + } + + /// + /// Invoked by a to determine potential locations for a view. + /// + /// The for the current view location + /// expansion operation. + /// The sequence of view locations to expand. + /// A list of expanded view locations. + public IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable viewLocations) + { + if (context.AreaName == "Admin") + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.AuctionPlugin/Areas/Admin/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + else + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.AuctionPlugin/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + + return viewLocations; + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Mapping/AnnouncementBuilder.cs b/Nop.Plugin.Misc.AuctionPlugin/Mapping/AnnouncementBuilder.cs new file mode 100644 index 0000000..403a85c --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Mapping/AnnouncementBuilder.cs @@ -0,0 +1,36 @@ +using FluentMigrator.Builders.Create.Table; +using Nop.Data.Mapping.Builders; +using Nop.Plugin.Misc.AuctionPlugin.Domains; + +namespace Nop.Plugin.Misc.AuctionPlugin.Mapping; + +/// +/// Represents a pickup point entity builder +/// +public class AnnouncementBuilder : NopEntityBuilder +{ + #region Methods + + /// + /// Apply entity configuration + /// + /// Create table expression builder + public override void MapEntity(CreateTableExpressionBuilder table) + { + table + .WithColumn(nameof(AnnouncementTable.Id)) + .AsInt16() + .NotNullable() + .WithColumn(nameof(AnnouncementTable.Name)) + .AsString(250) + .NotNullable() + .WithColumn(nameof(AnnouncementTable.IsActive)) + .AsBoolean() + .NotNullable().WithDefault(0) + .WithColumn(nameof(AnnouncementTable.Body)) + .AsString(500) + .NotNullable(); + } + + #endregion +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/Mapping/Builders/PluginBuilder.cs b/Nop.Plugin.Misc.AuctionPlugin/Mapping/Builders/PluginBuilder.cs new file mode 100644 index 0000000..046a24a --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Mapping/Builders/PluginBuilder.cs @@ -0,0 +1,21 @@ +using FluentMigrator.Builders.Create.Table; +using Nop.Data.Mapping.Builders; +using Nop.Plugin.Misc.AuctionPlugin.Domains; + +namespace Nop.Plugin.Misc.AuctionPlugin.Mapping.Builders +{ + public class PluginBuilder : NopEntityBuilder + { + #region Methods + + /// + /// Apply entity configuration + /// + /// Create table expression builder + public override void MapEntity(CreateTableExpressionBuilder table) + { + } + + #endregion + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Mapping/NameCompatibility.cs b/Nop.Plugin.Misc.AuctionPlugin/Mapping/NameCompatibility.cs new file mode 100644 index 0000000..2bb7cdd --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Mapping/NameCompatibility.cs @@ -0,0 +1,17 @@ +using Nop.Data.Mapping; + +namespace Nop.Plugin.Misc.AuctionPlugin.Mapping +{ + public partial class NameCompatibility : INameCompatibility + { + /// + /// Gets table name for mapping with the type + /// + public Dictionary TableNames => new(); + + /// + /// Gets column name for mapping with the entity's property and type + /// + public Dictionary<(Type, string), string> ColumnName => new(); + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Migrations/SchemaMigration.cs b/Nop.Plugin.Misc.AuctionPlugin/Migrations/SchemaMigration.cs new file mode 100644 index 0000000..074d78c --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Migrations/SchemaMigration.cs @@ -0,0 +1,20 @@ +using FluentMigrator; +using Nop.Data.Extensions; +using Nop.Data.Migrations; +using Nop.Plugin.Misc.AuctionPlugin.Domains; + +namespace Nop.Plugin.Misc.AuctionPlugin.Migrations +{ + [NopMigration("11/9/2024 9:01:27 PM", "Nop.Plugin.Misc.AuctionPlugin schema", MigrationProcessType.Installation)] + public class SchemaMigration : AutoReversingMigration + { + /// + /// Collect the UP migration expressions + /// + public override void Up() + { + Create.TableFor(); + Create.TableFor(); + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Models/AnnouncementViewModel.cs b/Nop.Plugin.Misc.AuctionPlugin/Models/AnnouncementViewModel.cs new file mode 100644 index 0000000..8d66fdd --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Models/AnnouncementViewModel.cs @@ -0,0 +1,18 @@ +using Nop.Web.Framework.Models; +using Nop.Web.Framework.Mvc.ModelBinding; + +namespace Nop.Plugin.Misc.AuctionPlugin.Models +{ + public record AnnouncementModel : BaseNopModel + { + [NopResourceDisplayName("Name")] + public string Name { get; set; } + + [NopResourceDisplayName("Body")] + public string Body { get; set; } + + public bool IsActive { get; set; } + + } + +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/Models/AuctionPublicInfoModel.cs b/Nop.Plugin.Misc.AuctionPlugin/Models/AuctionPublicInfoModel.cs new file mode 100644 index 0000000..a5d5eb0 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Models/AuctionPublicInfoModel.cs @@ -0,0 +1,12 @@ +using Nop.Web.Framework.Models; +using Nop.Web.Framework.Mvc.ModelBinding; + +namespace Nop.Plugin.Misc.AuctionPlugin.Models +{ + public record AuctionPublicInfoModel : BaseNopModel + { + [NopResourceDisplayName("Message")] + public string Message { get; set; } + + } +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/Nop.Plugin.Misc.AuctionPlugin.csproj b/Nop.Plugin.Misc.AuctionPlugin/Nop.Plugin.Misc.AuctionPlugin.csproj new file mode 100644 index 0000000..a908b9a --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Nop.Plugin.Misc.AuctionPlugin.csproj @@ -0,0 +1,84 @@ + + + + net8.0 + ..\..\..\..\NopCommerce\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.AuctionPlugin + $(OutputPath) + + false + enable + + + + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Nop.Plugin.Misc.AuctionPlugin/Services/AnnouncementService.cs b/Nop.Plugin.Misc.AuctionPlugin/Services/AnnouncementService.cs new file mode 100644 index 0000000..5cf25a6 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Services/AnnouncementService.cs @@ -0,0 +1,118 @@ +using DocumentFormat.OpenXml.Spreadsheet; +using Nop.Core; +using Nop.Data; +using Nop.Plugin.Misc.AuctionPlugin.Domains; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Nop.Plugin.Misc.AuctionPlugin.Services +{ + public class AnnouncementService : IAnnouncementService + { + #region Field + + private readonly IRepository _announcementRepository; + + #endregion + + #region Ctr + + public AnnouncementService(IRepository announcementRepository) + { + + _announcementRepository = announcementRepository; + + } + + #endregion + + #region Methods + + public async Task DeleteAsync(AnnouncementTable announcement) + { + + await _announcementRepository.DeleteAsync(announcement); + + } + + + + public async Task UpdateAsync(AnnouncementTable announcement) + + { + + if (announcement == null) + + throw new ArgumentNullException("customer"); + + + + await _announcementRepository.UpdateAsync(announcement); + + return true; + + } + + + public async Task InsertAsync(AnnouncementTable announcement) + + { + + await _announcementRepository.InsertAsync(announcement); + + } + + + public async Task> GetAnnouncementsAsync(int pageIndex = 0, int pageSize = int.MaxValue) + + { + + var query = from c in _announcementRepository.Table + + select c; + + var query2 = query.OrderBy(b => b.IsActive).ToList(); + + var liveAnnouncementDomain = new PagedList(query2, pageIndex, pageSize); + + return liveAnnouncementDomain; + + } + + public async Task GetAnnouncementDesignFirstAsync() + + { + var result = await _announcementRepository.GetAllAsync(query => + { + query = query.Where(record => record.IsActive == true); + return query; + }); + + //var query = from c in _announcementRepository.Table + + // where c.IsActive == true + + // orderby c.CreateDate descending + + // select c; + + var LatestAnnouncement = result.ToList().FirstOrDefault(); + + return LatestAnnouncement; + + } + + public async Task GetAnnouncementByIdAsync(int Id) + + { + + return await _announcementRepository.GetByIdAsync(Id); + + } + + #endregion + } +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/Services/BidService.cs b/Nop.Plugin.Misc.AuctionPlugin/Services/BidService.cs new file mode 100644 index 0000000..a42508c --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Services/BidService.cs @@ -0,0 +1,109 @@ +using Nop.Core; +using Nop.Core.Caching; +using Nop.Data; +using Nop.Plugin.Misc.AuctionPlugin.Domains; + +namespace Nop.Plugin.Misc.AuctionPlugin.Services; + +/// +/// Store pickup point service +/// +public class BidService : IBidService +{ + #region Constants + + /// + /// Cache key for pickup points + /// + /// + /// {0} : current store ID + /// + protected readonly CacheKey _auctionAllKey = new("Nop.auction.all-{0}", AUCTION_PATTERN_KEY); + protected const string AUCTION_PATTERN_KEY = "Nop.auction."; + + #endregion + + #region Fields + + protected readonly IRepository _customerBidRepository; + protected readonly IShortTermCacheManager _shortTermCacheManager; + protected readonly IStaticCacheManager _staticCacheManager; + + #endregion + + #region Ctor + + /// + /// Ctor + /// + /// Store pickup point repository + /// Short term cache manager + /// Cache manager + public BidService(IRepository customerBidRepository, + IShortTermCacheManager shortTermCacheManager, + IStaticCacheManager staticCacheManager) + { + _customerBidRepository = customerBidRepository; + _shortTermCacheManager = shortTermCacheManager; + _staticCacheManager = staticCacheManager; + } + + #endregion + + #region Methods + + /// + /// Gets all bids + /// + /// The store identifier; pass 0 to load all records + /// Page index + /// Page size + /// + /// A task that represents the asynchronous operation + /// The task result contains the bids + /// + public virtual async Task> GetAllBidsAsync(int customerId = 0, int pageIndex = 0, int pageSize = int.MaxValue) + { + var rez = new List(); + //var rez = await _shortTermCacheManager.GetAsync(async () => await _customerBidRepository.GetAllAsync(query => + //{ + // if (customerId > 0) + // query = query.Where(bid => bid.CustomerId == customerId || bid.CustomerId == 0); + // query = query.OrderBy(bid => bid.CreateDate).ThenBy(bid => bid.ProductId); + + // return query; + //}), _pickupPointAllKey, customerId); + + return new PagedList(rez, pageIndex, pageSize); + } + + public virtual async Task GetBidByIdAsync(int bidId) + { + return await _customerBidRepository.GetByIdAsync(bidId); + } + + public virtual async Task InsertBidAsync(BidTable bid) + { + await _customerBidRepository.InsertAsync(bid, false); + await _staticCacheManager.RemoveByPrefixAsync(AUCTION_PATTERN_KEY); + } + + public virtual async Task UpdateBidAsync(BidTable bid) + { + await _customerBidRepository.UpdateAsync(bid, false); + await _staticCacheManager.RemoveByPrefixAsync(AUCTION_PATTERN_KEY); + } + + /// + /// Deletes a pickup point + /// + /// Pickup point + /// A task that represents the asynchronous operation + public virtual async Task DeleteBidAsync(BidTable pickupPoint) + { + await _customerBidRepository.DeleteAsync(pickupPoint, false); + await _staticCacheManager.RemoveByPrefixAsync(AUCTION_PATTERN_KEY); + } + + #endregion +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Services/EventConsumer.cs b/Nop.Plugin.Misc.AuctionPlugin/Services/EventConsumer.cs new file mode 100644 index 0000000..5a22bdc --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Services/EventConsumer.cs @@ -0,0 +1,145 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Routing; +using Nop.Core.Domain.Catalog; +using Nop.Core.Domain.Customers; +using Nop.Core.Domain.Messages; +using Nop.Core.Domain.Orders; +using Nop.Core.Events; +using Nop.Services.Events; +using Nop.Services.Messages; +using Nop.Web.Framework; +using Nop.Web.Framework.Events; +using Nop.Web.Framework.Models; +using Nop.Web.Models.Catalog; + +namespace Nop.Plugin.Misc.AuctionPlugin; + +/// +/// Represents plugin event consumer +/// +public class EventConsumer : + IConsumer> + //IConsumer, + //IConsumer>, + //IConsumer>, + //IConsumer>, + //IConsumer, + //IConsumer, + //IConsumer +{ + #region Fields + + //protected readonly FacebookPixelService _facebookPixelService; + protected readonly IHttpContextAccessor _httpContextAccessor; + + #endregion + + #region Ctor + + //public EventConsumer(FacebookPixelService facebookPixelService, + public EventConsumer(IHttpContextAccessor httpContextAccessor) + { + //_facebookPixelService = facebookPixelService; + _httpContextAccessor = httpContextAccessor; + } + + #endregion + + #region Methods + + /// + /// Handle shopping cart item inserted event + /// + /// Event message + /// A task that represents the asynchronous operation + //public async Task HandleEventAsync(EntityInsertedEvent eventMessage) + //{ + // if (eventMessage?.Entity != null) + // { + // //notify clients through SignalR + // } + + //} + + /// + /// Handle order placed event + /// + /// Event message + /// A task that represents the asynchronous operation + //public async Task HandleEventAsync(OrderPlacedEvent eventMessage) + //{ + // if (eventMessage?.Order != null) + // { + // // + // } + //} + + /// + /// Handle product details model prepared event + /// + /// Event message + /// A task that represents the asynchronous operation + //public async Task HandleEventAsync(ModelPreparedEvent eventMessage) + //{ + // if (eventMessage?.Model is ProductDetailsModel productDetailsModel) + // { + // // + // } + + //} + + /// + /// Handle page rendering event + /// + /// Event message + /// A task that represents the asynchronous operation + //public async Task HandleEventAsync(PageRenderingEvent eventMessage) + //{ + // var routeName = eventMessage.GetRouteName() ?? string.Empty; + // if (routeName == FacebookPixelDefaults.CheckoutRouteName || routeName == FacebookPixelDefaults.CheckoutOnePageRouteName) + // await _facebookPixelService.SendInitiateCheckoutEventAsync(); + + // if (_httpContextAccessor.HttpContext.GetRouteValue("area") is not string area || area != AreaNames.ADMIN) + // await _facebookPixelService.SendPageViewEventAsync(); + //} + + /// + /// Handle product search event + /// + /// Event message + /// A task that represents the asynchronous operation + //public async Task HandleEventAsync(ProductSearchEvent eventMessage) + //{ + // if (eventMessage?.SearchTerm != null) + // await _facebookPixelService.SendSearchEventAsync(eventMessage.SearchTerm); + //} + + /// + /// Handle message token added event + /// + /// Event message + /// A task that represents the asynchronous operation + //public async Task HandleEventAsync(MessageTokensAddedEvent eventMessage) + //{ + // if (eventMessage?.Message?.Name == MessageTemplateSystemNames.CONTACT_US_MESSAGE) + // await _facebookPixelService.SendContactEventAsync(); + //} + + /// + /// Handle customer registered event + /// + /// Event message + /// A task that represents the asynchronous operation + //public async Task HandleEventAsync(CustomerRegisteredEvent eventMessage) + //{ + // if (eventMessage?.Customer != null) + // await _facebookPixelService.SendCompleteRegistrationEventAsync(); + //} + + public async Task HandleEventAsync(EntityUpdatedEvent eventMessage) + { + //send notification on SignalR + } + + #endregion +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Services/IAnnouncementService.cs b/Nop.Plugin.Misc.AuctionPlugin/Services/IAnnouncementService.cs new file mode 100644 index 0000000..0c59fdf --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Services/IAnnouncementService.cs @@ -0,0 +1,30 @@ +using System; + +using Nop.Core; + +using Nop.Plugin.Misc.AuctionPlugin.Domains; + +using System.Collections.Generic; + +namespace Nop.Plugin.Misc.AuctionPlugin.Services + +{ + public interface IAnnouncementService + + { + + public Task DeleteAsync(AnnouncementTable announcement); + + public Task InsertAsync(AnnouncementTable announcement); + + public Task UpdateAsync(AnnouncementTable announcement); + + public Task> GetAnnouncementsAsync(int pageIndex = 0, int pageSize = int.MaxValue); + + public Task GetAnnouncementDesignFirstAsync(); + + public Task GetAnnouncementByIdAsync(int Id); + + } + +} diff --git a/Nop.Plugin.Misc.AuctionPlugin/Services/IBidService.cs b/Nop.Plugin.Misc.AuctionPlugin/Services/IBidService.cs new file mode 100644 index 0000000..507b4bd --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Services/IBidService.cs @@ -0,0 +1,34 @@ +using Nop.Core; +using Nop.Plugin.Misc.AuctionPlugin.Domains; + +namespace Nop.Plugin.Misc.AuctionPlugin.Services; + +/// +/// Store pickup point service interface +/// +public interface IBidService +{ + /// + /// Gets all bids + /// + /// The store identifier; pass 0 to load all records + /// Page index + /// Page size + /// + /// A task that represents the asynchronous operation + /// The task result contains the bids + /// + Task> GetAllBidsAsync(int customerId = 0, int pageIndex = 0, int pageSize = int.MaxValue); + + + Task GetBidByIdAsync(int bidId); + + + Task InsertBidAsync(BidTable bidTable); + + + Task UpdateBidAsync(BidTable bid); + + + Task DeleteBidAsync(BidTable pickupPoint); +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Views/AdminProductAuctionSettingsBox.cshtml b/Nop.Plugin.Misc.AuctionPlugin/Views/AdminProductAuctionSettingsBox.cshtml new file mode 100644 index 0000000..8f810cc --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Views/AdminProductAuctionSettingsBox.cshtml @@ -0,0 +1,10 @@ +@model string + + + + @T("Plugins.Widgets.What3words.Address.Field.Label") + + + @Model + + diff --git a/Nop.Plugin.Misc.AuctionPlugin/Views/AnnouncementView.cshtml b/Nop.Plugin.Misc.AuctionPlugin/Views/AnnouncementView.cshtml new file mode 100644 index 0000000..1b3e8ec --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Views/AnnouncementView.cshtml @@ -0,0 +1,140 @@ +@model Nop.Plugin.Misc.AuctionPlugin.Models.AnnouncementModel +@using Nop.Core.Infrastructure +@using Nop.Web.Framework + +@{ + + var defaultGridPageSize = EngineContext.Current.Resolve().DefaultGridPageSize; + + var gridPageSizes = EngineContext.Current.Resolve().GridPageSizes; + + Layout = "_AdminLayout"; + + //page title + + ViewBag.Title = T("Admin.Plugins.HomePageProduct").Text; + +} + + + +@using (Html.BeginForm()) +{ + +
+ +

+ + Create Announcement + +

+ +
+ + + + LiveAnnouncement + +
+ +
+ + + +
+ +
+ +
+ + + +
+ +
+ +
+ +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Views/LiveAnnouncementView.cshtml b/Nop.Plugin.Misc.AuctionPlugin/Views/LiveAnnouncementView.cshtml new file mode 100644 index 0000000..1c92964 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Views/LiveAnnouncementView.cshtml @@ -0,0 +1,26 @@ +@using Nop.Core; + +@using Nop.Core.Domain.Seo; + +@using Nop.Core.Infrastructure; + +@using Nop.Web.Framework; + +@using Nop.Web.Framework.UI; + +@using Nop.Services.Configuration; + +@{ + + ISettingService _settingContext = EngineContext.Current.Resolve(); + IStoreContext _storeContext = EngineContext.Current.Resolve(); + + Html.AddScriptParts("~/Plugins/Widget.LiveAnnouncement/Scripts/signalr.js"); + Html.AddScriptParts("~/Plugins/Widget.LiveAnnouncement/Scripts/LiveAnnouncement.js"); + Html.AddCssFileParts("~/Plugins/Widget.LiveAnnouncement/Content/toastr.min.css"); + Html.AddScriptParts("~/Plugins/Widget.LiveAnnouncement/Scripts/toastr.js"); + +} + +
+
\ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/Views/PublicInfo.cshtml b/Nop.Plugin.Misc.AuctionPlugin/Views/PublicInfo.cshtml new file mode 100644 index 0000000..c74648c --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Views/PublicInfo.cshtml @@ -0,0 +1,8 @@ +@model AuctionPublicInfoModel + +
+ +
+

@Model.Message

+
+
diff --git a/Nop.Plugin.Misc.AuctionPlugin/Views/PublicProductBidBox.cshtml b/Nop.Plugin.Misc.AuctionPlugin/Views/PublicProductBidBox.cshtml new file mode 100644 index 0000000..6b71c09 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Views/PublicProductBidBox.cshtml @@ -0,0 +1,11 @@ +@model string + +
  • + + @T("Plugins.Misc.AuctionPlugin.BidBox.Field.Label"): + + + @(Model) + +
  • + diff --git a/Nop.Plugin.Misc.AuctionPlugin/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.AuctionPlugin/Views/_ViewImports.cshtml new file mode 100644 index 0000000..b5b6f34 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/Views/_ViewImports.cshtml @@ -0,0 +1,28 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events +@using Nop.Web.Framework.Infrastructure +@using Nop.Core +@using Nop.Core.Infrastructure +@using Nop.Core.Domain.Catalog +@using Nop.Web.Areas.Admin.Models.Catalog +@using Nop.Web.Extensions +@using Nop.Web.Framework +@using Nop.Web.Framework.Extensions +@using Nop.Web.Framework.Infrastructure +@using Nop.Web.Framework.Models +@using Nop.Web.Framework.Models.DataTables +@using Nop.Web.Framework.Security.Captcha +@using Nop.Web.Framework.Security.Honeypot +@using Nop.Web.Framework.Themes +@using Nop.Web.Framework.UI +@using Nop.Plugin.Misc.AuctionPlugin +@using Nop.Plugin.Misc.AuctionPlugin.Models +@using Nop.Plugin.Misc.AuctionPlugin.Services diff --git a/Nop.Plugin.Misc.AuctionPlugin/logo.jpg b/Nop.Plugin.Misc.AuctionPlugin/logo.jpg new file mode 100644 index 0000000..cae3ce3 Binary files /dev/null and b/Nop.Plugin.Misc.AuctionPlugin/logo.jpg differ diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.AssemblyInfo.cs b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.AssemblyInfo.cs new file mode 100644 index 0000000..7ca2625 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Nop.Plugin.Misc.AuctionPlugin")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+86fce3dae18cabbfc97ec2cfaec3be2f0defd348")] +[assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Misc.AuctionPlugin")] +[assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Misc.AuctionPlugin")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.AssemblyInfoInputs.cache b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.AssemblyInfoInputs.cache new file mode 100644 index 0000000..70537cc --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +69ecc1157374a7d4b094dde5317a0b54a4ab6ff7fd8bf5ae311c9d8a3b0749bf diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.GeneratedMSBuildEditorConfig.editorconfig b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7d144cb --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Nop.Plugin.Misc.AuctionPlugin +build_property.ProjectDir = D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.AuctionPlugin\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.GlobalUsings.g.cs b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.assets.cache b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.assets.cache new file mode 100644 index 0000000..585ac5d Binary files /dev/null and b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.assets.cache differ diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.AssemblyReference.cache b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.AssemblyReference.cache new file mode 100644 index 0000000..e519cce Binary files /dev/null and b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.AssemblyReference.cache differ diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.CoreCompileInputs.cache b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..277e2cf --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9eb1263c5c3b3b2f73051a8d83d4f18829c1b67c27080c96307900127e11aea8 diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.FileListAbsolute.txt b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..712d45b --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.AuctionPlugin.csproj.FileListAbsolute.txt @@ -0,0 +1,5 @@ +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.AuctionPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.AuctionPlugin.csproj.AssemblyReference.cache +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.AuctionPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.AuctionPlugin.GeneratedMSBuildEditorConfig.editorconfig +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.AuctionPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.AuctionPlugin.AssemblyInfoInputs.cache +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.AuctionPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.AuctionPlugin.AssemblyInfo.cs +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.AuctionPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.AuctionPlugin.csproj.CoreCompileInputs.cache diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/project.razor.vs.bin b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/project.razor.vs.bin new file mode 100644 index 0000000..df8a813 Binary files /dev/null and b/Nop.Plugin.Misc.AuctionPlugin/obj/Debug/net8.0/project.razor.vs.bin differ diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.dgspec.json b/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8e9558a --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.dgspec.json @@ -0,0 +1,617 @@ +{ + "format": 1, + "restore": { + "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\Nop.Plugin.Misc.AuctionPlugin.csproj": {} + }, + "projects": { + "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\Nop.Plugin.Misc.AuctionPlugin.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\Nop.Plugin.Misc.AuctionPlugin.csproj", + "projectName": "Nop.Plugin.Misc.AuctionPlugin", + "projectPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\Nop.Plugin.Misc.AuctionPlugin.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj", + "projectName": "Nop.Core", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs": { + "target": "Package", + "version": "[1.3.4, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys": { + "target": "Package", + "version": "[1.2.4, )" + }, + "Azure.Identity": { + "target": "Package", + "version": "[1.13.0, )" + }, + "Humanizer": { + "target": "Package", + "version": "[2.14.1, )" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.Extensions.Caching.SqlServer": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Nito.AsyncEx.Coordination": { + "target": "Package", + "version": "[5.1.2, )" + }, + "System.IO.FileSystem.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + }, + "System.Linq.Async": { + "target": "Package", + "version": "[6.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj", + "projectName": "Nop.Data", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentMigrator": { + "target": "Package", + "version": "[5.2.0, )" + }, + "FluentMigrator.Runner": { + "target": "Package", + "version": "[5.1.0, )" + }, + "Microsoft.Data.SqlClient": { + "target": "Package", + "version": "[5.2.0, )" + }, + "MySqlConnector": { + "target": "Package", + "version": "[2.3.7, )" + }, + "Npgsql": { + "target": "Package", + "version": "[8.0.5, )" + }, + "System.Configuration.ConfigurationManager": { + "target": "Package", + "version": "[8.0.1, )" + }, + "System.Net.NameResolution": { + "target": "Package", + "version": "[4.3.0, )" + }, + "linq2db": { + "target": "Package", + "version": "[5.4.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj", + "projectName": "Nop.Services", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Azure.Storage.Blobs": { + "target": "Package", + "version": "[12.22.2, )" + }, + "ClosedXML": { + "target": "Package", + "version": "[0.104.1, )" + }, + "Google.Apis.Auth": { + "target": "Package", + "version": "[1.68.0, )" + }, + "HarfBuzzSharp.NativeAssets.Linux": { + "target": "Package", + "version": "[7.3.0.2, )" + }, + "MailKit": { + "target": "Package", + "version": "[4.8.0, )" + }, + "MaxMind.GeoIP2": { + "target": "Package", + "version": "[5.2.0, )" + }, + "Microsoft.Identity.Client": { + "target": "Package", + "version": "[4.66.1, )" + }, + "QuestPDF": { + "target": "Package", + "version": "[2024.10.1, )" + }, + "SkiaSharp": { + "target": "Package", + "version": "[2.88.8, )" + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies": { + "target": "Package", + "version": "[2.88.8, )" + }, + "Svg.Skia": { + "target": "Package", + "version": "[2.0.0.1, )" + }, + "System.Linq.Dynamic.Core": { + "target": "Package", + "version": "[1.4.6, )" + }, + "System.ServiceModel.Http": { + "target": "Package", + "version": "[8.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "projectName": "Nop.Web.Framework", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation.AspNetCore": { + "target": "Package", + "version": "[11.3.0, )" + }, + "LigerShark.WebOptimizer.Core": { + "target": "Package", + "version": "[3.0.426, )" + }, + "WebMarkupMin.AspNetCore8": { + "target": "Package", + "version": "[2.17.0, )" + }, + "WebMarkupMin.NUglify": { + "target": "Package", + "version": "[2.17.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj", + "projectName": "Nop.Web", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.g.props b/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.g.props new file mode 100644 index 0000000..654d59e --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Ádám\.nuget\packages\;C:\Program Files\DevExpress 24.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.1 + + + + + + + + C:\Users\Ádám\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.g.targets b/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.g.targets new file mode 100644 index 0000000..dfc75fc --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/Nop.Plugin.Misc.AuctionPlugin.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/project.assets.json b/Nop.Plugin.Misc.AuctionPlugin/obj/project.assets.json new file mode 100644 index 0000000..6a04125 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/project.assets.json @@ -0,0 +1,10145 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "AdvancedStringBuilder/0.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + } + }, + "Autofac/8.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "AutoMapper/13.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.44.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "System.ClientModel": "1.1.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "6.0.0", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Azure.Storage.Blobs": "12.16.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.42.0", + "Azure.Security.KeyVault.Keys": "4.6.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.13.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.44.1", + "Microsoft.Identity.Client": "4.65.0", + "Microsoft.Identity.Client.Extensions.Msal": "4.65.0", + "System.Memory": "4.5.5", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Azure.Security.KeyVault.Keys/4.6.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.37.0", + "System.Memory": "4.5.4", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Blobs/12.22.2": { + "type": "package", + "dependencies": { + "Azure.Storage.Common": "12.21.1", + "System.Text.Json": "6.0.10" + }, + "compile": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Common/12.21.1": { + "type": "package", + "dependencies": { + "Azure.Core": "1.44.1", + "System.IO.Hashing": "6.0.0" + }, + "compile": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + } + }, + "BouncyCastle.Cryptography/2.4.0": { + "type": "package", + "compile": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + } + }, + "ClosedXML/0.104.1": { + "type": "package", + "dependencies": { + "ClosedXML.Parser": "[1.2.0, 2.0.0)", + "DocumentFormat.OpenXml": "[3.0.1, 4.0.0)", + "ExcelNumberFormat": "1.1.0", + "RBush": "3.2.0", + "SixLabors.Fonts": "1.0.0", + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + } + }, + "ClosedXML.Parser/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml/3.0.1": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.0.1" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net7.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net7.0/ExCSS.dll": {} + } + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "type": "package", + "compile": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + }, + "runtime": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + } + }, + "FluentMigrator/5.2.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.2.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Abstractions/5.2.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Annotations": "5.0.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll": { + "locale": "de-DE" + } + } + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Runner.Core": "5.1.0", + "FluentMigrator.Runner.Db2": "5.1.0", + "FluentMigrator.Runner.Firebird": "5.1.0", + "FluentMigrator.Runner.Hana": "5.1.0", + "FluentMigrator.Runner.MySql": "5.1.0", + "FluentMigrator.Runner.Oracle": "5.1.0", + "FluentMigrator.Runner.Postgres": "5.1.0", + "FluentMigrator.Runner.Redshift": "5.1.0", + "FluentMigrator.Runner.SQLite": "5.1.0", + "FluentMigrator.Runner.Snowflake": "5.1.0", + "FluentMigrator.Runner.SqlServer": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Core/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Abstractions": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "type": "package", + "dependencies": { + "FirebirdSql.Data.FirebirdClient": "10.0.0", + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.MySql": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Oracle": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Postgres": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Extensions.Snowflake": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.SqlServer": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Data.SqlClient": "5.1.4" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentValidation/11.5.1": { + "type": "package", + "compile": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.AspNetCore/11.3.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "FluentValidation.DependencyInjectionExtensions": "11.5.1" + }, + "compile": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "Google.Apis/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis.Core": "1.68.0" + }, + "compile": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Auth/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis": "1.68.0", + "Google.Apis.Core": "1.68.0", + "System.Management": "7.0.2" + }, + "compile": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Core/1.68.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2" + }, + "compile": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Humanizer/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "LigerShark.WebOptimizer.Core/3.0.426": { + "type": "package", + "dependencies": { + "NUglify": "1.21.9" + }, + "compile": { + "lib/net8.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "build/_._": {} + } + }, + "linq2db/5.4.1": { + "type": "package", + "compile": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + } + }, + "MailKit/4.8.0": { + "type": "package", + "dependencies": { + "MimeKit": "4.8.0", + "System.Formats.Asn1": "8.0.1" + }, + "compile": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MaxMind.Db/4.1.0": { + "type": "package", + "compile": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + } + }, + "MaxMind.GeoIP2/5.2.0": { + "type": "package", + "dependencies": { + "MaxMind.Db": "4.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.32", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32", + "Microsoft.Extensions.Options": "3.1.32", + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Cryptography.Xml": "4.7.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.JsonPatch/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "8.0.10", + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.0]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.0.0", + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.0": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.10": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.2", + "Microsoft.Data.SqlClient": "4.0.5", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "StackExchange.Redis": "2.7.27" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.66.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.65.0": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.65.0", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MimeKit/4.8.0": { + "type": "package", + "dependencies": { + "BouncyCastle.Cryptography": "2.4.0", + "System.Formats.Asn1": "8.0.1", + "System.Security.Cryptography.Pkcs": "8.0.0" + }, + "compile": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MySqlConnector/2.3.7": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.1" + }, + "compile": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + } + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "type": "package", + "dependencies": { + "Nito.AsyncEx.Tasks": "5.1.2", + "Nito.Collections.Deque": "1.1.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + } + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "type": "package", + "dependencies": { + "Nito.Disposables": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + } + }, + "Nito.Collections.Deque/1.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + } + }, + "Nito.Disposables/2.2.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.7.1" + }, + "compile": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "NUglify/1.21.9": { + "type": "package", + "compile": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.1" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "QuestPDF/2024.10.1": { + "type": "package", + "compile": { + "lib/net8.0/QuestPDF.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/QuestPDF.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/QuestPDF.targets": {} + }, + "runtimeTargets": { + "runtimes/linux-arm64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-arm64/native/libQuestPdfSkia.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libQuestPdfSkia.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-x64/native/QuestPdfSkia.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/QuestPdfSkia.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "RBush/3.2.0": { + "type": "package", + "compile": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "ShimSkiaSharp/2.0.0.1": { + "type": "package", + "compile": { + "lib/net8.0/ShimSkiaSharp.dll": {} + }, + "runtime": { + "lib/net8.0/ShimSkiaSharp.dll": {} + } + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + } + }, + "SkiaSharp/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.8", + "SkiaSharp.NativeAssets.macOS": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2", + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "StackExchange.Redis/2.7.27": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Pipelines.Sockets.Unofficial": "2.2.8" + }, + "compile": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Svg.Custom/2.0.0.1": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3" + }, + "compile": { + "lib/net8.0/Svg.Custom.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Custom.dll": {} + } + }, + "Svg.Model/2.0.0.1": { + "type": "package", + "dependencies": { + "ShimSkiaSharp": "2.0.0.1", + "Svg.Custom": "2.0.0.1" + }, + "compile": { + "lib/net8.0/Svg.Model.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Model.dll": {} + } + }, + "Svg.Skia/2.0.0.1": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8", + "SkiaSharp.HarfBuzz": "2.88.8", + "Svg.Custom": "2.0.0.1", + "Svg.Model": "2.0.0.1" + }, + "compile": { + "lib/net8.0/Svg.Skia.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Skia.dll": {} + } + }, + "System.ClientModel/1.1.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "6.0.9" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.CodeDom/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.1", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Formats.Asn1/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Hashing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Packaging/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.IO.Pipelines/5.0.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Async/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Dynamic.Core/1.4.6": { + "type": "package", + "compile": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.Management/7.0.2": { + "type": "package", + "dependencies": { + "System.CodeDom": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Http/8.0.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Http.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Http.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Http.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.ServiceModel.Primitives/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ObjectPool": "6.0.16", + "System.Security.Cryptography.Xml": "6.0.1" + }, + "compile": { + "ref/net8.0/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.10": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/System.Text.Json.targets": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "WebMarkupMin.AspNet.Common/2.17.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.Core": "2.17.0" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.AspNetCore8/2.17.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.AspNet.Common": "2.17.0" + }, + "compile": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "WebMarkupMin.Core/2.17.0": { + "type": "package", + "dependencies": { + "AdvancedStringBuilder": "0.1.1" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.NUglify/2.17.0": { + "type": "package", + "dependencies": { + "NUglify": "1.21.9", + "WebMarkupMin.Core": "2.17.0" + }, + "compile": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + } + }, + "Nop.Core/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "AutoMapper": "13.0.1", + "Autofac.Extensions.DependencyInjection": "10.0.0", + "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.4", + "Azure.Extensions.AspNetCore.DataProtection.Keys": "1.2.4", + "Azure.Identity": "1.13.0", + "Humanizer": "2.14.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "8.0.10", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "8.0.10", + "Microsoft.Extensions.Caching.SqlServer": "8.0.10", + "Microsoft.Extensions.Caching.StackExchangeRedis": "8.0.10", + "Nito.AsyncEx.Coordination": "5.1.2", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Linq.Async": "6.0.1" + }, + "compile": { + "bin/placeholder/Nop.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Core.dll": {} + } + }, + "Nop.Data/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentMigrator": "5.2.0", + "FluentMigrator.Runner": "5.1.0", + "Microsoft.Data.SqlClient": "5.2.0", + "MySqlConnector": "2.3.7", + "Nop.Core": "4.70.0", + "Npgsql": "8.0.5", + "System.Configuration.ConfigurationManager": "8.0.1", + "System.Net.NameResolution": "4.3.0", + "linq2db": "5.4.1" + }, + "compile": { + "bin/placeholder/Nop.Data.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Data.dll": {} + } + }, + "Nop.Services/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Azure.Storage.Blobs": "12.22.2", + "ClosedXML": "0.104.1", + "Google.Apis.Auth": "1.68.0", + "HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2", + "MailKit": "4.8.0", + "MaxMind.GeoIP2": "5.2.0", + "Microsoft.Identity.Client": "4.66.1", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "QuestPDF": "2024.10.1", + "SkiaSharp": "2.88.8", + "SkiaSharp.NativeAssets.Linux.NoDependencies": "2.88.8", + "Svg.Skia": "2.0.0.1", + "System.Linq.Dynamic.Core": "1.4.6", + "System.ServiceModel.Http": "8.0.0" + }, + "compile": { + "bin/placeholder/Nop.Services.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Services.dll": {} + } + }, + "Nop.Web/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "Nop.Web.Framework": "4.70.0" + }, + "compile": { + "bin/placeholder/Nop.Web.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentValidation.AspNetCore": "11.3.0", + "LigerShark.WebOptimizer.Core": "3.0.426", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "WebMarkupMin.AspNetCore8": "2.17.0", + "WebMarkupMin.NUglify": "2.17.0" + }, + "compile": { + "bin/placeholder/Nop.Web.Framework.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.Framework.dll": {} + } + } + } + }, + "libraries": { + "AdvancedStringBuilder/0.1.1": { + "sha512": "32IrlspOA59ewotQ4tlKP27QhKxMKGB7oncqlwVHn/hAz+j/r3HvLr6/W9ni9Mnyktlcg6kt7QZS8rEgur1+4Q==", + "type": "package", + "path": "advancedstringbuilder/0.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "advancedstringbuilder.0.1.1.nupkg.sha512", + "advancedstringbuilder.nuspec", + "icon.png", + "lib/net40-client/AdvancedStringBuilder.dll", + "lib/net40-client/AdvancedStringBuilder.xml", + "lib/net45/AdvancedStringBuilder.dll", + "lib/net45/AdvancedStringBuilder.xml", + "lib/netstandard1.0/AdvancedStringBuilder.dll", + "lib/netstandard1.0/AdvancedStringBuilder.xml", + "lib/netstandard2.0/AdvancedStringBuilder.dll", + "lib/netstandard2.0/AdvancedStringBuilder.xml", + "readme.txt" + ] + }, + "Autofac/8.1.0": { + "sha512": "O2QT+0DSTBR2Ojpacmcj3L0KrnnXTFrwLl/OW1lBUDiHhb89msHEHNhTA8AlK3jdFiAfMbAYyQaJVvRe6oSBcQ==", + "type": "package", + "path": "autofac/8.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.8.1.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net6.0/Autofac.dll", + "lib/net6.0/Autofac.xml", + "lib/net7.0/Autofac.dll", + "lib/net7.0/Autofac.xml", + "lib/net8.0/Autofac.dll", + "lib/net8.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "sha512": "ZjR/onUlP7BzQ7VBBigQepWLAyAzi3VRGX3pP6sBqkPRiT61fsTZqbTpRUKxo30TMgbs1o3y6bpLbETix4SJog==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net7.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net7.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net8.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "AutoMapper/13.0.1": { + "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "type": "package", + "path": "automapper/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.13.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net6.0/AutoMapper.dll", + "lib/net6.0/AutoMapper.xml" + ] + }, + "Azure.Core/1.44.1": { + "sha512": "YyznXLQZCregzHvioip07/BkzjuWNXogJEVz9T5W6TwjNr17ax41YGzYMptlo2G10oLCuVPoyva62y0SIRDixg==", + "type": "package", + "path": "azure.core/1.44.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.44.1.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "sha512": "zS+x0MpUMSbvZD598lwAoax+ohIeSAvGlXpT71iP7FFmMZ+Tjz/8hx+jZH/RbV2cJYTYbux8XFDll7LMPuz46g==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.blobs/1.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.blobs.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.4": { + "sha512": "sl0E1iOrVWxxWUTFzzo6hN2+ZjYK8B84t/NEbeVl8MY3xMO3lR8JBSeWGp3u5OL6Z8I2lTAescgOz/CkIni5Lg==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.keys/1.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.keys.1.2.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.xml" + ] + }, + "Azure.Identity/1.13.0": { + "sha512": "UMYCdapkVRojCtXqUmrWMAEV/i1N5haRcQ481oBmXn+kpq1zLJXiL6ESghbxbE0QV5zvewUJIy/IZcvijcpLfg==", + "type": "package", + "path": "azure.identity/1.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.13.0.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Azure.Security.KeyVault.Keys/4.6.0": { + "sha512": "1KbCIkXmLaj+kDDNm1Va5rNlzgcJ/fVtnsoVmzZPKa38jz6DXhPyojdvGaOX8AdupGJceg0X1vrsGvZKN79Qzw==", + "type": "package", + "path": "azure.security.keyvault.keys/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.security.keyvault.keys.4.6.0.nupkg.sha512", + "azure.security.keyvault.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.xml" + ] + }, + "Azure.Storage.Blobs/12.22.2": { + "sha512": "/BK63qx31dhXjnqOXB90DP8mJM+pHbti45+v/D3SiEgP2A+ekvJlGWGLVGQznriT5UAOerM+3vAAEJNKolVSIQ==", + "type": "package", + "path": "azure.storage.blobs/12.22.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.blobs.12.22.2.nupkg.sha512", + "azure.storage.blobs.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Blobs.dll", + "lib/net6.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.0/Azure.Storage.Blobs.dll", + "lib/netstandard2.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.1/Azure.Storage.Blobs.dll", + "lib/netstandard2.1/Azure.Storage.Blobs.xml" + ] + }, + "Azure.Storage.Common/12.21.1": { + "sha512": "NgDJw/upcro33AgGf91sPIG+BU2pFTgGDBzWEp8HctGwzmbjG80eYTl4CJMIwgxVOQWnEXnQZXLY7w3k+BQ9ig==", + "type": "package", + "path": "azure.storage.common/12.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.common.12.21.1.nupkg.sha512", + "azure.storage.common.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Common.dll", + "lib/net6.0/Azure.Storage.Common.xml", + "lib/netstandard2.0/Azure.Storage.Common.dll", + "lib/netstandard2.0/Azure.Storage.Common.xml" + ] + }, + "BouncyCastle.Cryptography/2.4.0": { + "sha512": "SwXsAV3sMvAU/Nn31pbjhWurYSjJ+/giI/0n6tCrYoupEK34iIHCuk3STAd9fx8yudM85KkLSVdn951vTng/vQ==", + "type": "package", + "path": "bouncycastle.cryptography/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.4.0.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, + "ClosedXML/0.104.1": { + "sha512": "RVm2fUNWJlBJlg07shrfeWzrHPG5ypI/vARqdUOUbUdaog8yBw8l4IbCHf2MXt0AXtzaZqGNqhFaCAHigCBdfw==", + "type": "package", + "path": "closedxml/0.104.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "closedxml.0.104.1.nupkg.sha512", + "closedxml.nuspec", + "lib/netstandard2.0/ClosedXML.dll", + "lib/netstandard2.0/ClosedXML.pdb", + "lib/netstandard2.0/ClosedXML.xml", + "lib/netstandard2.1/ClosedXML.dll", + "lib/netstandard2.1/ClosedXML.pdb", + "lib/netstandard2.1/ClosedXML.xml", + "nuget-logo.png" + ] + }, + "ClosedXML.Parser/1.2.0": { + "sha512": "w+/0tsxABS3lkSH8EUlA7IGme+mq5T/Puf3DbOiTckmSuUpAUO2LK29oXYByCcWkBv6wcRHxgWlQb1lxkwI0Tw==", + "type": "package", + "path": "closedxml.parser/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "closedxml.parser.1.2.0.nupkg.sha512", + "closedxml.parser.nuspec", + "lib/netstandard2.0/ClosedXML.Parser.dll", + "lib/netstandard2.0/ClosedXML.Parser.xml", + "lib/netstandard2.1/ClosedXML.Parser.dll", + "lib/netstandard2.1/ClosedXML.Parser.xml" + ] + }, + "DocumentFormat.OpenXml/3.0.1": { + "sha512": "DCK1cwFUJ1FGGyYyo++HWl9H1RkqMWIu+FGOLRy6E4L4y0/HIhlJ7N/n1HKboFfOwKn1cMBRxt1RCuDbIEy5YQ==", + "type": "package", + "path": "documentformat.openxml/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.3.0.1.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/net8.0/DocumentFormat.OpenXml.dll", + "lib/net8.0/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "sha512": "ifyI7OW7sggz7LQMIAD2aUsY/zVUON9QaHrpZ4MK33iVMeHlTG4uhUE2aLWb31nry+LCs2ALDAwf8OfUJGjgBg==", + "type": "package", + "path": "documentformat.openxml.framework/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.framework.3.0.1.nupkg.sha512", + "documentformat.openxml.framework.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.Framework.dll", + "lib/net35/DocumentFormat.OpenXml.Framework.xml", + "lib/net40/DocumentFormat.OpenXml.Framework.dll", + "lib/net40/DocumentFormat.OpenXml.Framework.xml", + "lib/net46/DocumentFormat.OpenXml.Framework.dll", + "lib/net46/DocumentFormat.OpenXml.Framework.xml", + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net6.0/DocumentFormat.OpenXml.Framework.xml", + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net8.0/DocumentFormat.OpenXml.Framework.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml" + ] + }, + "ExcelNumberFormat/1.1.0": { + "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "type": "package", + "path": "excelnumberformat/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excelnumberformat.1.1.0.nupkg.sha512", + "excelnumberformat.nuspec", + "icon.png", + "lib/net20/ExcelNumberFormat.dll", + "lib/net20/ExcelNumberFormat.xml", + "lib/netstandard1.0/ExcelNumberFormat.dll", + "lib/netstandard1.0/ExcelNumberFormat.xml", + "lib/netstandard2.0/ExcelNumberFormat.dll", + "lib/netstandard2.0/ExcelNumberFormat.xml" + ] + }, + "ExCSS/4.2.3": { + "sha512": "SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "type": "package", + "path": "excss/4.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excss.4.2.3.nupkg.sha512", + "excss.nuspec", + "lib/net48/ExCSS.dll", + "lib/net6.0/ExCSS.dll", + "lib/net7.0/ExCSS.dll", + "lib/netcoreapp3.1/ExCSS.dll", + "lib/netstandard2.0/ExCSS.dll", + "lib/netstandard2.1/ExCSS.dll", + "readme.md" + ] + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "sha512": "x+JkSd6TeL9zUXDbi5C0NPeZ1ejo5sw3G9nhoxvVGXhaU399agYgO5RXtYRmcS4GkeA57Q9sThe5pFL2knSdXQ==", + "type": "package", + "path": "firebirdsql.data.firebirdclient/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "firebird-logo.png", + "firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "firebirdsql.data.firebirdclient.nuspec", + "lib/net48/FirebirdSql.Data.FirebirdClient.dll", + "lib/net5.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net6.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.1/FirebirdSql.Data.FirebirdClient.dll", + "license.txt" + ] + }, + "FluentMigrator/5.2.0": { + "sha512": "h3w95meLtHsdWQY1BVVh5eaGcI82zADR2T1WSCcc/NTc+P+rsGzmqG5RF9Gz+Fy1BNEQXL47Xppk/YorwJgEWg==", + "type": "package", + "path": "fluentmigrator/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.5.2.0.nupkg.sha512", + "fluentmigrator.nuspec", + "lib/net48/FluentMigrator.dll", + "lib/net48/FluentMigrator.pdb", + "lib/net48/FluentMigrator.xml", + "lib/netstandard2.0/FluentMigrator.dll", + "lib/netstandard2.0/FluentMigrator.pdb", + "lib/netstandard2.0/FluentMigrator.xml" + ] + }, + "FluentMigrator.Abstractions/5.2.0": { + "sha512": "MvzpENiB2o8QqIXYgKlbtrEPyaHc2m2ukRmaNWszL9ZJH3OBY/kYMotn/dxWC+zwlUo82ZPvoCJtoFi2nptz2w==", + "type": "package", + "path": "fluentmigrator.abstractions/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "fluentmigrator.abstractions.nuspec", + "lib/net48/FluentMigrator.Abstractions.dll", + "lib/net48/FluentMigrator.Abstractions.pdb", + "lib/net48/FluentMigrator.Abstractions.xml", + "lib/net48/de-DE/FluentMigrator.Abstractions.resources.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.pdb", + "lib/netstandard2.0/FluentMigrator.Abstractions.xml", + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll" + ] + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "sha512": "8dx8AS/XFs6HH7G3mw2FcDM43Y7+n96Z0OS9uQjmyum5Cv2Qp2dD2Gf747MCtbWbC/vdhJGomld+BnccBkNA3w==", + "type": "package", + "path": "fluentmigrator.extensions.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.mysql.nuspec", + "lib/net48/FluentMigrator.Extensions.MySql.dll", + "lib/net48/FluentMigrator.Extensions.MySql.pdb", + "lib/net48/FluentMigrator.Extensions.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.xml" + ] + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "sha512": "Cpnav//COP8wl/NVa7EYyiQAsF0lAba3NYizAWXq+vIApxyu5L9Cp6GpyCTgIIOR4QLTx3FXV4cCg7/QKXkHHA==", + "type": "package", + "path": "fluentmigrator.extensions.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.oracle.nuspec", + "lib/net48/FluentMigrator.Extensions.Oracle.dll", + "lib/net48/FluentMigrator.Extensions.Oracle.pdb", + "lib/net48/FluentMigrator.Extensions.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.xml" + ] + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "sha512": "g3Se8v9zyjJUxFedx6mxCtCWrpr5IRD1BExyeIuvorJZZztE4emO/qXtpEB/m9YwdD8stJuPShbMWUa7bKm86Q==", + "type": "package", + "path": "fluentmigrator.extensions.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.postgres.nuspec", + "lib/net48/FluentMigrator.Extensions.Postgres.dll", + "lib/net48/FluentMigrator.Extensions.Postgres.pdb", + "lib/net48/FluentMigrator.Extensions.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.xml" + ] + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "sha512": "3YnRq9q5AcShusF9OvbfMFu/Swyfn8V5YD/vkvAsNTcIIAWs4jXY0QhLR/lofIwvk56XqXE263x2OfzLZnf+gQ==", + "type": "package", + "path": "fluentmigrator.extensions.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.snowflake.nuspec", + "lib/net48/FluentMigrator.Extensions.Snowflake.dll", + "lib/net48/FluentMigrator.Extensions.Snowflake.pdb", + "lib/net48/FluentMigrator.Extensions.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.xml" + ] + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "sha512": "zdcQ1mYvyFY+gzfLScv5Y4j/qFXn4xLed71WqjiNWvN2/JkVh7Xa94K/b+PA6AYh8a7AIqdbnOKtzFr0Lh+95g==", + "type": "package", + "path": "fluentmigrator.extensions.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.sqlserver.nuspec", + "lib/net48/FluentMigrator.Extensions.SqlServer.dll", + "lib/net48/FluentMigrator.Extensions.SqlServer.pdb", + "lib/net48/FluentMigrator.Extensions.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.xml" + ] + }, + "FluentMigrator.Runner/5.1.0": { + "sha512": "jincYPtHyQjQ3XgQ7c8aPkKLX88HxueHdeSz++WDVo0LXnR4aFbvi/UXbtAsnwt+Jj06KFhF1DlYVOoT3yrhKQ==", + "type": "package", + "path": "fluentmigrator.runner/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.5.1.0.nupkg.sha512", + "fluentmigrator.runner.nuspec", + "lib/net48/FluentMigrator.Runner.dll", + "lib/net48/FluentMigrator.Runner.pdb", + "lib/net48/FluentMigrator.Runner.xml", + "lib/netstandard2.0/FluentMigrator.Runner.dll", + "lib/netstandard2.0/FluentMigrator.Runner.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.xml" + ] + }, + "FluentMigrator.Runner.Core/5.1.0": { + "sha512": "nP/3ezpP57wqt/1+NScrsSRiQj90xeaNjEyjFIekNtPzmGyM/z//AYk3MXtfM8so8b+JZNL5INQYgXaVGISD0Q==", + "type": "package", + "path": "fluentmigrator.runner.core/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "fluentmigrator.runner.core.nuspec", + "lib/net48/FluentMigrator.Runner.Core.dll", + "lib/net48/FluentMigrator.Runner.Core.pdb", + "lib/net48/FluentMigrator.Runner.Core.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Core.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Core.xml" + ] + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "sha512": "Z9CdgQnkyBgNyRpTA2le/VEQaa2ukFNqDYEqkRu2cOZk+XF3JsjkQMeeQB2Byy7yZhgK/SGrauLvebB5wF1wEw==", + "type": "package", + "path": "fluentmigrator.runner.db2/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "fluentmigrator.runner.db2.nuspec", + "lib/net48/FluentMigrator.Runner.Db2.dll", + "lib/net48/FluentMigrator.Runner.Db2.pdb", + "lib/net48/FluentMigrator.Runner.Db2.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.xml" + ] + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "sha512": "lNFo+LZQczW3vtuSjpOfRxUhoRrwBMg+PV+SOk12c1PnkfvDAtsX/HSn9yUI3xV+fN1x6krBIwIQ9o63HQZAfg==", + "type": "package", + "path": "fluentmigrator.runner.firebird/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "fluentmigrator.runner.firebird.nuspec", + "lib/net48/FluentMigrator.Runner.Firebird.dll", + "lib/net48/FluentMigrator.Runner.Firebird.pdb", + "lib/net48/FluentMigrator.Runner.Firebird.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.xml" + ] + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "sha512": "xCRna1elZYhOITRK4uNtPb3xut0GTtteCyTjQF7ZlHC4RFFpg1a2fAWFUF+TB9YVeFxf1QHKhbo8Kr5rGH6HqA==", + "type": "package", + "path": "fluentmigrator.runner.hana/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "fluentmigrator.runner.hana.nuspec", + "lib/net48/FluentMigrator.Runner.Hana.dll", + "lib/net48/FluentMigrator.Runner.Hana.pdb", + "lib/net48/FluentMigrator.Runner.Hana.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.xml" + ] + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "sha512": "VywFX3gKQ7EcveKoLcxLwf8aQkWnJn6WQ2aJqe7Dw6gld8o0WBpevsBwQFO1doGqXzhFDlWHO2NwKoqvXQCG+Q==", + "type": "package", + "path": "fluentmigrator.runner.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.runner.mysql.nuspec", + "lib/net48/FluentMigrator.Runner.MySql.dll", + "lib/net48/FluentMigrator.Runner.MySql.pdb", + "lib/net48/FluentMigrator.Runner.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.xml" + ] + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "sha512": "qNmTirqFREMOm/HMkO68suXd3EIoadfQ69gvuJ5Hvy7LNQgMAW8FcrcGkNFn0t0JYAtGEbtH9t90/6dmBAwQIg==", + "type": "package", + "path": "fluentmigrator.runner.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.runner.oracle.nuspec", + "lib/net48/FluentMigrator.Runner.Oracle.dll", + "lib/net48/FluentMigrator.Runner.Oracle.pdb", + "lib/net48/FluentMigrator.Runner.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.xml" + ] + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "sha512": "Zr/cqR7b5PJqwO/JPtVz/zn2USO/jLz8b9JEFCjsYIb4AU8WIwNpLoRXsEcWSoHjlAc60LPcZM608tkgDGgA6A==", + "type": "package", + "path": "fluentmigrator.runner.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.runner.postgres.nuspec", + "lib/net48/FluentMigrator.Runner.Postgres.dll", + "lib/net48/FluentMigrator.Runner.Postgres.pdb", + "lib/net48/FluentMigrator.Runner.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.xml" + ] + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "sha512": "7GTF2EaaU8de9ViLobwxSKT+gY81h6b4zXIkMteALdqnAjkMNcynhEradH5OaDe9PorKWWh3/VBzCmO+N516xw==", + "type": "package", + "path": "fluentmigrator.runner.redshift/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "fluentmigrator.runner.redshift.nuspec", + "lib/net48/FluentMigrator.Runner.Redshift.dll", + "lib/net48/FluentMigrator.Runner.Redshift.pdb", + "lib/net48/FluentMigrator.Runner.Redshift.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.xml" + ] + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "sha512": "OmGfCxJPSrhJ6VcW6ypqc+NziwH1rygkNEJfW7Jl1DHfwrQtPgIgWw8qTA0abN+RkwtalXsfaEJ+4EuL0L+w6w==", + "type": "package", + "path": "fluentmigrator.runner.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.runner.snowflake.nuspec", + "lib/net48/FluentMigrator.Runner.Snowflake.dll", + "lib/net48/FluentMigrator.Runner.Snowflake.pdb", + "lib/net48/FluentMigrator.Runner.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.xml" + ] + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "sha512": "5fADu6iWF9pnPKhI0S2VmdR8gaFFe4A+ZtAu57A9w8gcZCCPVzekye83+gm93XuAGxOQtT1RErVIy2T0aGcyYA==", + "type": "package", + "path": "fluentmigrator.runner.sqlite/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlite.nuspec", + "lib/net48/FluentMigrator.Runner.SQLite.dll", + "lib/net48/FluentMigrator.Runner.SQLite.pdb", + "lib/net48/FluentMigrator.Runner.SQLite.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.xml" + ] + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "sha512": "WiZjICPJRIjuOZG2c52JOspKG0iR9UrfotE/SQMNlGEoIxjp8XrksEw7LytWsXWCymDjZUedNnA7QTqZS4p/Iw==", + "type": "package", + "path": "fluentmigrator.runner.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlserver.nuspec", + "lib/net48/FluentMigrator.Runner.SqlServer.dll", + "lib/net48/FluentMigrator.Runner.SqlServer.pdb", + "lib/net48/FluentMigrator.Runner.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.xml" + ] + }, + "FluentValidation/11.5.1": { + "sha512": "0h1Q5lNOLLyYTWMJmyNoMqhY4CBRvvUWvJP1R4F2CnmmzuWwvB0A8aVmw5+lOuwYnwUwCRrdeMLbc81F38ahNQ==", + "type": "package", + "path": "fluentvalidation/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.5.1.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.AspNetCore/11.3.0": { + "sha512": "jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==", + "type": "package", + "path": "fluentvalidation.aspnetcore/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "fluentvalidation.aspnetcore.nuspec", + "lib/net5.0/FluentValidation.AspNetCore.dll", + "lib/net5.0/FluentValidation.AspNetCore.xml", + "lib/net6.0/FluentValidation.AspNetCore.dll", + "lib/net6.0/FluentValidation.AspNetCore.xml", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "sha512": "iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "Google.Apis/1.68.0": { + "sha512": "s2MymhdpH+ybZNBeZ2J5uFgFHApBp+QXf9FjZSdM1lk/vx5VqIknJwnaWiuAzXxPrLEkesX0Q+UsiWn39yZ9zw==", + "type": "package", + "path": "google.apis/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.1.68.0.nupkg.sha512", + "google.apis.nuspec", + "lib/net462/Google.Apis.dll", + "lib/net462/Google.Apis.pdb", + "lib/net462/Google.Apis.xml", + "lib/net6.0/Google.Apis.dll", + "lib/net6.0/Google.Apis.pdb", + "lib/net6.0/Google.Apis.xml", + "lib/netstandard2.0/Google.Apis.dll", + "lib/netstandard2.0/Google.Apis.pdb", + "lib/netstandard2.0/Google.Apis.xml" + ] + }, + "Google.Apis.Auth/1.68.0": { + "sha512": "hFx8Qz5bZ4w0hpnn4tSmZaaFpjAMsgVElZ+ZgVLUZ2r9i+AKcoVgwiNfv1pruNS5cCvpXqhKECbruBCfRezPHA==", + "type": "package", + "path": "google.apis.auth/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.auth.1.68.0.nupkg.sha512", + "google.apis.auth.nuspec", + "lib/net462/Google.Apis.Auth.dll", + "lib/net462/Google.Apis.Auth.pdb", + "lib/net462/Google.Apis.Auth.xml", + "lib/net6.0/Google.Apis.Auth.dll", + "lib/net6.0/Google.Apis.Auth.pdb", + "lib/net6.0/Google.Apis.Auth.xml", + "lib/netstandard2.0/Google.Apis.Auth.dll", + "lib/netstandard2.0/Google.Apis.Auth.pdb", + "lib/netstandard2.0/Google.Apis.Auth.xml" + ] + }, + "Google.Apis.Core/1.68.0": { + "sha512": "pAqwa6pfu53UXCR2b7A/PAPXeuVg6L1OFw38WckN27NU2+mf+KTjoEg2YGv/f0UyKxzz7DxF1urOTKg/6dTP9g==", + "type": "package", + "path": "google.apis.core/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.core.1.68.0.nupkg.sha512", + "google.apis.core.nuspec", + "lib/net462/Google.Apis.Core.dll", + "lib/net462/Google.Apis.Core.pdb", + "lib/net462/Google.Apis.Core.xml", + "lib/net6.0/Google.Apis.Core.dll", + "lib/net6.0/Google.Apis.Core.pdb", + "lib/net6.0/Google.Apis.Core.xml", + "lib/netstandard2.0/Google.Apis.Core.dll", + "lib/netstandard2.0/Google.Apis.Core.pdb", + "lib/netstandard2.0/Google.Apis.Core.xml" + ] + }, + "HarfBuzzSharp/7.3.0.2": { + "sha512": "0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==", + "type": "package", + "path": "harfbuzzsharp/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "harfbuzzsharp.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nuspec", + "lib/monoandroid1.0/HarfBuzzSharp.dll", + "lib/monoandroid1.0/HarfBuzzSharp.pdb", + "lib/monoandroid1.0/HarfBuzzSharp.xml", + "lib/net462/HarfBuzzSharp.dll", + "lib/net462/HarfBuzzSharp.pdb", + "lib/net462/HarfBuzzSharp.xml", + "lib/net6.0-android30.0/HarfBuzzSharp.dll", + "lib/net6.0-android30.0/HarfBuzzSharp.pdb", + "lib/net6.0-android30.0/HarfBuzzSharp.xml", + "lib/net6.0-ios13.6/HarfBuzzSharp.dll", + "lib/net6.0-ios13.6/HarfBuzzSharp.pdb", + "lib/net6.0-ios13.6/HarfBuzzSharp.xml", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml", + "lib/net6.0-macos10.15/HarfBuzzSharp.dll", + "lib/net6.0-macos10.15/HarfBuzzSharp.pdb", + "lib/net6.0-macos10.15/HarfBuzzSharp.xml", + "lib/net6.0-tvos13.4/HarfBuzzSharp.dll", + "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb", + "lib/net6.0-tvos13.4/HarfBuzzSharp.xml", + "lib/net6.0/HarfBuzzSharp.dll", + "lib/net6.0/HarfBuzzSharp.pdb", + "lib/net6.0/HarfBuzzSharp.xml", + "lib/netcoreapp3.1/HarfBuzzSharp.dll", + "lib/netcoreapp3.1/HarfBuzzSharp.pdb", + "lib/netcoreapp3.1/HarfBuzzSharp.xml", + "lib/netstandard1.3/HarfBuzzSharp.dll", + "lib/netstandard1.3/HarfBuzzSharp.pdb", + "lib/netstandard1.3/HarfBuzzSharp.xml", + "lib/netstandard2.0/HarfBuzzSharp.dll", + "lib/netstandard2.0/HarfBuzzSharp.pdb", + "lib/netstandard2.0/HarfBuzzSharp.xml", + "lib/netstandard2.1/HarfBuzzSharp.dll", + "lib/netstandard2.1/HarfBuzzSharp.pdb", + "lib/netstandard2.1/HarfBuzzSharp.xml", + "lib/tizen40/HarfBuzzSharp.dll", + "lib/tizen40/HarfBuzzSharp.pdb", + "lib/tizen40/HarfBuzzSharp.xml", + "lib/uap10.0.10240/HarfBuzzSharp.dll", + "lib/uap10.0.10240/HarfBuzzSharp.pdb", + "lib/uap10.0.10240/HarfBuzzSharp.xml", + "lib/uap10.0.16299/HarfBuzzSharp.dll", + "lib/uap10.0.16299/HarfBuzzSharp.pdb", + "lib/uap10.0.16299/HarfBuzzSharp.xml", + "lib/xamarinios1.0/HarfBuzzSharp.dll", + "lib/xamarinios1.0/HarfBuzzSharp.pdb", + "lib/xamarinios1.0/HarfBuzzSharp.xml", + "lib/xamarinmac2.0/HarfBuzzSharp.dll", + "lib/xamarinmac2.0/HarfBuzzSharp.pdb", + "lib/xamarinmac2.0/HarfBuzzSharp.xml", + "lib/xamarintvos1.0/HarfBuzzSharp.dll", + "lib/xamarintvos1.0/HarfBuzzSharp.pdb", + "lib/xamarintvos1.0/HarfBuzzSharp.xml", + "lib/xamarinwatchos1.0/HarfBuzzSharp.dll", + "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb", + "lib/xamarinwatchos1.0/HarfBuzzSharp.xml" + ] + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "sha512": "aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.linux/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.linux.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-x64/native/libHarfBuzzSharp.so" + ] + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "sha512": "nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.macos/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.macos.nuspec", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libHarfBuzzSharp.dylib" + ] + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "sha512": "DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.win32/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.win32.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libHarfBuzzSharp.dll", + "runtimes/win-x64/native/libHarfBuzzSharp.dll", + "runtimes/win-x86/native/libHarfBuzzSharp.dll" + ] + }, + "Humanizer/2.14.1": { + "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "type": "package", + "path": "humanizer/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.2.14.1.nupkg.sha512", + "humanizer.nuspec", + "logo.png" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Humanizer.Core.af/2.14.1": { + "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "type": "package", + "path": "humanizer.core.af/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.af.2.14.1.nupkg.sha512", + "humanizer.core.af.nuspec", + "lib/net6.0/af/Humanizer.resources.dll", + "lib/netstandard1.0/af/Humanizer.resources.dll", + "lib/netstandard2.0/af/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ar/2.14.1": { + "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "type": "package", + "path": "humanizer.core.ar/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ar.2.14.1.nupkg.sha512", + "humanizer.core.ar.nuspec", + "lib/net6.0/ar/Humanizer.resources.dll", + "lib/netstandard1.0/ar/Humanizer.resources.dll", + "lib/netstandard2.0/ar/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.az/2.14.1": { + "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "type": "package", + "path": "humanizer.core.az/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.az.2.14.1.nupkg.sha512", + "humanizer.core.az.nuspec", + "lib/net6.0/az/Humanizer.resources.dll", + "lib/netstandard1.0/az/Humanizer.resources.dll", + "lib/netstandard2.0/az/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bg/2.14.1": { + "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "type": "package", + "path": "humanizer.core.bg/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bg.2.14.1.nupkg.sha512", + "humanizer.core.bg.nuspec", + "lib/net6.0/bg/Humanizer.resources.dll", + "lib/netstandard1.0/bg/Humanizer.resources.dll", + "lib/netstandard2.0/bg/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bn-BD/2.14.1": { + "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "type": "package", + "path": "humanizer.core.bn-bd/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "humanizer.core.bn-bd.nuspec", + "lib/net6.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard1.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard2.0/bn-BD/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.cs/2.14.1": { + "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "type": "package", + "path": "humanizer.core.cs/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.cs.2.14.1.nupkg.sha512", + "humanizer.core.cs.nuspec", + "lib/net6.0/cs/Humanizer.resources.dll", + "lib/netstandard1.0/cs/Humanizer.resources.dll", + "lib/netstandard2.0/cs/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.da/2.14.1": { + "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "type": "package", + "path": "humanizer.core.da/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.da.2.14.1.nupkg.sha512", + "humanizer.core.da.nuspec", + "lib/net6.0/da/Humanizer.resources.dll", + "lib/netstandard1.0/da/Humanizer.resources.dll", + "lib/netstandard2.0/da/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.de/2.14.1": { + "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "type": "package", + "path": "humanizer.core.de/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.de.2.14.1.nupkg.sha512", + "humanizer.core.de.nuspec", + "lib/net6.0/de/Humanizer.resources.dll", + "lib/netstandard1.0/de/Humanizer.resources.dll", + "lib/netstandard2.0/de/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.el/2.14.1": { + "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "type": "package", + "path": "humanizer.core.el/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.el.2.14.1.nupkg.sha512", + "humanizer.core.el.nuspec", + "lib/net6.0/el/Humanizer.resources.dll", + "lib/netstandard1.0/el/Humanizer.resources.dll", + "lib/netstandard2.0/el/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.es/2.14.1": { + "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "type": "package", + "path": "humanizer.core.es/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.es.2.14.1.nupkg.sha512", + "humanizer.core.es.nuspec", + "lib/net6.0/es/Humanizer.resources.dll", + "lib/netstandard1.0/es/Humanizer.resources.dll", + "lib/netstandard2.0/es/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fa/2.14.1": { + "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "type": "package", + "path": "humanizer.core.fa/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fa.2.14.1.nupkg.sha512", + "humanizer.core.fa.nuspec", + "lib/net6.0/fa/Humanizer.resources.dll", + "lib/netstandard1.0/fa/Humanizer.resources.dll", + "lib/netstandard2.0/fa/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fi-FI/2.14.1": { + "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "type": "package", + "path": "humanizer.core.fi-fi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "humanizer.core.fi-fi.nuspec", + "lib/net6.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard1.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard2.0/fi-FI/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr/2.14.1": { + "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "type": "package", + "path": "humanizer.core.fr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr.2.14.1.nupkg.sha512", + "humanizer.core.fr.nuspec", + "lib/net6.0/fr/Humanizer.resources.dll", + "lib/netstandard1.0/fr/Humanizer.resources.dll", + "lib/netstandard2.0/fr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr-BE/2.14.1": { + "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "type": "package", + "path": "humanizer.core.fr-be/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr-be.2.14.1.nupkg.sha512", + "humanizer.core.fr-be.nuspec", + "lib/net6.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard1.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard2.0/fr-BE/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.he/2.14.1": { + "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "type": "package", + "path": "humanizer.core.he/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.he.2.14.1.nupkg.sha512", + "humanizer.core.he.nuspec", + "lib/net6.0/he/Humanizer.resources.dll", + "lib/netstandard1.0/he/Humanizer.resources.dll", + "lib/netstandard2.0/he/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hr/2.14.1": { + "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "type": "package", + "path": "humanizer.core.hr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hr.2.14.1.nupkg.sha512", + "humanizer.core.hr.nuspec", + "lib/net6.0/hr/Humanizer.resources.dll", + "lib/netstandard1.0/hr/Humanizer.resources.dll", + "lib/netstandard2.0/hr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hu/2.14.1": { + "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "type": "package", + "path": "humanizer.core.hu/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hu.2.14.1.nupkg.sha512", + "humanizer.core.hu.nuspec", + "lib/net6.0/hu/Humanizer.resources.dll", + "lib/netstandard1.0/hu/Humanizer.resources.dll", + "lib/netstandard2.0/hu/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hy/2.14.1": { + "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "type": "package", + "path": "humanizer.core.hy/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hy.2.14.1.nupkg.sha512", + "humanizer.core.hy.nuspec", + "lib/net6.0/hy/Humanizer.resources.dll", + "lib/netstandard1.0/hy/Humanizer.resources.dll", + "lib/netstandard2.0/hy/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.id/2.14.1": { + "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "type": "package", + "path": "humanizer.core.id/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.id.2.14.1.nupkg.sha512", + "humanizer.core.id.nuspec", + "lib/net6.0/id/Humanizer.resources.dll", + "lib/netstandard1.0/id/Humanizer.resources.dll", + "lib/netstandard2.0/id/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.is/2.14.1": { + "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "type": "package", + "path": "humanizer.core.is/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.is.2.14.1.nupkg.sha512", + "humanizer.core.is.nuspec", + "lib/net6.0/is/Humanizer.resources.dll", + "lib/netstandard1.0/is/Humanizer.resources.dll", + "lib/netstandard2.0/is/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.it/2.14.1": { + "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "type": "package", + "path": "humanizer.core.it/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.it.2.14.1.nupkg.sha512", + "humanizer.core.it.nuspec", + "lib/net6.0/it/Humanizer.resources.dll", + "lib/netstandard1.0/it/Humanizer.resources.dll", + "lib/netstandard2.0/it/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ja/2.14.1": { + "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "type": "package", + "path": "humanizer.core.ja/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ja.2.14.1.nupkg.sha512", + "humanizer.core.ja.nuspec", + "lib/net6.0/ja/Humanizer.resources.dll", + "lib/netstandard1.0/ja/Humanizer.resources.dll", + "lib/netstandard2.0/ja/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ko-KR/2.14.1": { + "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "type": "package", + "path": "humanizer.core.ko-kr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "humanizer.core.ko-kr.nuspec", + "lib/netstandard1.0/ko-KR/Humanizer.resources.dll", + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ku/2.14.1": { + "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "type": "package", + "path": "humanizer.core.ku/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ku.2.14.1.nupkg.sha512", + "humanizer.core.ku.nuspec", + "lib/net6.0/ku/Humanizer.resources.dll", + "lib/netstandard1.0/ku/Humanizer.resources.dll", + "lib/netstandard2.0/ku/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.lv/2.14.1": { + "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "type": "package", + "path": "humanizer.core.lv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.lv.2.14.1.nupkg.sha512", + "humanizer.core.lv.nuspec", + "lib/net6.0/lv/Humanizer.resources.dll", + "lib/netstandard1.0/lv/Humanizer.resources.dll", + "lib/netstandard2.0/lv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ms-MY/2.14.1": { + "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "type": "package", + "path": "humanizer.core.ms-my/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ms-my.2.14.1.nupkg.sha512", + "humanizer.core.ms-my.nuspec", + "lib/netstandard1.0/ms-MY/Humanizer.resources.dll", + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.mt/2.14.1": { + "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "type": "package", + "path": "humanizer.core.mt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.mt.2.14.1.nupkg.sha512", + "humanizer.core.mt.nuspec", + "lib/netstandard1.0/mt/Humanizer.resources.dll", + "lib/netstandard2.0/mt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb/2.14.1": { + "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "type": "package", + "path": "humanizer.core.nb/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb.2.14.1.nupkg.sha512", + "humanizer.core.nb.nuspec", + "lib/net6.0/nb/Humanizer.resources.dll", + "lib/netstandard1.0/nb/Humanizer.resources.dll", + "lib/netstandard2.0/nb/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb-NO/2.14.1": { + "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "type": "package", + "path": "humanizer.core.nb-no/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb-no.2.14.1.nupkg.sha512", + "humanizer.core.nb-no.nuspec", + "lib/net6.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard1.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard2.0/nb-NO/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nl/2.14.1": { + "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "type": "package", + "path": "humanizer.core.nl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nl.2.14.1.nupkg.sha512", + "humanizer.core.nl.nuspec", + "lib/net6.0/nl/Humanizer.resources.dll", + "lib/netstandard1.0/nl/Humanizer.resources.dll", + "lib/netstandard2.0/nl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pl/2.14.1": { + "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "type": "package", + "path": "humanizer.core.pl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pl.2.14.1.nupkg.sha512", + "humanizer.core.pl.nuspec", + "lib/net6.0/pl/Humanizer.resources.dll", + "lib/netstandard1.0/pl/Humanizer.resources.dll", + "lib/netstandard2.0/pl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pt/2.14.1": { + "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "type": "package", + "path": "humanizer.core.pt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pt.2.14.1.nupkg.sha512", + "humanizer.core.pt.nuspec", + "lib/net6.0/pt/Humanizer.resources.dll", + "lib/netstandard1.0/pt/Humanizer.resources.dll", + "lib/netstandard2.0/pt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ro/2.14.1": { + "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "type": "package", + "path": "humanizer.core.ro/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ro.2.14.1.nupkg.sha512", + "humanizer.core.ro.nuspec", + "lib/net6.0/ro/Humanizer.resources.dll", + "lib/netstandard1.0/ro/Humanizer.resources.dll", + "lib/netstandard2.0/ro/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ru/2.14.1": { + "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "type": "package", + "path": "humanizer.core.ru/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ru.2.14.1.nupkg.sha512", + "humanizer.core.ru.nuspec", + "lib/net6.0/ru/Humanizer.resources.dll", + "lib/netstandard1.0/ru/Humanizer.resources.dll", + "lib/netstandard2.0/ru/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sk/2.14.1": { + "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "type": "package", + "path": "humanizer.core.sk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sk.2.14.1.nupkg.sha512", + "humanizer.core.sk.nuspec", + "lib/net6.0/sk/Humanizer.resources.dll", + "lib/netstandard1.0/sk/Humanizer.resources.dll", + "lib/netstandard2.0/sk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sl/2.14.1": { + "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "type": "package", + "path": "humanizer.core.sl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sl.2.14.1.nupkg.sha512", + "humanizer.core.sl.nuspec", + "lib/net6.0/sl/Humanizer.resources.dll", + "lib/netstandard1.0/sl/Humanizer.resources.dll", + "lib/netstandard2.0/sl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr/2.14.1": { + "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "type": "package", + "path": "humanizer.core.sr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr.2.14.1.nupkg.sha512", + "humanizer.core.sr.nuspec", + "lib/net6.0/sr/Humanizer.resources.dll", + "lib/netstandard1.0/sr/Humanizer.resources.dll", + "lib/netstandard2.0/sr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "type": "package", + "path": "humanizer.core.sr-latn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "humanizer.core.sr-latn.nuspec", + "lib/net6.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sv/2.14.1": { + "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "type": "package", + "path": "humanizer.core.sv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sv.2.14.1.nupkg.sha512", + "humanizer.core.sv.nuspec", + "lib/net6.0/sv/Humanizer.resources.dll", + "lib/netstandard1.0/sv/Humanizer.resources.dll", + "lib/netstandard2.0/sv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.th-TH/2.14.1": { + "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "type": "package", + "path": "humanizer.core.th-th/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.th-th.2.14.1.nupkg.sha512", + "humanizer.core.th-th.nuspec", + "lib/netstandard1.0/th-TH/Humanizer.resources.dll", + "lib/netstandard2.0/th-TH/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.tr/2.14.1": { + "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "type": "package", + "path": "humanizer.core.tr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.tr.2.14.1.nupkg.sha512", + "humanizer.core.tr.nuspec", + "lib/net6.0/tr/Humanizer.resources.dll", + "lib/netstandard1.0/tr/Humanizer.resources.dll", + "lib/netstandard2.0/tr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uk/2.14.1": { + "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "type": "package", + "path": "humanizer.core.uk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uk.2.14.1.nupkg.sha512", + "humanizer.core.uk.nuspec", + "lib/net6.0/uk/Humanizer.resources.dll", + "lib/netstandard1.0/uk/Humanizer.resources.dll", + "lib/netstandard2.0/uk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "type": "package", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-cyrl-uz.nuspec", + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "type": "package", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-latn-uz.nuspec", + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.vi/2.14.1": { + "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "type": "package", + "path": "humanizer.core.vi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.vi.2.14.1.nupkg.sha512", + "humanizer.core.vi.nuspec", + "lib/net6.0/vi/Humanizer.resources.dll", + "lib/netstandard1.0/vi/Humanizer.resources.dll", + "lib/netstandard2.0/vi/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-CN/2.14.1": { + "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "type": "package", + "path": "humanizer.core.zh-cn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "humanizer.core.zh-cn.nuspec", + "lib/net6.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard1.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard2.0/zh-CN/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "type": "package", + "path": "humanizer.core.zh-hans/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "humanizer.core.zh-hans.nuspec", + "lib/net6.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "type": "package", + "path": "humanizer.core.zh-hant/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "humanizer.core.zh-hant.nuspec", + "lib/net6.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll", + "logo.png" + ] + }, + "LigerShark.WebOptimizer.Core/3.0.426": { + "sha512": "Mc4FFKL40n2f4ognnwDrvFxLt+2CdsovhCobaS8u2HXriS2OP8uMDwDIwmE2irlAW+HhR04a+wF1XImtFPxxRg==", + "type": "package", + "path": "ligershark.weboptimizer.core/3.0.426", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/LigerShark.WebOptimizer.Core.props", + "build/LigerShark.WebOptimizer.Core.targets", + "lib/net6.0/WebOptimizer.Core.dll", + "lib/net6.0/WebOptimizer.Core.xml", + "lib/net8.0/WebOptimizer.Core.dll", + "lib/net8.0/WebOptimizer.Core.xml", + "ligershark.weboptimizer.core.3.0.426.nupkg.sha512", + "ligershark.weboptimizer.core.nuspec", + "logo.png" + ] + }, + "linq2db/5.4.1": { + "sha512": "qyH32MbFK6T55KsEcQYTbPFfkOa1Mo65lY/Zo8SFVMy0pwkQBCTnA/RUxyG5+l3D/mgfPz85PH3upDrtklSMrw==", + "type": "package", + "path": "linq2db/5.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MIT-LICENSE.txt", + "README.md", + "images/icon.png", + "lib/net45/linq2db.dll", + "lib/net45/linq2db.xml", + "lib/net46/linq2db.dll", + "lib/net46/linq2db.xml", + "lib/net472/linq2db.dll", + "lib/net472/linq2db.xml", + "lib/net6.0/linq2db.dll", + "lib/net6.0/linq2db.xml", + "lib/netcoreapp3.1/linq2db.dll", + "lib/netcoreapp3.1/linq2db.xml", + "lib/netstandard2.0/linq2db.dll", + "lib/netstandard2.0/linq2db.xml", + "lib/netstandard2.1/linq2db.dll", + "lib/netstandard2.1/linq2db.xml", + "linq2db.5.4.1.nupkg.sha512", + "linq2db.nuspec" + ] + }, + "MailKit/4.8.0": { + "sha512": "zZ1UoM4FUnSFUJ9fTl5CEEaejR0DNP6+FDt1OfXnjg4igZntcir1tg/8Ufd6WY5vrpmvToAjluYqjVM24A+5lA==", + "type": "package", + "path": "mailkit/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/ExchangeOAuth2.md", + "docs/FAQ.md", + "docs/GMailOAuth2.md", + "docs/README.md", + "icons/mailkit-50.png", + "lib/net462/MailKit.dll", + "lib/net462/MailKit.dll.config", + "lib/net462/MailKit.pdb", + "lib/net462/MailKit.xml", + "lib/net47/MailKit.dll", + "lib/net47/MailKit.dll.config", + "lib/net47/MailKit.pdb", + "lib/net47/MailKit.xml", + "lib/net48/MailKit.dll", + "lib/net48/MailKit.dll.config", + "lib/net48/MailKit.pdb", + "lib/net48/MailKit.xml", + "lib/net6.0/MailKit.dll", + "lib/net6.0/MailKit.dll.config", + "lib/net6.0/MailKit.pdb", + "lib/net6.0/MailKit.xml", + "lib/net8.0/MailKit.dll", + "lib/net8.0/MailKit.dll.config", + "lib/net8.0/MailKit.pdb", + "lib/net8.0/MailKit.xml", + "lib/netstandard2.0/MailKit.dll", + "lib/netstandard2.0/MailKit.dll.config", + "lib/netstandard2.0/MailKit.pdb", + "lib/netstandard2.0/MailKit.xml", + "lib/netstandard2.1/MailKit.dll", + "lib/netstandard2.1/MailKit.dll.config", + "lib/netstandard2.1/MailKit.pdb", + "lib/netstandard2.1/MailKit.xml", + "mailkit.4.8.0.nupkg.sha512", + "mailkit.nuspec" + ] + }, + "MaxMind.Db/4.1.0": { + "sha512": "lEjCFX0TUQCRmFS8xrXIQSi+4omJ1Fwy0gAHlbnjg8cgSBa0cllP5zOEftQ23EP247EbnF7mNCQ3JsG/bMkHAA==", + "type": "package", + "path": "maxmind.db/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.Db.dll", + "lib/net6.0/MaxMind.Db.xml", + "lib/net7.0/MaxMind.Db.dll", + "lib/net7.0/MaxMind.Db.xml", + "lib/net8.0/MaxMind.Db.dll", + "lib/net8.0/MaxMind.Db.xml", + "lib/netstandard2.0/MaxMind.Db.dll", + "lib/netstandard2.0/MaxMind.Db.xml", + "lib/netstandard2.1/MaxMind.Db.dll", + "lib/netstandard2.1/MaxMind.Db.xml", + "maxmind.db.4.1.0.nupkg.sha512", + "maxmind.db.nuspec" + ] + }, + "MaxMind.GeoIP2/5.2.0": { + "sha512": "E8i6yQPlAznLTfS8w208uY3oqCg6i7sQ9cxKmlDdhFMXVLfm4sKphOTMsIWdAHJCV7RxW2a3DlqxAPkQrqmqlA==", + "type": "package", + "path": "maxmind.geoip2/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.GeoIP2.dll", + "lib/net6.0/MaxMind.GeoIP2.xml", + "lib/net7.0/MaxMind.GeoIP2.dll", + "lib/net7.0/MaxMind.GeoIP2.xml", + "lib/net8.0/MaxMind.GeoIP2.dll", + "lib/net8.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.0/MaxMind.GeoIP2.dll", + "lib/netstandard2.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.1/MaxMind.GeoIP2.dll", + "lib/netstandard2.1/MaxMind.GeoIP2.xml", + "maxmind.geoip2.5.2.0.nupkg.sha512", + "maxmind.geoip2.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "sha512": "tULjwFie6fYm4o6WfD+aHTTrps2I22MQVZpmEWaJumFmzZWA1nHsKezuCBl/u/iKiXtN3npL6MoINaiLHURr/A==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netcoreapp3.1/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.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "sha512": "D46awzK+Q0jP7Bq0cQlsxQrhg7MBhlxG2z+U+9EzcbjcjaDzQvaD5/cxD+qKdu9bHMcSFf9fMr5wizSBPPai1Q==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", + "microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "sha512": "MPL4iVyiaRxnOUY5VATHjvhDWaAEFb77KFiUxVRklv3Z3v+STofUr1UG/aCt1O9cgN7FVTDaC5A7U+zsLub8Xg==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/8.0.10": { + "sha512": "pLEDpobrApzc+9IgnlwMfWHfVaOWdNlBFgfggxFgMw57sn/iTkPMwc8eaufcKcLyCCNZQ1r6GRLsIIzUMtH8eg==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net462/Microsoft.AspNetCore.JsonPatch.xml", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.10": { + "sha512": "2DIFj+w15yFIQbh4AgQQC8m0UJfhiF20s3h/DlTyiPGgNfijZ9TxqauYqaj81hF5Pc9wUg9agvxlH+4eUFjoRg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "sha512": "M0h+ChPgydX2xY17agiphnAVa/Qh05RAP8eeuqGGhQKT10claRBlLNO6d2/oSV8zy0RLHzwLnNZm5xuC/gckGA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.10": { + "sha512": "FM83yTM+cyfHWMAyh86KXh7ZGrwOQLyGDG6LB3erO8kxwmdMN5zBkYxJmIfXhjRL07+q1mpO7gqUkBvyGy6NfQ==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "build/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "sha512": "yCtBr1GSGzJrrp1NJUb4ltwFYMKHw/tJLnIDvg9g/FnkGIEzmE19tbCQqXARIJv5kdtBgsoVIdGLL+zmjxvM/A==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "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.6.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==", + "type": "package", + "path": "microsoft.codeanalysis.razor/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.2.0": { + "sha512": "3alfyqRN3ELRtdvU1dGtLBRNQqprr3TJ0WrUJfMISPwg1nPUN2P3Lelah68IKWuV27Ceb7ig95hWNHFTSXfxMg==", + "type": "package", + "path": "microsoft.data.sqlclient/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/Microsoft.Data.SqlClient.dll", + "lib/net8.0/Microsoft.Data.SqlClient.xml", + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/net8.0/Microsoft.Data.SqlClient.dll", + "ref/net8.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.10": { + "sha512": "Cz0qWHBA4UsM46BI/nehilD8dyglAYZ59gBkbgUzOnq9y4g52jb5R6wu7lKOyOi/pJx/VSt/Tt5LAbtxa27ZJw==", + "type": "package", + "path": "microsoft.extensions.caching.sqlserver/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml", + "microsoft.extensions.caching.sqlserver.8.0.10.nupkg.sha512", + "microsoft.extensions.caching.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.10": { + "sha512": "60BGmEIij4UjMf6iG9hUQy6+aZC5X4UVNpJ0O/TU2Dt3z/XnNuC/vgjtpbfrhYdkeVegqFwGIHnWk/kEI4eddA==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.8.0.10.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.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.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "sha512": "sS+U28IfgZSQUS2b3MayPdYGBJlHOWwgnfAZ77bZLkgU0z+lJz7lgzrKQUm9SgKF+OAc5B9kWJV5PB6l7mWWZA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "sha512": "00J6eE920t5vfPnEHBSGyj1Ya9lG6WYsMwqvLZ0nMPPTD2UxkaL+FNJM5DNSnMFJtV84KkUudPRngmNiCkqhuA==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/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.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.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.8.0.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "sha512": "OVX5tlKg6LY+XKqlUn7i9KY+6Liut0iewWff2DNr7129i/NJ8rpUzbmxavPydZgcLREEWHklXZiPKCS895tNIQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/6.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net6.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "type": "package", + "path": "microsoft.extensions.options/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.2.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.66.1": { + "sha512": "mE+m3pZ7zSKocSubKXxwZcUrCzLflC86IdLxrVjS8tialy0b1L+aECBqRBC/ykcPlB4y7skg49TaTiA+O2UfDw==", + "type": "package", + "path": "microsoft.identity.client/4.66.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net472/Microsoft.Identity.Client.dll", + "lib/net472/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.66.1.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.65.0": { + "sha512": "JIOBFMAyVSqGWP4dNoST+A9BRJMGC8m73BNbR1oKA8nUjGyR8Fd4eOOME/VDrd26I5JWU4RtmWqpt20lpp2r5w==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.65.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.65.0.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MimeKit/4.8.0": { + "sha512": "U24wp4LKED+sBRzyrWICE+3bSwptsTrPOcCIXbW5zfeThCNzQx5NCo8Wus+Rmi+EUkQrCwlI/3sVfejeq9tuxQ==", + "type": "package", + "path": "mimekit/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/FAQ.md", + "docs/README.md", + "icons/mimekit-50.png", + "lib/net462/MimeKit.dll", + "lib/net462/MimeKit.dll.config", + "lib/net462/MimeKit.pdb", + "lib/net462/MimeKit.xml", + "lib/net47/MimeKit.dll", + "lib/net47/MimeKit.dll.config", + "lib/net47/MimeKit.pdb", + "lib/net47/MimeKit.xml", + "lib/net48/MimeKit.dll", + "lib/net48/MimeKit.dll.config", + "lib/net48/MimeKit.pdb", + "lib/net48/MimeKit.xml", + "lib/net6.0/MimeKit.dll", + "lib/net6.0/MimeKit.dll.config", + "lib/net6.0/MimeKit.pdb", + "lib/net6.0/MimeKit.xml", + "lib/net8.0/MimeKit.dll", + "lib/net8.0/MimeKit.dll.config", + "lib/net8.0/MimeKit.pdb", + "lib/net8.0/MimeKit.xml", + "lib/netstandard2.0/MimeKit.dll", + "lib/netstandard2.0/MimeKit.dll.config", + "lib/netstandard2.0/MimeKit.pdb", + "lib/netstandard2.0/MimeKit.xml", + "lib/netstandard2.1/MimeKit.dll", + "lib/netstandard2.1/MimeKit.dll.config", + "lib/netstandard2.1/MimeKit.pdb", + "lib/netstandard2.1/MimeKit.xml", + "mimekit.4.8.0.nupkg.sha512", + "mimekit.nuspec" + ] + }, + "MySqlConnector/2.3.7": { + "sha512": "YiVOxvJ+vAYW8NT9gHv8RxKCDFCSXAObF3z0Ou/8WRv8Lsn2QsxaPW5xEwPE+xCcAq6BGkrI8GTOC09Xg09blQ==", + "type": "package", + "path": "mysqlconnector/2.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/MySqlConnector.dll", + "lib/net462/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net48/MySqlConnector.dll", + "lib/net48/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/net7.0/MySqlConnector.dll", + "lib/net7.0/MySqlConnector.xml", + "lib/net8.0/MySqlConnector.dll", + "lib/net8.0/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.3.7.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==", + "type": "package", + "path": "nito.asyncex.coordination/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Coordination.dll", + "lib/net461/Nito.AsyncEx.Coordination.xml", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml", + "nito.asyncex.coordination.5.1.2.nupkg.sha512", + "nito.asyncex.coordination.nuspec" + ] + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==", + "type": "package", + "path": "nito.asyncex.tasks/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Tasks.dll", + "lib/net461/Nito.AsyncEx.Tasks.xml", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml", + "nito.asyncex.tasks.5.1.2.nupkg.sha512", + "nito.asyncex.tasks.nuspec" + ] + }, + "Nito.Collections.Deque/1.1.1": { + "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==", + "type": "package", + "path": "nito.collections.deque/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Collections.Deque.dll", + "lib/net461/Nito.Collections.Deque.xml", + "lib/netstandard1.0/Nito.Collections.Deque.dll", + "lib/netstandard1.0/Nito.Collections.Deque.xml", + "lib/netstandard2.0/Nito.Collections.Deque.dll", + "lib/netstandard2.0/Nito.Collections.Deque.xml", + "nito.collections.deque.1.1.1.nupkg.sha512", + "nito.collections.deque.nuspec" + ] + }, + "Nito.Disposables/2.2.1": { + "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==", + "type": "package", + "path": "nito.disposables/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Disposables.dll", + "lib/net461/Nito.Disposables.xml", + "lib/netstandard1.0/Nito.Disposables.dll", + "lib/netstandard1.0/Nito.Disposables.xml", + "lib/netstandard2.0/Nito.Disposables.dll", + "lib/netstandard2.0/Nito.Disposables.xml", + "lib/netstandard2.1/Nito.Disposables.dll", + "lib/netstandard2.1/Nito.Disposables.xml", + "nito.disposables.2.2.1.nupkg.sha512", + "nito.disposables.nuspec" + ] + }, + "Npgsql/8.0.5": { + "sha512": "zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "type": "package", + "path": "npgsql/8.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.5.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "NUglify/1.21.9": { + "sha512": "ULyI/scrIRAo2In6cnaCc/QkWUt+wB6pBVt5lrVddOKyamsCAm1XgArkk4px9tVn6SipjhbTt4M38QPlpoET+g==", + "type": "package", + "path": "nuglify/1.21.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/net5.0/NUglify.dll", + "lib/net5.0/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.21.9.nupkg.sha512", + "nuglify.nuspec", + "nuglify.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "QuestPDF/2024.10.1": { + "sha512": "pjPmQ/K5yI9EDuLceHa+HTPYMLAN0Lgpfmhsf4SxNhkU/nJ3Qc9k2d9wSg+1DNrub6hh2uJZx5xOk2jN6CNlew==", + "type": "package", + "path": "questpdf/2024.10.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Contributors.md", + "Description.md", + "Documentation.xml", + "ExternalDependencyLicenses/emsdk.txt", + "ExternalDependencyLicenses/expat.txt", + "ExternalDependencyLicenses/harfbuzz.txt", + "ExternalDependencyLicenses/icu.txt", + "ExternalDependencyLicenses/libjpeg-turbo.txt", + "ExternalDependencyLicenses/libpng.txt", + "ExternalDependencyLicenses/libwebp.txt", + "ExternalDependencyLicenses/ninja-build.txt", + "ExternalDependencyLicenses/readme.txt", + "ExternalDependencyLicenses/skia.txt", + "ExternalDependencyLicenses/wuffs.txt", + "ExternalDependencyLicenses/zlib.txt", + "LatoFont/Lato-Black.ttf", + "LatoFont/Lato-BlackItalic.ttf", + "LatoFont/Lato-Bold.ttf", + "LatoFont/Lato-BoldItalic.ttf", + "LatoFont/Lato-ExtraBold.ttf", + "LatoFont/Lato-ExtraBoldItalic.ttf", + "LatoFont/Lato-ExtraLight.ttf", + "LatoFont/Lato-ExtraLightItalic.ttf", + "LatoFont/Lato-Italic.ttf", + "LatoFont/Lato-Light.ttf", + "LatoFont/Lato-LightItalic.ttf", + "LatoFont/Lato-Medium.ttf", + "LatoFont/Lato-MediumItalic.ttf", + "LatoFont/Lato-Regular.ttf", + "LatoFont/Lato-SemiBold.ttf", + "LatoFont/Lato-SemiBoldItalic.ttf", + "LatoFont/Lato-Thin.ttf", + "LatoFont/Lato-ThinItalic.ttf", + "LatoFont/OFL.txt", + "Logo.png", + "PackageLicense.md", + "PackageReadme.md", + "ReleaseNotes.txt", + "build/QuestPDF.targets", + "build/net4/QuestPDF.targets", + "buildTransitive/QuestPDF.targets", + "buildTransitive/net4/QuestPDF.targets", + "lib/net6.0/QuestPDF.dll", + "lib/net6.0/QuestPDF.xml", + "lib/net8.0/QuestPDF.dll", + "lib/net8.0/QuestPDF.xml", + "lib/netstandard2.0/QuestPDF.dll", + "lib/netstandard2.0/QuestPDF.xml", + "questpdf.2024.10.1.nupkg.sha512", + "questpdf.nuspec", + "runtimes/linux-arm64/native/libQuestPdfSkia.so", + "runtimes/linux-musl-x64/native/libQuestPdfSkia.so", + "runtimes/linux-x64/native/libQuestPdfSkia.so", + "runtimes/osx-arm64/native/libQuestPdfSkia.dylib", + "runtimes/osx-x64/native/libQuestPdfSkia.dylib", + "runtimes/win-x64/native/QuestPdfSkia.dll", + "runtimes/win-x86/native/QuestPdfSkia.dll" + ] + }, + "RBush/3.2.0": { + "sha512": "ijGh9N0zZ7JfXk3oQkWCwK8SwSSByexbyh/MjbCjNxOft9eG5ZqKC1vdgiYq78h4IZRFmN4s3JZ/b10Jipud5w==", + "type": "package", + "path": "rbush/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/RBush.dll", + "lib/net6.0/RBush.xml", + "lib/netcoreapp3.1/RBush.dll", + "lib/netcoreapp3.1/RBush.xml", + "lib/netstandard1.2/RBush.dll", + "lib/netstandard1.2/RBush.xml", + "rbush.3.2.0.nupkg.sha512", + "rbush.nuspec", + "readme.md" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "ShimSkiaSharp/2.0.0.1": { + "sha512": "UcUtnhIlriwCmgThNdCjNqfjX1JCMxrx3xzYrcXovMVoxMWi8ulQAwa21vz2NiyaXkHfu4fYcNH2aeLVYxHq9Q==", + "type": "package", + "path": "shimskiasharp/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ShimSkiaSharp.dll", + "lib/net6.0/ShimSkiaSharp.dll", + "lib/net8.0/ShimSkiaSharp.dll", + "lib/netstandard2.0/ShimSkiaSharp.dll", + "shimskiasharp.2.0.0.1.nupkg.sha512", + "shimskiasharp.nuspec" + ] + }, + "SixLabors.Fonts/1.0.0": { + "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "type": "package", + "path": "sixlabors.fonts/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/SixLabors.Fonts.dll", + "lib/netcoreapp3.1/SixLabors.Fonts.xml", + "lib/netstandard2.0/SixLabors.Fonts.dll", + "lib/netstandard2.0/SixLabors.Fonts.xml", + "lib/netstandard2.1/SixLabors.Fonts.dll", + "lib/netstandard2.1/SixLabors.Fonts.xml", + "sixlabors.fonts.1.0.0.nupkg.sha512", + "sixlabors.fonts.128.png", + "sixlabors.fonts.nuspec" + ] + }, + "SkiaSharp/2.88.8": { + "sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==", + "type": "package", + "path": "skiasharp/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.8.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "sha512": "ajSyJ2D17R0kZ4FwKwFrJTsYs3D3Y9iRBLhNecROR7dOxC6VTFaMPXJuwQB8KYpAqgmb2JAJFEgZ3i8MaaIw1g==", + "type": "package", + "path": "skiasharp.harfbuzz/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net462/SkiaSharp.HarfBuzz.dll", + "lib/net462/SkiaSharp.HarfBuzz.pdb", + "lib/net462/SkiaSharp.HarfBuzz.xml", + "lib/net6.0/SkiaSharp.HarfBuzz.dll", + "lib/net6.0/SkiaSharp.HarfBuzz.pdb", + "lib/net6.0/SkiaSharp.HarfBuzz.xml", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.dll", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.pdb", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.xml", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.dll", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.xml", + "skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "skiasharp.harfbuzz.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "sha512": "/DoKtdyvRgCC5GR/SH+ps3ZiOjmf0BYpAyrhWQELFOO1hdcqddrDVJjDNCOJ41vV+NlS5b3kcDoZZ7jLhFjyXg==", + "type": "package", + "path": "skiasharp.nativeassets.linux.nodependencies/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libSkiaSharp.so", + "runtimes/linux-arm64/native/libSkiaSharp.so", + "runtimes/linux-musl-x64/native/libSkiaSharp.so", + "runtimes/linux-x64/native/libSkiaSharp.so", + "skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.linux.nodependencies.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "sha512": "6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "sha512": "O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "StackExchange.Redis/2.7.27": { + "sha512": "Uqc2OQHglqj9/FfGQ6RkKFkZfHySfZlfmbCl+hc+u2I/IqunfelQ7QJi7ZhvAJxUtu80pildVX6NPLdDaUffOw==", + "type": "package", + "path": "stackexchange.redis/2.7.27", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net6.0/StackExchange.Redis.dll", + "lib/net6.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.7.27.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Svg.Custom/2.0.0.1": { + "sha512": "RDQkecvotRs6Cadg0d8IxoXMSkYzVhrYkBWOlS0cW/Krm7Fzr+/LbXdUuXYRnKDoRoSRzzP9GAKmv5Z9oZTM1w==", + "type": "package", + "path": "svg.custom/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Svg.Custom.dll", + "lib/net8.0/Svg.Custom.dll", + "lib/netstandard2.0/Svg.Custom.dll", + "svg.custom.2.0.0.1.nupkg.sha512", + "svg.custom.nuspec" + ] + }, + "Svg.Model/2.0.0.1": { + "sha512": "lHAW6yYC62oKAXmTol2f0Ke6je5VkGTilSvnk4ynZ8577o7/eCnvZyPJcoFPryOX+s+6aAUA1rbbcK1JfsQzEA==", + "type": "package", + "path": "svg.model/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Model.dll", + "lib/net6.0/Svg.Model.dll", + "lib/net8.0/Svg.Model.dll", + "lib/netstandard2.0/Svg.Model.dll", + "svg.model.2.0.0.1.nupkg.sha512", + "svg.model.nuspec" + ] + }, + "Svg.Skia/2.0.0.1": { + "sha512": "yn1+xr8sXV88qdAQbv+O+9Sf8Ymp0SFxDNGvyNWEr8OdyEtBndnzPPW5uHLIxzmsH4JFHaTOpL+wDF8Vj05iFQ==", + "type": "package", + "path": "svg.skia/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Skia.dll", + "lib/net6.0/Svg.Skia.dll", + "lib/net8.0/Svg.Skia.dll", + "lib/netstandard2.0/Svg.Skia.dll", + "svg.skia.2.0.0.1.nupkg.sha512", + "svg.skia.nuspec" + ] + }, + "System.ClientModel/1.1.0": { + "sha512": "UocOlCkxLZrG2CKMAAImPcldJTxeesHnHGHwhJ0pNlZEvEXcWKuQvVOER2/NiOkJGRJk978SNdw3j6/7O9H1lg==", + "type": "package", + "path": "system.clientmodel/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.1.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.CodeDom/7.0.0": { + "sha512": "GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==", + "type": "package", + "path": "system.codedom/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/net7.0/System.CodeDom.dll", + "lib/net7.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.7.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/8.0.1": { + "sha512": "gPYFPDyohW2gXNhdQRSjtmeS6FymL2crg4Sral1wtvEJ7DUqFCDWDVbbLobASbzxfic8U1hQEdC7hmg9LHncMw==", + "type": "package", + "path": "system.configuration.configurationmanager/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.8.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.1": { + "sha512": "n1ZP7NM2Gkn/MgD8+eOT5MulMj6wfeQMNS2Pizvq5GHCZfjlFMXV2irQlQmJhwA2VABC57M0auudO89Iu2uRLg==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Formats.Asn1/8.0.1": { + "sha512": "XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==", + "type": "package", + "path": "system.formats.asn1/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/net7.0/System.Formats.Asn1.dll", + "lib/net7.0/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.8.0.1.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.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/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Hashing/6.0.0": { + "sha512": "Rfm2jYCaUeGysFEZjDe7j1R4x6Z6BzumS/vUT5a1AA/AWJuGX71PoGB0RmpyX3VmrGqVnAwtfMn39OHR8Y/5+g==", + "type": "package", + "path": "system.io.hashing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Hashing.dll", + "lib/net461/System.IO.Hashing.xml", + "lib/net6.0/System.IO.Hashing.dll", + "lib/net6.0/System.IO.Hashing.xml", + "lib/netstandard2.0/System.IO.Hashing.dll", + "lib/netstandard2.0/System.IO.Hashing.xml", + "system.io.hashing.6.0.0.nupkg.sha512", + "system.io.hashing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Packaging/8.0.0": { + "sha512": "8g1V4YRpdGAxFcK8v9OjuMdIOJSpF30Zb1JGicwVZhly3I994WFyBdV6mQEo8d3T+URQe55/M0U0eIH0Hts1bg==", + "type": "package", + "path": "system.io.packaging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Packaging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "lib/net462/System.IO.Packaging.dll", + "lib/net462/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/net7.0/System.IO.Packaging.dll", + "lib/net7.0/System.IO.Packaging.xml", + "lib/net8.0/System.IO.Packaging.dll", + "lib/net8.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.8.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/5.0.1": { + "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==", + "type": "package", + "path": "system.io.pipelines/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.1.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Async/6.0.1": { + "sha512": "0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", + "type": "package", + "path": "system.linq.async/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Logo.png", + "lib/net48/System.Linq.Async.dll", + "lib/net48/System.Linq.Async.xml", + "lib/net6.0/System.Linq.Async.dll", + "lib/net6.0/System.Linq.Async.xml", + "lib/netstandard2.0/System.Linq.Async.dll", + "lib/netstandard2.0/System.Linq.Async.xml", + "lib/netstandard2.1/System.Linq.Async.dll", + "lib/netstandard2.1/System.Linq.Async.xml", + "ref/net48/System.Linq.Async.dll", + "ref/net48/System.Linq.Async.xml", + "ref/net6.0/System.Linq.Async.dll", + "ref/net6.0/System.Linq.Async.xml", + "ref/netstandard2.0/System.Linq.Async.dll", + "ref/netstandard2.0/System.Linq.Async.xml", + "ref/netstandard2.1/System.Linq.Async.dll", + "ref/netstandard2.1/System.Linq.Async.xml", + "system.linq.async.6.0.1.nupkg.sha512", + "system.linq.async.nuspec" + ] + }, + "System.Linq.Dynamic.Core/1.4.6": { + "sha512": "GZJ996kvIKH0nnKysDWy+le7k0Hoq1iSY7S5sNq6AF1bXPQGidaXjiOJNX4VCUuVWpbe28Ygb6mDSwgY+UhHLA==", + "type": "package", + "path": "system.linq.dynamic.core/1.4.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PackageReadme.md", + "lib/net35/System.Linq.Dynamic.Core.dll", + "lib/net35/System.Linq.Dynamic.Core.pdb", + "lib/net35/System.Linq.Dynamic.Core.xml", + "lib/net40/System.Linq.Dynamic.Core.dll", + "lib/net40/System.Linq.Dynamic.Core.pdb", + "lib/net40/System.Linq.Dynamic.Core.xml", + "lib/net45/System.Linq.Dynamic.Core.dll", + "lib/net45/System.Linq.Dynamic.Core.pdb", + "lib/net45/System.Linq.Dynamic.Core.xml", + "lib/net452/System.Linq.Dynamic.Core.dll", + "lib/net452/System.Linq.Dynamic.Core.pdb", + "lib/net452/System.Linq.Dynamic.Core.xml", + "lib/net46/System.Linq.Dynamic.Core.dll", + "lib/net46/System.Linq.Dynamic.Core.pdb", + "lib/net46/System.Linq.Dynamic.Core.xml", + "lib/net5.0/System.Linq.Dynamic.Core.dll", + "lib/net5.0/System.Linq.Dynamic.Core.pdb", + "lib/net5.0/System.Linq.Dynamic.Core.xml", + "lib/net6.0/System.Linq.Dynamic.Core.dll", + "lib/net6.0/System.Linq.Dynamic.Core.pdb", + "lib/net6.0/System.Linq.Dynamic.Core.xml", + "lib/net7.0/System.Linq.Dynamic.Core.dll", + "lib/net7.0/System.Linq.Dynamic.Core.pdb", + "lib/net7.0/System.Linq.Dynamic.Core.xml", + "lib/net8.0/System.Linq.Dynamic.Core.dll", + "lib/net8.0/System.Linq.Dynamic.Core.pdb", + "lib/net8.0/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.xml", + "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", + "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", + "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.1/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.1/System.Linq.Dynamic.Core.xml", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml", + "logo.png", + "system.linq.dynamic.core.1.4.6.nupkg.sha512", + "system.linq.dynamic.core.nuspec" + ] + }, + "System.Management/7.0.2": { + "sha512": "/qEUN91mP/MUQmJnM5y5BdT7ZoPuVrtxnFlbJ8a3kBJGhe2wCzBfnPFtK2wTtEEcf3DMGR9J00GZZfg6HRI6yA==", + "type": "package", + "path": "system.management/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "lib/net462/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/net7.0/System.Management.dll", + "lib/net7.0/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/net7.0/System.Management.dll", + "runtimes/win/lib/net7.0/System.Management.xml", + "system.management.7.0.2.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/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.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/6.0.0": { + "sha512": "ntFHArH3I4Lpjf5m4DCXQHJuGwWPNVJPaAvM95Jy/u+2Yzt2ryiyIN04LAogkjP9DeRcEOiviAjQotfmPq/FrQ==", + "type": "package", + "path": "system.memory.data/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Memory.Data.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/net6.0/System.Memory.Data.dll", + "lib/net6.0/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.6.0.0.nupkg.sha512", + "system.memory.data.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "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", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.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/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/8.0.0": { + "sha512": "4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "type": "package", + "path": "system.runtime.caching/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/net7.0/System.Runtime.Caching.dll", + "lib/net7.0/System.Runtime.Caching.xml", + "lib/net8.0/System.Runtime.Caching.dll", + "lib/net8.0/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net7.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net7.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net8.0/System.Runtime.Caching.xml", + "system.runtime.caching.8.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.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/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "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", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "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", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "sha512": "ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "type": "package", + "path": "system.security.cryptography.pkcs/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "type": "package", + "path": "system.security.cryptography.protecteddata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/6.0.1": { + "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.1.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "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.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Http/8.0.0": { + "sha512": "Qwkoe0F+2e/2LiNwiIgfBTJTw11flv208UwS38ru+GR7nZk2VdGvAE8tqGB0RQIGra73Rux9jKNgfy1XtfXdLg==", + "type": "package", + "path": "system.servicemodel.http/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Http.dll", + "lib/net8.0/System.ServiceModel.Http.pdb", + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll", + "lib/net8.0/de/System.ServiceModel.Http.resources.dll", + "lib/net8.0/es/System.ServiceModel.Http.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/it/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll", + "system.servicemodel.http.8.0.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.Primitives/8.0.0": { + "sha512": "hVzK77Bl00H+1V7ho7h03tKlgxAIKssV3eUnRdH+gTCZCK4Ywnv2CR35AV9ly/tRpvsGwNL1d/jkAwB1MWw3Fw==", + "type": "package", + "path": "system.servicemodel.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Primitives.dll", + "lib/net8.0/System.ServiceModel.Primitives.pdb", + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll", + "ref/net8.0/System.ServiceModel.Primitives.dll", + "system.servicemodel.primitives.8.0.0.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "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.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.10": { + "sha512": "NSB0kDipxn2ychp88NXWfFRFlmi1bst/xynOutbnpEfRCT9JZkZ7KOmF/I/hNKo2dILiMGnqblm+j1sggdLB9g==", + "type": "package", + "path": "system.text.json/6.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "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", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.10.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.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.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "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", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "WebMarkupMin.AspNet.Common/2.17.0": { + "sha512": "HNMEVKwHnA9eGb7iAsihm9oKK5xTfuWb2bq6J7Gx6CTZSYi9HnYbo+ejzzmlTATRPiD9UqpYqwbecr0i09aJFg==", + "type": "package", + "path": "webmarkupmin.aspnet.common/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40/WebMarkupMin.AspNet.Common.dll", + "lib/net40/WebMarkupMin.AspNet.Common.xml", + "lib/net45/WebMarkupMin.AspNet.Common.dll", + "lib/net45/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.xml", + "readme.txt", + "webmarkupmin.aspnet.common.2.17.0.nupkg.sha512", + "webmarkupmin.aspnet.common.nuspec" + ] + }, + "WebMarkupMin.AspNetCore8/2.17.0": { + "sha512": "516pUZ5oXqK3FxV5bvX/L/Vor+iyZP7aP4Si6hs5nSIoXtXgz81X+4UTopxx/Wh8+jlYzWXsLC0pVxsKVPqHvw==", + "type": "package", + "path": "webmarkupmin.aspnetcore8/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net8.0/WebMarkupMin.AspNetCore8.dll", + "lib/net8.0/WebMarkupMin.AspNetCore8.xml", + "readme.txt", + "webmarkupmin.aspnetcore8.2.17.0.nupkg.sha512", + "webmarkupmin.aspnetcore8.nuspec" + ] + }, + "WebMarkupMin.Core/2.17.0": { + "sha512": "TKCwf7usSSqKkXzc+rfc11K1GGA5KUnj241ImDRRPvpfgekUsg9FbqZuhqbOCjkEw4WDEKWN6EODPBBtP5g5hA==", + "type": "package", + "path": "webmarkupmin.core/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40-client/WebMarkupMin.Core.dll", + "lib/net40-client/WebMarkupMin.Core.xml", + "lib/net45/WebMarkupMin.Core.dll", + "lib/net45/WebMarkupMin.Core.xml", + "lib/netstandard1.3/WebMarkupMin.Core.dll", + "lib/netstandard1.3/WebMarkupMin.Core.xml", + "lib/netstandard2.0/WebMarkupMin.Core.dll", + "lib/netstandard2.0/WebMarkupMin.Core.xml", + "lib/netstandard2.1/WebMarkupMin.Core.dll", + "lib/netstandard2.1/WebMarkupMin.Core.xml", + "readme.txt", + "webmarkupmin.core.2.17.0.nupkg.sha512", + "webmarkupmin.core.nuspec" + ] + }, + "WebMarkupMin.NUglify/2.17.0": { + "sha512": "ZS/qge/fL98fsul12z9Q4C24Rbpu9Epw+QQpPoF6ksifWt/3TH2CQWSUV4iDeorQsSlVRUbKfpVor7R2uQK/cA==", + "type": "package", + "path": "webmarkupmin.nuglify/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40-client/WebMarkupMin.NUglify.dll", + "lib/net40-client/WebMarkupMin.NUglify.xml", + "lib/net45/WebMarkupMin.NUglify.dll", + "lib/net45/WebMarkupMin.NUglify.xml", + "lib/netstandard1.3/WebMarkupMin.NUglify.dll", + "lib/netstandard1.3/WebMarkupMin.NUglify.xml", + "lib/netstandard2.0/WebMarkupMin.NUglify.dll", + "lib/netstandard2.0/WebMarkupMin.NUglify.xml", + "nuglify-license.txt", + "readme.txt", + "webmarkupmin.nuglify.2.17.0.nupkg.sha512", + "webmarkupmin.nuglify.nuspec" + ] + }, + "Nop.Core/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Core/Nop.Core.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Core/Nop.Core.csproj" + }, + "Nop.Data/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Data/Nop.Data.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Data/Nop.Data.csproj" + }, + "Nop.Services/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Services/Nop.Services.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Services/Nop.Services.csproj" + }, + "Nop.Web/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Presentation/Nop.Web/Nop.Web.csproj", + "msbuildProject": "../../../../NopCommerce/Presentation/Nop.Web/Nop.Web.csproj" + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj", + "msbuildProject": "../../../../NopCommerce/Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Nop.Web >= 4.70.0" + ] + }, + "packageFolders": { + "C:\\Users\\Ádám\\.nuget\\packages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\Nop.Plugin.Misc.AuctionPlugin.csproj", + "projectName": "Nop.Plugin.Misc.AuctionPlugin", + "projectPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\Nop.Plugin.Misc.AuctionPlugin.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/obj/project.nuget.cache b/Nop.Plugin.Misc.AuctionPlugin/obj/project.nuget.cache new file mode 100644 index 0000000..778eca9 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/obj/project.nuget.cache @@ -0,0 +1,234 @@ +{ + "version": 2, + "dgSpecHash": "mwtB8IY3HtQ=", + "success": true, + "projectFilePath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.AuctionPlugin\\Nop.Plugin.Misc.AuctionPlugin.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Ádám\\.nuget\\packages\\advancedstringbuilder\\0.1.1\\advancedstringbuilder.0.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac\\8.1.0\\autofac.8.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.core\\1.44.1\\azure.core.1.44.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.blobs\\1.3.4\\azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.keys\\1.2.4\\azure.extensions.aspnetcore.dataprotection.keys.1.2.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.identity\\1.13.0\\azure.identity.1.13.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.security.keyvault.keys\\4.6.0\\azure.security.keyvault.keys.4.6.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.blobs\\12.22.2\\azure.storage.blobs.12.22.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.common\\12.21.1\\azure.storage.common.12.21.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\bouncycastle.cryptography\\2.4.0\\bouncycastle.cryptography.2.4.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml\\0.104.1\\closedxml.0.104.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml.parser\\1.2.0\\closedxml.parser.1.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml\\3.0.1\\documentformat.openxml.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml.framework\\3.0.1\\documentformat.openxml.framework.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excelnumberformat\\1.1.0\\excelnumberformat.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excss\\4.2.3\\excss.4.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\firebirdsql.data.firebirdclient\\10.0.0\\firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator\\5.2.0\\fluentmigrator.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.abstractions\\5.2.0\\fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.mysql\\5.1.0\\fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.oracle\\5.1.0\\fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.postgres\\5.1.0\\fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.snowflake\\5.1.0\\fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.sqlserver\\5.1.0\\fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner\\5.1.0\\fluentmigrator.runner.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.core\\5.1.0\\fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.db2\\5.1.0\\fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.firebird\\5.1.0\\fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.hana\\5.1.0\\fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.mysql\\5.1.0\\fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.oracle\\5.1.0\\fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.postgres\\5.1.0\\fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.redshift\\5.1.0\\fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.snowflake\\5.1.0\\fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlite\\5.1.0\\fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlserver\\5.1.0\\fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation\\11.5.1\\fluentvalidation.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.aspnetcore\\11.3.0\\fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.5.1\\fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis\\1.68.0\\google.apis.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.auth\\1.68.0\\google.apis.auth.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.core\\1.68.0\\google.apis.core.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp\\7.3.0.2\\harfbuzzsharp.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\7.3.0.2\\harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\7.3.0.2\\harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\7.3.0.2\\harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\ligershark.weboptimizer.core\\3.0.426\\ligershark.weboptimizer.core.3.0.426.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\linq2db\\5.4.1\\linq2db.5.4.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mailkit\\4.8.0\\mailkit.4.8.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.db\\4.1.0\\maxmind.db.4.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.geoip2\\5.2.0\\maxmind.geoip2.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\3.1.32\\microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\3.1.32\\microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\3.1.32\\microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\8.0.10\\microsoft.aspnetcore.jsonpatch.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\8.0.10\\microsoft.aspnetcore.mvc.newtonsoftjson.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\6.0.0\\microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\8.0.10\\microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.0\\microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.0\\microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.0\\microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.0\\microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.0\\microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.sqlserver\\8.0.10\\microsoft.extensions.caching.sqlserver.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.stackexchangeredis\\8.0.10\\microsoft.extensions.caching.stackexchangeredis.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.32\\microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.32\\microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.objectpool\\6.0.16\\microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client\\4.66.1\\microsoft.identity.client.4.66.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.65.0\\microsoft.identity.client.extensions.msal.4.65.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mimekit\\4.8.0\\mimekit.4.8.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mysqlconnector\\2.3.7\\mysqlconnector.2.3.7.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.coordination\\5.1.2\\nito.asyncex.coordination.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\nito.asyncex.tasks.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.collections.deque\\1.1.1\\nito.collections.deque.1.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.disposables\\2.2.1\\nito.disposables.2.2.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nuglify\\1.21.9\\nuglify.1.21.9.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\questpdf\\2024.10.1\\questpdf.2024.10.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\rbush\\3.2.0\\rbush.3.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\shimskiasharp\\2.0.0.1\\shimskiasharp.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\sixlabors.fonts\\1.0.0\\sixlabors.fonts.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp\\2.88.8\\skiasharp.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.harfbuzz\\2.88.8\\skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.linux.nodependencies\\2.88.8\\skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.8\\skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.8\\skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\stackexchange.redis\\2.7.27\\stackexchange.redis.2.7.27.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.custom\\2.0.0.1\\svg.custom.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.model\\2.0.0.1\\svg.model.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.skia\\2.0.0.1\\svg.skia.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.clientmodel\\1.1.0\\system.clientmodel.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.codedom\\7.0.0\\system.codedom.7.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.1\\system.configuration.configurationmanager.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.formats.asn1\\8.0.1\\system.formats.asn1.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.hashing\\6.0.0\\system.io.hashing.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.packaging\\8.0.0\\system.io.packaging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.pipelines\\5.0.1\\system.io.pipelines.5.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.dynamic.core\\1.4.6\\system.linq.dynamic.core.1.4.6.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.management\\7.0.2\\system.management.7.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory.data\\6.0.0\\system.memory.data.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.0\\system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.http\\8.0.0\\system.servicemodel.http.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.primitives\\8.0.0\\system.servicemodel.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.json\\6.0.10\\system.text.json.6.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnet.common\\2.17.0\\webmarkupmin.aspnet.common.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnetcore8\\2.17.0\\webmarkupmin.aspnetcore8.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.core\\2.17.0\\webmarkupmin.core.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.nuglify\\2.17.0\\webmarkupmin.nuglify.2.17.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AuctionPlugin/plugin.json b/Nop.Plugin.Misc.AuctionPlugin/plugin.json new file mode 100644 index 0000000..8e62166 --- /dev/null +++ b/Nop.Plugin.Misc.AuctionPlugin/plugin.json @@ -0,0 +1,13 @@ +{ + "Group": "Misc", + "FriendlyName": "Auction Plugin", + "SystemName": "AuctionPlugin", + "Version": "1.00", + "SupportedVersions": [ + "4.70" + ], + "Author": "Adam Gelencser", + "DisplayOrder": 1, + "FileName": "Nop.Plugin.Misc.AuctionPlugin.dll", + "Description": "There will be some day" +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs index a9c8f05..434fc72 100644 --- a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs +++ b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Nop.Plugin.Misc.SignalRApi")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+86fce3dae18cabbfc97ec2cfaec3be2f0defd348")] [assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Misc.SignalRApi")] [assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Misc.SignalRApi")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache index f8f711a..0e95023 100644 --- a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache +++ b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache @@ -1 +1 @@ -026479745d5c9bd84249d084e1e2e65424d4f228211d0fbc2a5e0ae6f7a8714b +9c93ea32c00b86eabeebe75fe91238e0bf4755bd06c94b08829f2042c4e34d78 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache index 21a20f8..c48f124 100644 Binary files a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache and b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache differ diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs index 3c0aec1..69a585e 100644 --- a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs +++ b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Nop.Plugin.Misc.TestPlugin")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+86fce3dae18cabbfc97ec2cfaec3be2f0defd348")] [assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Misc.TestPlugin")] [assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Misc.TestPlugin")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache index 8392241..ce11ca5 100644 --- a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache +++ b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache @@ -1 +1 @@ -ee4fc583b48e437829a1100f0a32759a1a547e904a3bf0e69cf2c5a9f8e5a442 +c0262c1be259346c05ef4362f9b3ba60bd318b121b1aeea6be2f532723bfd8c3 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache index 21a20f8..c48f124 100644 Binary files a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache and b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache differ