diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..7a17d44 Binary files /dev/null and b/.DS_Store differ diff --git a/src/.DS_Store b/src/.DS_Store new file mode 100644 index 0000000..0976c56 Binary files /dev/null and b/src/.DS_Store differ diff --git a/src/Plugins/.DS_Store b/src/Plugins/.DS_Store new file mode 100644 index 0000000..b70e726 Binary files /dev/null and b/src/Plugins/.DS_Store differ diff --git a/src/Plugins/Misc.SimpleLMS/.DS_Store b/src/Plugins/Misc.SimpleLMS/.DS_Store new file mode 100644 index 0000000..f67062f Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/.DS_Store differ diff --git a/src/Plugins/Misc.SimpleLMS/Areas/.DS_Store b/src/Plugins/Misc.SimpleLMS/Areas/.DS_Store new file mode 100644 index 0000000..ec6f2e9 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Areas/.DS_Store differ diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/Create.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/Create.cshtml new file mode 100755 index 0000000..86cf2d1 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/Create.cshtml @@ -0,0 +1,34 @@ +@model CourseModel +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models +@inject INopHtmlHelper NopHtml + +@{ + //page title + ViewBag.PageTitle = T("SimpleLMS.Add").Text + " " + T("SimpleLMS.Course"); + //active menu item (system name) + NopHtml.SetActiveMenuItemSystemName("SimpleLMS.Courses"); +} + + +
+
+

+ @T("SimpleLMS.Add") @T("SimpleLMS.Course") + + + @T("SimpleLMS.BackToList") + +

+
+ + +
+
+ @await Html.PartialAsync("_CreateOrUpdate.cshtml", Model) +
\ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/Edit.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/Edit.cshtml new file mode 100755 index 0000000..d112951 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/Edit.cshtml @@ -0,0 +1,51 @@ +@model CourseModel +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models +@inject INopHtmlHelper NopHtml + +@{ + //page title + ViewBag.PageTitle = T("SimpleLMS.Edit").Text + " " + T("SimpleLMS.Course"); + //active menu item (system name) + NopHtml.SetActiveMenuItemSystemName("SimpleLMS.Courses"); +} + +@**@ + +@**@ + + + +
+ +
+

+ @T("SimpleLMS.Edit") @T("SimpleLMS.Course") - @Model.Name + + + @T("SimpleLMS.BackToList") + +

+
+ + + + + + + @T("Admin.Common.Delete") + +
+
+ @await Html.PartialAsync("_CreateOrUpdate.cshtml", Model) +
+ + + + + diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/List.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/List.cshtml new file mode 100755 index 0000000..8af7e4f --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/List.cshtml @@ -0,0 +1,183 @@ +@model CourseSearchModel + + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + +@inject INopHtmlHelper NopHtml + +@{ + //page title + ViewBag.PageTitle = T("SimpleLMS.CourseList").Text; + //active menu item (system name) + NopHtml.SetActiveMenuItemSystemName("SimpleLMS.Courses"); +} + +@{ + const string hideSearchBlockAttributeName = "CourseListPage.HideSearchBlock"; + var hideSearchBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideSearchBlockAttributeName); +} + + +
+
+

+ @T("SimpleLMS.CourseList") +

+
+ + + @T("Admin.Common.AddNew") + + @**@ + @**@ +
+
+ +
+
+
+
+ + +
+
+ + + @await Html.PartialAsync("Table", new DataTablesModel + { + Name = "courses-grid", + UrlRead = new DataUrl("CourseList", "Course", null), + SearchButtonId = "search-courses", + Length = Model.PageSize, + LengthMenu = Model.AvailablePageSizes, + Filters = new List + { + new FilterParameter(nameof(Model.SearchCourseName)) + }, + ColumnCollection = new List + { + new ColumnProperty(nameof(CourseModel.Id)) + { + IsMasterCheckBox = true, + Render = new RenderCheckBox("checkbox_courses"), + ClassName = NopColumnClassDefaults.CenterAll, + Width = "50" + }, + + new ColumnProperty(nameof(CourseModel.Name)) + { + Title = T("SimpleLMS.Name").Text + }, + + new ColumnProperty(nameof(CourseModel.Instructor)) + { + Title = T("SimpleLMS.Instructor").Text + }, + + new ColumnProperty(nameof(CourseModel.Category)) + { + Title = T("SimpleLMS.Category").Text + }, + + new ColumnProperty(nameof(CourseModel.SectionsTotal)) + { + Title = T("SimpleLMS.Sections").Text + }, + + new ColumnProperty(nameof(CourseModel.EnrolledStudents)) + { + Title = T("SimpleLMS.EnrolledStudents").Text + }, + + new ColumnProperty(nameof(CourseModel.Status)) + { + Title = T("SimpleLMS.Status").Text + }, + + new ColumnProperty(nameof(CourseModel.Price)) + { + Title = T("SimpleLMS.Price").Text + }, + + + new ColumnProperty(nameof(CourseModel.Id)) + { + Title = T("Admin.Common.Edit").Text, + Width = "80", + ClassName = NopColumnClassDefaults.Button, + Render = new RenderButtonEdit(new DataUrl("Edit")) + } + } + }) + + + +
+
+
+
+
+
+ +
\ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Attachment.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Attachment.cshtml new file mode 100755 index 0000000..6d6d814 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Attachment.cshtml @@ -0,0 +1,29 @@ +@model AttachmentModel +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + +
+ +
+
@Html.DisplayText(Model.Name)
+
+
+
+

+
+
+ +
+ diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.CourseContent.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.CourseContent.cshtml new file mode 100755 index 0000000..541c3b2 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.CourseContent.cshtml @@ -0,0 +1,297 @@ +@model CourseModel +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + + + +
+ + @if (Model.Id > 0) + { +
+ + +
+
+ @* @await Html.PartialAsync("_CreateOrUpdate.Sections.cshtml", Model.Sections);*@ +
+ + + + + } + else + { + + } +
+ + + + diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Info.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Info.cshtml new file mode 100755 index 0000000..13c25df --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Info.cshtml @@ -0,0 +1,35 @@ +@model CourseModel +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + +
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
\ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lesson.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lesson.cshtml new file mode 100755 index 0000000..f243981 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lesson.cshtml @@ -0,0 +1,46 @@ +@model LessonModel +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} +
+
+ + @if (Model.LessonType == Nop.Plugin.Misc.SimpleLMS.Domains.LessonType.Video) + { + + } + else if (Model.LessonType == Nop.Plugin.Misc.SimpleLMS.Domains.LessonType.Text) + { + + } + + + @Model.DisplayOrder. Lesson: @Model.Name + + + + @if (Model.IsFreeLesson) + { + Free + } + + + +
+   + +
+
+
+ diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lesson_CreateOrEdit.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lesson_CreateOrEdit.cshtml new file mode 100755 index 0000000..23bcec3 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lesson_CreateOrEdit.cshtml @@ -0,0 +1,265 @@ +@model LessonModel +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + + +
+ +
+ + + + + + + +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ + +
+
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lessons.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lessons.cshtml new file mode 100755 index 0000000..6cf59d3 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Lessons.cshtml @@ -0,0 +1,17 @@ +@model IList +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + + +@foreach (var lesson in Model) +{ + @await Html.PartialAsync("_CreateOrUpdate.Lesson.cshtml", lesson) +} diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Section.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Section.cshtml new file mode 100755 index 0000000..e77de2a --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Section.cshtml @@ -0,0 +1,43 @@ +@model SectionModel +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + +
+
+ + @Model.DisplayOrder. @T("SimpleLMS.Section"): @Model.Title + @if (Model.IsFree) + { + Free + } +
+   +   +   + +
+
+
+ @if (Model.Lessons != null && Model.Lessons.Count > 0) + { + + @await Html.PartialAsync("_CreateOrUpdate.Lessons.cshtml", Model.Lessons) + } + else + { +
+ @T("SimpleLMS.NoLessonsAvailable") +
+ } +
+ +
+ diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Section_CreateOrEdit.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Section_CreateOrEdit.cshtml new file mode 100755 index 0000000..1c1ca1a --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Section_CreateOrEdit.cshtml @@ -0,0 +1,112 @@ +@model SectionModel +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + + +
+
+ + + + +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+
+ +
+
+
+ +
diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Sections.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Sections.cshtml new file mode 100755 index 0000000..12c767a --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Sections.cshtml @@ -0,0 +1,16 @@ +@model IList +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + +@foreach (var section in Model) +{ + @await Html.PartialAsync("_CreateOrUpdate.Section.cshtml", section) +} diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Sortable.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Sortable.cshtml new file mode 100755 index 0000000..07fb2b2 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Sortable.cshtml @@ -0,0 +1,154 @@ +@model SortableEntity +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores +@using Nop.Plugin.Misc.SimpleLMS.Domains; + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + + +
+ +
+ + + + +
    + @if (Model.SortRecords != null && Model.SortRecords.Count > 0) + { + for (int i = 0; i < Model.SortRecords.Count; i++) + { +
  • + + @Model.SortRecords[i].DisplayText + +
  • + } + } +
+ + +
+ +
+ @if (Model.SortRecords != null && Model.SortRecords.Count > 0) + { + + } + else if (@Model.SortRecordType == SortRecordType.Section) + { + + @T("SimpleLMS.NoSectionsAvailable") + + } + else if (@Model.SortRecordType == SortRecordType.Lesson) + { + + @T("SimpleLMS.NoLessonsAvailable") + + } +
+
+ +
+ + + +
\ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Video.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Video.cshtml new file mode 100755 index 0000000..405d7d1 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.Video.cshtml @@ -0,0 +1,29 @@ +@model VideoModel +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + +
+ +
+
@Model.Duration
+
+
+
+

+
+
+ +
+ diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.cshtml new file mode 100755 index 0000000..9d303f6 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Course/_CreateOrUpdate.cshtml @@ -0,0 +1,46 @@ +@model CourseModel + +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models +@inject INopHtmlHelper NopHtml + + +@{ + + const string hideInfoBlockAttributeName = "CoursePage.HideInfoBlock"; + + var hideInfoBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideInfoBlockAttributeName); + + const string hideCourseContentBlockAttributeName = "CoursePage.HideCourseContentBlock"; + + var hideCourseContentBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideCourseContentBlockAttributeName); + + NopHtml.AddScriptParts(ResourceLocation.Footer, "~/lib_npm/tinymce/tinymce.min.js", excludeFromBundle: true); + +} +
+ + + +
+
+
+ + + + + + @await Html.PartialAsync("_CreateOrUpdate.Info.cshtml", Model) + + + + @await Html.PartialAsync("_CreateOrUpdate.CourseContent.cshtml", Model) + + + + + +
+
+
diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/Configure.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/Configure.cshtml new file mode 100755 index 0000000..d9fc647 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/Configure.cshtml @@ -0,0 +1,66 @@ +@model ConfigurationModel +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models +@inject INopHtmlHelper NopHtml + +@{ + const string hideYouTubeBlockAttributeName = "Configuration.HideYouTubeBlock"; + + var hideYouTubeBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideYouTubeBlockAttributeName); + + const string hideVimeoBlockAttributeName = "Configuration.HideVimeoBlock"; + + var hideVimeoBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideVimeoBlockAttributeName); + + const string hideVdoCipherBlockAttributeName = "Configuration.HideVdoCipherBlock"; + + var hideVdoCipherBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideVdoCipherBlockAttributeName); + + + //active menu item (system name) + NopHtml.SetActiveMenuItemSystemName("SimpleLMS.configuration"); +} + +@**@ +@**@ +@**@ + +
+
+
+
+
+
+ @T("Plugins.SimpleLMS.Configuration.PageTitle") +
+
+ + @*@await Html.PartialAsync("_CreateOrUpdate.Youtube.cshtml", Model)*@ + + @await Html.PartialAsync("_CreateOrUpdate.Vimeo.cshtml", Model) + @*@await Html.PartialAsync("_CreateOrUpdate.VdoCipher.cshtml", Model)*@ + + + + + +
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+ + + + + diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.VdoCipher.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.VdoCipher.cshtml new file mode 100755 index 0000000..f798647 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.VdoCipher.cshtml @@ -0,0 +1,26 @@ + +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores +@model ConfigurationModel +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + + +@{ + +} + +
+ +
+
+ +
+
+ + +
+
+ +
\ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.Vimeo.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.Vimeo.cshtml new file mode 100755 index 0000000..fed349e --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.Vimeo.cshtml @@ -0,0 +1,44 @@ + +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores +@model ConfigurationModel +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models + + +@{ + +} + +
+ + + +
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
\ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.Youtube.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.Youtube.cshtml new file mode 100755 index 0000000..12bc020 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/Settings/_CreateOrUpdate.Youtube.cshtml @@ -0,0 +1,25 @@ +@model ConfigurationModel +@using Nop.Plugin.Misc.SimpleLMS.Areas.Admin.Models +@using Nop.Core.Domain.Catalog; +@using Nop.Services +@using Nop.Services.Stores + + + +@{ + +} + +
+ +
+
+ +
+
+ + +
+
+ +
\ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/_ViewImports.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/_ViewImports.cshtml new file mode 100755 index 0000000..629edd9 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/_ViewImports.cshtml @@ -0,0 +1,62 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage + +@inject IGenericAttributeService genericAttributeService +@inject IWorkContext workContext + +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using System.Text.Encodings.Web +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Microsoft.AspNetCore.Routing +@using Microsoft.Extensions.Primitives +@using Nop.Core +@using Nop.Core.Domain.Common +@using Nop.Core.Events +@using Nop.Core.Infrastructure +@using Nop.Services.Common +@using static Nop.Services.Common.NopLinksDefaults +@using Nop.Web.Areas.Admin.Models.Affiliates +@using Nop.Web.Areas.Admin.Models.Blogs +@using Nop.Web.Areas.Admin.Models.Catalog +@using Nop.Web.Areas.Admin.Models.Cms +@using Nop.Web.Areas.Admin.Models.Common +@using Nop.Web.Areas.Admin.Models.Customers +@using Nop.Web.Areas.Admin.Models.Directory +@using Nop.Web.Areas.Admin.Models.Discounts +@using Nop.Web.Areas.Admin.Models.ExternalAuthentication +@using Nop.Web.Areas.Admin.Models.Forums +@using Nop.Web.Areas.Admin.Models.Home +@using Nop.Web.Areas.Admin.Models.Localization +@using Nop.Web.Areas.Admin.Models.Logging +@using Nop.Web.Areas.Admin.Models.Messages +@using Nop.Web.Areas.Admin.Models.MultiFactorAuthentication +@using Nop.Web.Areas.Admin.Models.News +@using Nop.Web.Areas.Admin.Models.Orders +@using Nop.Web.Areas.Admin.Models.Payments +@using Nop.Web.Areas.Admin.Models.Plugins +@using Nop.Web.Areas.Admin.Models.Plugins.Marketplace +@using Nop.Web.Areas.Admin.Models.Polls +@using Nop.Web.Areas.Admin.Models.Reports +@using Nop.Web.Areas.Admin.Models.Security +@using Nop.Web.Areas.Admin.Models.Settings +@using Nop.Web.Areas.Admin.Models.Shipping +@using Nop.Web.Areas.Admin.Models.ShoppingCart +@using Nop.Web.Areas.Admin.Models.Stores +@using Nop.Web.Areas.Admin.Models.Tasks +@using Nop.Web.Areas.Admin.Models.Tax +@using Nop.Web.Areas.Admin.Models.Templates +@using Nop.Web.Areas.Admin.Models.Topics +@using Nop.Web.Areas.Admin.Models.Vendors +@using Nop.Web.Extensions +@using Nop.Web.Framework +@using Nop.Web.Framework.Menu +@using Nop.Web.Framework.Models +@using Nop.Web.Framework.Events +@using Nop.Web.Framework.Extensions +@using Nop.Web.Framework.Infrastructure +@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 \ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/_ViewStart.cshtml b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/_ViewStart.cshtml new file mode 100755 index 0000000..38cad8f --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Areas/Admin/Views/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "~/Areas/Admin/Views/Shared/_AdminLayout.cshtml"; +} \ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Content/.DS_Store b/src/Plugins/Misc.SimpleLMS/Content/.DS_Store new file mode 100644 index 0000000..24168df Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Content/.DS_Store differ diff --git a/src/Plugins/Misc.SimpleLMS/Content/Admin/css/simplelms.css b/src/Plugins/Misc.SimpleLMS/Content/Admin/css/simplelms.css new file mode 100755 index 0000000..421c689 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Content/Admin/css/simplelms.css @@ -0,0 +1,134 @@ + +.ajax-loading-block-window { + position: fixed; + top: 50%; + left: 50%; + z-index: 999; + width: 32px; + height: 32px; + margin: -16px 0 0 -16px; + background: url('../images/loading.gif') center no-repeat; +} + +.please-wait { + background: url('../images/ajax-loader-small.gif') no-repeat; + padding-left: 20px; + font-size: 14px; +} + +.ui-dialog { + max-width: 90%; + border: 1px solid #ddd; + box-shadow: 0 0 2px rgba(0,0,0,0.15); + overflow: hidden; + background-color: #fff; + /*override jQuery UI styles, do not delete doubled properties*/ + border-radius: 0; + padding: 0; + font: normal 14px Arial, Helvetica, sans-serif; +} + + .ui-dialog:before { + content: ""; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0,0,0,0.5); + } + +.ui-dialog-titlebar { + border-bottom: 1px solid #ddd; + overflow: hidden; + background-color: #eee; + padding: 10px 15px; + /*override jQuery UI styles, do not delete doubled properties*/ + border-width: 0 0 1px; + border-radius: 0; + background-image: none; + padding: 10px 15px !important; + font-weight: normal; + cursor: auto !important; +} + + .ui-dialog-titlebar > span { + float: left; + font-size: 18px; + color: #444; + /*override jQuery UI styles, do not delete doubled properties*/ + margin: 0 !important; + } + + .ui-dialog-titlebar button { + position: absolute; + top: 0; + right: 0; + width: 42px; + height: 42px; + border: none; + overflow: hidden; + background: url('../images/close.png') center no-repeat; + font-size: 0; + /*override jQuery UI styles, do not delete doubled properties*/ + top: 0 !important; + right: 0 !important; + width: 42px !important; + height: 42px !important; + margin: 0 !important; + border: none !important; + border-radius: 0; + background: url('../images/close.png') center no-repeat !important; + padding: 0 !important; + } + + .ui-dialog-titlebar button span { + display: none !important; + } + +.ui-dialog-content { + padding: 15px; + line-height: 20px; + /*override jQuery UI styles, do not delete doubled properties*/ + background-color: #fff !important; + padding: 15px 15px 20px 15px !important; + color: #777; +} + + .ui-dialog-content .page { + min-height: 0; + } + + .ui-dialog-content .page-title { + min-height: 0; + margin: 0 0 15px; + padding: 0px 10px 10px 10px; + text-align: center; + } + + .ui-dialog-content .page-title h1 { + font-size: 24px; + line-height: 30px; + } + + .ui-dialog-content .back-in-stock-subscription-page { + text-align: center; + } + + .ui-dialog-content .back-in-stock-subscription-page .tooltip { + margin-bottom: 10px; + } + + .ui-dialog-content .back-in-stock-subscription-page .button-1 { + border: none; + background-color: #4ab2f1; + padding: 10px 15px; + font-size: 15px; + color: #fff; + text-transform: uppercase; + } + + .ui-dialog-content .back-in-stock-subscription-page .button-1:hover, + .ui-dialog-content .back-in-stock-subscription-page .button-1:focus { + background-color: #248ece; + } diff --git a/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ajax-loader-small.gif b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ajax-loader-small.gif new file mode 100755 index 0000000..d0bce15 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ajax-loader-small.gif differ diff --git a/src/Plugins/Misc.SimpleLMS/Content/Admin/images/close.png b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/close.png new file mode 100755 index 0000000..ead9405 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/close.png differ diff --git a/src/Plugins/Misc.SimpleLMS/Content/Admin/images/loading.gif b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/loading.gif new file mode 100755 index 0000000..6fba776 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/loading.gif differ diff --git a/src/Plugins/Misc.SimpleLMS/Content/Admin/images/text.png b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/text.png new file mode 100755 index 0000000..95f705e Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/text.png differ diff --git a/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ui-bg_flat_75_ffffff_40x100.png b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ui-bg_flat_75_ffffff_40x100.png new file mode 100755 index 0000000..399d1ba Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ui-bg_flat_75_ffffff_40x100.png differ diff --git a/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ui-icons_222222_256x240.png b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ui-icons_222222_256x240.png new file mode 100755 index 0000000..c1cb117 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/ui-icons_222222_256x240.png differ diff --git a/src/Plugins/Misc.SimpleLMS/Content/Admin/images/video-player.png b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/video-player.png new file mode 100755 index 0000000..49e4f33 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Content/Admin/images/video-player.png differ diff --git a/src/Plugins/Misc.SimpleLMS/Content/Public/Productstyle.css b/src/Plugins/Misc.SimpleLMS/Content/Public/Productstyle.css new file mode 100755 index 0000000..d5c3012 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Content/Public/Productstyle.css @@ -0,0 +1,208 @@ +.hide-overflow-x { + overflow-x: hidden; +} + +@media (min-width: 992px) { + .cstm-nav .nav-link { + padding-right: 1rem !important; + padding-left: 1rem !important; + } +} + +.course-page .about-course h5 { + margin-bottom: 20px; +} + +.course-page .list-group.side-menu { + font-size: 0.85rem; + border-radius: 0; +} + +.course-page .side-menu .list-group-item { + padding: 0; + font-size: 0.85rem; +} + +.course-page .duration { + line-height: 1.4; + font-size: 12px; + color: #6c757d +} + +.side-menu a, .dropdown-btn { + text-decoration: none; + color: #222; + display: block; + border: none; + background: none; + width: 100%; + text-align: left; + cursor: pointer; + outline: none; + padding: 8px; + transition: 0.3s; +} + + .side-menu a, .dropdown-btn:focus { + outline: 0; + } + +.side-menu .list-group-item.side-menu-title { + padding: 10px; +} + +.side-menu a:hover, .dropdown-btn:hover { + color: #818181; +} + +.active { + color: #818181; +} + +.dropdown-container { + display: none; + padding: 8px 0; + transition: 0.3s ease-out; +} + + .dropdown-container a:hover, .dropdown-container a:hover.active { + background-color: #D1D7DC; + } + +.fa-caret-down { + float: right; + padding-right: 8px; +} + +[data-toggle="collapse"] .fa:before { + content: "\f0d7"; +} + +[data-toggle="collapse"].collapsed .fa:before { + content: "\f0da"; +} + +.vertical-align { + vertical-align: text-top; +} + +.course-lesson { +} + + .course-lesson:hover { + background: #eee; + } + +.course-lesson-active { + background: #d1d7dc; +} + + + +@keyframes growProgressBar { + 0%, 33% { + --pgPercentage: 0; + } + + 100% { + --pgPercentage: var(--value); + } +} + +@property --pgPercentage { + syntax: ''; + inherits: false; + initial-value: 0; +} + +div[role="progressbar"] { + --size: 3.5rem; + --fg: #369; + --bg: #def; + --pgPercentage: var(--value); + animation: growProgressBar 3s 1 forwards; + width: var(--size); + height: var(--size); + border-radius: 50%; + display: inline-grid; + place-items: center; + background: radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0), conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0); + font-family: Helvetica, Arial, sans-serif; + font-size: calc(var(--size) / 5); + color: var(--fg); +} + + div[role="progressbar"]::before { + counter-reset: percentage var(--value); + content: counter(percentage) '%'; + } + +#loader { + position: fixed; + width: 200px; + padding: 10px; + left: 45%; + top: 0; + display: none; + background-color: #fff; + z-index: 99999; + text-align: center; +} + +.video-wrapper { + width: 100%; +} + +.video-container { + overflow: hidden; + position: relative; + width: 100%; +} + + .video-container::after { + padding-top: 56.25%; + display: block; + content: ''; + } + + .video-container iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + } + +@media (max-width: 768px) { + #loaddiv { + height: 60vh; + overflow-y: scroll; + } + body { + overflow: hidden; + } +} + +@media (max-width: 648px) { + #loaddiv { + height: 50vh; + overflow-y: scroll; + } + + body { + overflow: hidden; + } +} + +@media (max-width: 480px) { + #loaddiv { + height: 40vh; + overflow-y: scroll; + } + + body { + overflow: hidden; + } +} + + diff --git a/src/Plugins/Misc.SimpleLMS/Infrastructure/ViewLocationExpander.cs b/src/Plugins/Misc.SimpleLMS/Infrastructure/ViewLocationExpander.cs new file mode 100755 index 0000000..e2b7bb5 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Infrastructure/ViewLocationExpander.cs @@ -0,0 +1,36 @@ +using Microsoft.AspNetCore.Mvc.Razor; +using System.Collections.Generic; +using System.Linq; + +namespace Nop.Plugin.Misc.SimpleLMS.Infrastructure +{ + public class ViewLocationExpander : IViewLocationExpander + { + public void PopulateValues(ViewLocationExpanderContext context) + { + } + + public IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable viewLocations) + { + if (context.AreaName == "Admin") + { + viewLocations = new[] { $"/Plugins/Misc.SimpleLMS/Areas/Admin/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + //else if (context.AreaName == null && context.ViewName == "Components/CustomerNavigation/Default") + //{ + // viewLocations = new[] { $"/Plugins/Misc.SimpleLMS/Views/Shared/Components/CustomCustomerNavigation/Default.cshtml" }.Concat(viewLocations); + //} + else + { + viewLocations = new[] { $"/Plugins/Misc.SimpleLMS/Views/{context.ControllerName}/{context.ViewName}.cshtml" + }.Concat(viewLocations); + } + + return viewLocations; + } + } +} + + + + diff --git a/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.deps.json b/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.deps.json new file mode 100644 index 0000000..46ca7e6 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.deps.json @@ -0,0 +1,9333 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NET", + "NET6_0", + "NETCOREAPP", + "NET5_0_OR_GREATER", + "NET6_0_OR_GREATER", + "NETCOREAPP1_0_OR_GREATER", + "NETCOREAPP1_1_OR_GREATER", + "NETCOREAPP2_0_OR_GREATER", + "NETCOREAPP2_1_OR_GREATER", + "NETCOREAPP2_2_OR_GREATER", + "NETCOREAPP3_0_OR_GREATER", + "NETCOREAPP3_1_OR_GREATER" + ], + "languageVersion": "10.0", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": false, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Nop.Plugin.Misc.SimpleLMS/1.0.0": { + "dependencies": { + "FluentValidation.AspNetCore": "10.3.6", + "Microsoft.EntityFrameworkCore": "6.0.6", + "Nop.Core": "4.5.0", + "Nop.Data": "4.5.0", + "Nop.Web": "4.5.0", + "Microsoft.AspNetCore.Antiforgery": "6.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "6.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "6.0.0.0", + "Microsoft.AspNetCore.Authentication.Core": "6.0.0.0", + "Microsoft.AspNetCore.Authentication": "6.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "6.0.0.0", + "Microsoft.AspNetCore.Authorization": "6.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "6.0.0.0", + "Microsoft.AspNetCore.Components.Authorization": "6.0.0.0", + "Microsoft.AspNetCore.Components": "6.0.0.0", + "Microsoft.AspNetCore.Components.Forms": "6.0.0.0", + "Microsoft.AspNetCore.Components.Server": "6.0.0.0", + "Microsoft.AspNetCore.Components.Web": "6.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.0.0", + "Microsoft.AspNetCore.CookiePolicy": "6.0.0.0", + "Microsoft.AspNetCore.Cors": "6.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal.Reference": "6.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "6.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions.Reference": "6.0.0.0", + "Microsoft.AspNetCore.DataProtection.Reference": "6.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "6.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "6.0.0.0", + "Microsoft.AspNetCore.Diagnostics": "6.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "6.0.0.0", + "Microsoft.AspNetCore": "6.0.0.0", + "Microsoft.AspNetCore.HostFiltering": "6.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions.Reference": "6.0.0.0", + "Microsoft.AspNetCore.Hosting": "6.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference": "6.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "6.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions.Reference": "6.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "6.0.0.0", + "Microsoft.AspNetCore.Http.Connections": "6.0.0.0", + "Microsoft.AspNetCore.Http": "6.0.0.0", + "Microsoft.AspNetCore.Http.Extensions": "6.0.0.0", + "Microsoft.AspNetCore.Http.Features.Reference": "6.0.0.0", + "Microsoft.AspNetCore.Http.Results": "6.0.0.0", + "Microsoft.AspNetCore.HttpLogging": "6.0.0.0", + "Microsoft.AspNetCore.HttpOverrides": "6.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "6.0.0.0", + "Microsoft.AspNetCore.Identity": "6.0.0.0", + "Microsoft.AspNetCore.Localization": "6.0.0.0", + "Microsoft.AspNetCore.Localization.Routing": "6.0.0.0", + "Microsoft.AspNetCore.Metadata": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.Core": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "6.0.0.0", + "Microsoft.AspNetCore.Mvc": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "6.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "6.0.0.0", + "Microsoft.AspNetCore.Razor": "6.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "6.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "6.0.0.0", + "Microsoft.AspNetCore.ResponseCaching": "6.0.0.0", + "Microsoft.AspNetCore.ResponseCompression": "6.0.0.0", + "Microsoft.AspNetCore.Rewrite": "6.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "6.0.0.0", + "Microsoft.AspNetCore.Routing": "6.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "6.0.0.0", + "Microsoft.AspNetCore.Server.IIS": "6.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "6.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "6.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "6.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "6.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "6.0.0.0", + "Microsoft.AspNetCore.Session": "6.0.0.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.0.0", + "Microsoft.AspNetCore.SignalR.Core": "6.0.0.0", + "Microsoft.AspNetCore.SignalR": "6.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "6.0.0.0", + "Microsoft.AspNetCore.StaticFiles": "6.0.0.0", + "Microsoft.AspNetCore.WebSockets": "6.0.0.0", + "Microsoft.AspNetCore.WebUtilities": "6.0.0.0", + "Microsoft.CSharp.Reference": "6.0.0.0", + "Microsoft.Extensions.Caching.Abstractions.Reference": "6.0.0.0", + "Microsoft.Extensions.Caching.Memory.Reference": "6.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions.Reference": "6.0.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "6.0.0.0", + "Microsoft.Extensions.Configuration": "6.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "6.0.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "6.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0.0", + "Microsoft.Extensions.Configuration.Xml": "6.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "6.0.0.0", + "Microsoft.Extensions.DependencyInjection.Reference": "6.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "6.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "6.0.0.0", + "Microsoft.Extensions.Features": "6.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions.Reference": "6.0.0.0", + "Microsoft.Extensions.FileProviders.Composite": "6.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "6.0.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions.Reference": "6.0.0.0", + "Microsoft.Extensions.Hosting": "6.0.0.0", + "Microsoft.Extensions.Http": "6.0.0.0", + "Microsoft.Extensions.Identity.Core": "6.0.0.0", + "Microsoft.Extensions.Identity.Stores": "6.0.0.0", + "Microsoft.Extensions.Localization.Abstractions": "6.0.0.0", + "Microsoft.Extensions.Localization": "6.0.0.0", + "Microsoft.Extensions.Logging.Abstractions.Reference": "6.0.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0.0", + "Microsoft.Extensions.Logging.Reference": "6.0.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0.0", + "Microsoft.Extensions.Logging.EventSource": "6.0.0.0", + "Microsoft.Extensions.Logging.TraceSource": "6.0.0.0", + "Microsoft.Extensions.ObjectPool.Reference": "6.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "6.0.0.0", + "Microsoft.Extensions.Options.Reference": "6.0.0.0", + "Microsoft.Extensions.Primitives.Reference": "6.0.0.0", + "Microsoft.Extensions.WebEncoders": "6.0.0.0", + "Microsoft.JSInterop": "6.0.0.0", + "Microsoft.Net.Http.Headers": "6.0.0.0", + "Microsoft.VisualBasic.Core": "11.0.0.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives.Reference": "6.0.0.0", + "Microsoft.Win32.Registry.Reference": "6.0.0.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "Nop.Core.Reference": "4.5.0.0", + "Nop.Data.Reference": "4.5.0.0", + "Nop.Web.Reference": "4.5.0.0", + "System.AppContext.Reference": "6.0.0.0", + "System.Buffers.Reference": "6.0.0.0", + "System.Collections.Concurrent.Reference": "6.0.0.0", + "System.Collections.Reference": "6.0.0.0", + "System.Collections.Immutable.Reference": "6.0.0.0", + "System.Collections.NonGeneric.Reference": "6.0.0.0", + "System.Collections.Specialized.Reference": "6.0.0.0", + "System.ComponentModel.Annotations.Reference": "6.0.0.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel.Reference": "6.0.0.0", + "System.ComponentModel.EventBasedAsync": "6.0.0.0", + "System.ComponentModel.Primitives.Reference": "6.0.0.0", + "System.ComponentModel.TypeConverter.Reference": "6.0.0.0", + "System.Configuration": "4.0.0.0", + "System.Console.Reference": "6.0.0.0", + "System.Core": "4.0.0.0", + "System.Data.Common.Reference": "6.0.0.0", + "System.Data.DataSetExtensions": "4.0.0.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "6.0.0.0", + "System.Diagnostics.Debug.Reference": "6.0.0.0", + "System.Diagnostics.DiagnosticSource.Reference": "6.0.0.0", + "System.Diagnostics.EventLog": "6.0.0.0", + "System.Diagnostics.FileVersionInfo": "6.0.0.0", + "System.Diagnostics.Process.Reference": "6.0.0.0", + "System.Diagnostics.StackTrace.Reference": "6.0.0.0", + "System.Diagnostics.TextWriterTraceListener": "6.0.0.0", + "System.Diagnostics.Tools.Reference": "6.0.0.0", + "System.Diagnostics.TraceSource": "6.0.0.0", + "System.Diagnostics.Tracing.Reference": "6.0.0.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "6.0.0.0", + "System.Dynamic.Runtime.Reference": "6.0.0.0", + "System.Formats.Asn1.Reference": "6.0.0.0", + "System.Globalization.Calendars.Reference": "6.0.0.0", + "System.Globalization.Reference": "6.0.0.0", + "System.Globalization.Extensions.Reference": "6.0.0.0", + "System.IO.Compression.Brotli": "6.0.0.0", + "System.IO.Compression.Reference": "6.0.0.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile.Reference": "6.0.0.0", + "System.IO.Reference": "6.0.0.0", + "System.IO.FileSystem.AccessControl.Reference": "6.0.0.0", + "System.IO.FileSystem.Reference": "6.0.0.0", + "System.IO.FileSystem.DriveInfo": "6.0.0.0", + "System.IO.FileSystem.Primitives.Reference": "6.0.0.0", + "System.IO.FileSystem.Watcher": "6.0.0.0", + "System.IO.IsolatedStorage": "6.0.0.0", + "System.IO.MemoryMappedFiles": "6.0.0.0", + "System.IO.Pipelines.Reference": "6.0.0.0", + "System.IO.Pipes.AccessControl": "6.0.0.0", + "System.IO.Pipes": "6.0.0.0", + "System.IO.UnmanagedMemoryStream": "6.0.0.0", + "System.Linq.Reference": "6.0.0.0", + "System.Linq.Expressions.Reference": "6.0.0.0", + "System.Linq.Parallel": "6.0.0.0", + "System.Linq.Queryable": "6.0.0.0", + "System.Memory.Reference": "6.0.0.0", + "System.Net": "4.0.0.0", + "System.Net.Http.Reference": "6.0.0.0", + "System.Net.Http.Json": "6.0.0.0", + "System.Net.HttpListener": "6.0.0.0", + "System.Net.Mail": "6.0.0.0", + "System.Net.NameResolution.Reference": "6.0.0.0", + "System.Net.NetworkInformation": "6.0.0.0", + "System.Net.Ping": "6.0.0.0", + "System.Net.Primitives.Reference": "6.0.0.0", + "System.Net.Requests.Reference": "6.0.0.0", + "System.Net.Security": "6.0.0.0", + "System.Net.ServicePoint": "6.0.0.0", + "System.Net.Sockets.Reference": "6.0.0.0", + "System.Net.WebClient": "6.0.0.0", + "System.Net.WebHeaderCollection.Reference": "6.0.0.0", + "System.Net.WebProxy": "6.0.0.0", + "System.Net.WebSockets.Client": "6.0.0.0", + "System.Net.WebSockets": "6.0.0.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors.Reference": "6.0.0.0", + "System.ObjectModel.Reference": "6.0.0.0", + "System.Reflection.DispatchProxy.Reference": "6.0.0.0", + "System.Reflection.Reference": "6.0.0.0", + "System.Reflection.Emit.Reference": "6.0.0.0", + "System.Reflection.Emit.ILGeneration.Reference": "6.0.0.0", + "System.Reflection.Emit.Lightweight.Reference": "6.0.0.0", + "System.Reflection.Extensions.Reference": "6.0.0.0", + "System.Reflection.Metadata.Reference": "6.0.0.0", + "System.Reflection.Primitives.Reference": "6.0.0.0", + "System.Reflection.TypeExtensions.Reference": "6.0.0.0", + "System.Resources.Reader": "6.0.0.0", + "System.Resources.ResourceManager.Reference": "6.0.0.0", + "System.Resources.Writer": "6.0.0.0", + "System.Runtime.CompilerServices.Unsafe.Reference": "6.0.0.0", + "System.Runtime.CompilerServices.VisualC": "6.0.0.0", + "System.Runtime.Reference": "6.0.0.0", + "System.Runtime.Extensions.Reference": "6.0.0.0", + "System.Runtime.Handles.Reference": "6.0.0.0", + "System.Runtime.InteropServices.Reference": "6.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation.Reference": "6.0.0.0", + "System.Runtime.Intrinsics": "6.0.0.0", + "System.Runtime.Loader.Reference": "6.0.0.0", + "System.Runtime.Numerics.Reference": "6.0.0.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters.Reference": "6.0.0.0", + "System.Runtime.Serialization.Json.Reference": "6.0.0.0", + "System.Runtime.Serialization.Primitives.Reference": "6.0.0.0", + "System.Runtime.Serialization.Xml": "6.0.0.0", + "System.Security.AccessControl.Reference": "6.0.0.0", + "System.Security.Claims": "6.0.0.0", + "System.Security.Cryptography.Algorithms.Reference": "6.0.0.0", + "System.Security.Cryptography.Cng.Reference": "6.0.0.0", + "System.Security.Cryptography.Csp.Reference": "6.0.0.0", + "System.Security.Cryptography.Encoding.Reference": "6.0.0.0", + "System.Security.Cryptography.OpenSsl.Reference": "6.0.0.0", + "System.Security.Cryptography.Primitives.Reference": "6.0.0.0", + "System.Security.Cryptography.X509Certificates.Reference": "6.0.0.0", + "System.Security.Cryptography.Xml.Reference": "6.0.0.0", + "System.Security": "4.0.0.0", + "System.Security.Principal": "6.0.0.0", + "System.Security.Principal.Windows.Reference": "6.0.0.0", + "System.Security.SecureString.Reference": "6.0.0.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages.Reference": "6.0.0.0", + "System.Text.Encoding.Reference": "6.0.0.0", + "System.Text.Encoding.Extensions.Reference": "6.0.0.0", + "System.Text.Encodings.Web.Reference": "6.0.0.0", + "System.Text.Json.Reference": "6.0.0.0", + "System.Text.RegularExpressions.Reference": "6.0.0.0", + "System.Threading.Channels": "6.0.0.0", + "System.Threading.Reference": "6.0.0.0", + "System.Threading.Overlapped": "6.0.0.0", + "System.Threading.Tasks.Dataflow": "6.0.0.0", + "System.Threading.Tasks.Reference": "6.0.0.0", + "System.Threading.Tasks.Extensions.Reference": "6.0.0.0", + "System.Threading.Tasks.Parallel.Reference": "6.0.0.0", + "System.Threading.Thread.Reference": "6.0.0.0", + "System.Threading.ThreadPool.Reference": "6.0.0.0", + "System.Threading.Timer.Reference": "6.0.0.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "6.0.0.0", + "System.ValueTuple.Reference": "4.0.3.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "6.0.0.0", + "System.Windows": "4.0.0.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter.Reference": "6.0.0.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument.Reference": "6.0.0.0", + "System.Xml.XmlDocument.Reference": "6.0.0.0", + "System.Xml.XmlSerializer.Reference": "6.0.0.0", + "System.Xml.XPath": "6.0.0.0", + "System.Xml.XPath.XDocument": "6.0.0.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "Nop.Plugin.Misc.SimpleLMS.dll": {} + }, + "compile": { + "Nop.Plugin.Misc.SimpleLMS.dll": {} + } + }, + "AdvancedStringBuilder/0.1.0": { + "runtime": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "assemblyVersion": "0.1.0.0", + "fileVersion": "0.1.0.0" + } + }, + "compile": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": {} + } + }, + "Autofac/6.0.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + }, + "compile": { + "lib/netstandard2.1/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + }, + "compile": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "AutoMapper/10.1.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.Reflection.Emit": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/AutoMapper.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.1.1.0" + } + }, + "compile": { + "lib/netstandard2.0/AutoMapper.dll": {} + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": { + "dependencies": { + "AutoMapper": "10.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.1.1.0" + } + }, + "compile": { + "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "Azure.Core/1.20.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net5.0/Azure.Core.dll": { + "assemblyVersion": "1.20.0.0", + "fileVersion": "1.2000.21.50405" + } + }, + "compile": { + "lib/net5.0/Azure.Core.dll": {} + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.2.1": { + "dependencies": { + "Azure.Core": "1.20.0", + "Azure.Storage.Blobs": "12.10.0", + "Microsoft.AspNetCore.DataProtection": "2.1.0" + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "assemblyVersion": "1.2.1.0", + "fileVersion": "1.200.121.26401" + } + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": {} + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.1.0": { + "dependencies": { + "Azure.Core": "1.20.0", + "Azure.Security.KeyVault.Keys": "4.2.0", + "Microsoft.AspNetCore.DataProtection": "2.1.0" + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.100.21.45201" + } + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": {} + } + }, + "Azure.Identity/1.5.0": { + "dependencies": { + "Azure.Core": "1.20.0", + "Microsoft.Identity.Client": "4.30.1", + "Microsoft.Identity.Client.Extensions.Msal": "2.18.4", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Text.Json": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.5.0.0", + "fileVersion": "1.500.21.51401" + } + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": {} + } + }, + "Azure.Security.KeyVault.Keys/4.2.0": { + "dependencies": { + "Azure.Core": "1.20.0", + "System.Memory": "4.5.4", + "System.Text.Json": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "assemblyVersion": "4.2.0.0", + "fileVersion": "4.200.21.31503" + } + }, + "compile": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": {} + } + }, + "Azure.Storage.Blobs/12.10.0": { + "dependencies": { + "Azure.Storage.Common": "12.9.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Azure.Storage.Blobs.dll": { + "assemblyVersion": "12.10.0.0", + "fileVersion": "12.1000.21.45803" + } + }, + "compile": { + "lib/netstandard2.0/Azure.Storage.Blobs.dll": {} + } + }, + "Azure.Storage.Common/12.9.0": { + "dependencies": { + "Azure.Core": "1.20.0" + }, + "runtime": { + "lib/netstandard2.0/Azure.Storage.Common.dll": { + "assemblyVersion": "12.9.0.0", + "fileVersion": "12.900.21.45803" + } + }, + "compile": { + "lib/netstandard2.0/Azure.Storage.Common.dll": {} + } + }, + "BouncyCastle.NetCore/1.8.5": {}, + "ClosedXML/0.95.4": { + "dependencies": { + "DocumentFormat.OpenXml": "2.7.2", + "ExcelNumberFormat": "1.0.10", + "Microsoft.CSharp": "4.7.0", + "System.Drawing.Common": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/ClosedXML.dll": { + "assemblyVersion": "0.95.4.0", + "fileVersion": "0.95.4.0" + } + }, + "compile": { + "lib/netstandard2.0/ClosedXML.dll": {} + } + }, + "DocumentFormat.OpenXml/2.7.2": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Packaging": "4.0.0" + }, + "runtime": { + "lib/netstandard1.3/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "2.7.2.0", + "fileVersion": "2.7.2.0" + } + }, + "compile": { + "lib/netstandard1.3/DocumentFormat.OpenXml.dll": {} + } + }, + "ExcelNumberFormat/1.0.10": { + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "assemblyVersion": "1.0.10.0", + "fileVersion": "1.0.10.0" + } + }, + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": {} + } + }, + "FluentMigrator/3.3.1": { + "dependencies": { + "FluentMigrator.Abstractions": "3.3.1", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.dll": {} + } + }, + "FluentMigrator.Abstractions/3.3.1": { + "dependencies": { + "System.ComponentModel.Annotations": "4.7.0", + "System.ValueTuple": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "resources": { + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll": { + "locale": "de-DE" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": {} + } + }, + "FluentMigrator.Extensions.Oracle/3.3.1": { + "dependencies": { + "FluentMigrator.Abstractions": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": {} + } + }, + "FluentMigrator.Extensions.Postgres/3.3.1": { + "dependencies": { + "FluentMigrator.Abstractions": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": {} + } + }, + "FluentMigrator.Extensions.SqlAnywhere/3.3.1": { + "dependencies": { + "FluentMigrator.Abstractions": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlAnywhere.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlAnywhere.dll": {} + } + }, + "FluentMigrator.Extensions.SqlServer/3.3.1": { + "dependencies": { + "FluentMigrator.Abstractions": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": {} + } + }, + "FluentMigrator.Runner/3.3.1": { + "dependencies": { + "FluentMigrator": "3.3.1", + "FluentMigrator.Runner.Core": "3.3.1", + "FluentMigrator.Runner.Db2": "3.3.1", + "FluentMigrator.Runner.Firebird": "3.3.1", + "FluentMigrator.Runner.Hana": "3.3.1", + "FluentMigrator.Runner.MySql": "3.3.1", + "FluentMigrator.Runner.Oracle": "3.3.1", + "FluentMigrator.Runner.Postgres": "3.3.1", + "FluentMigrator.Runner.Redshift": "3.3.1", + "FluentMigrator.Runner.SQLite": "3.3.1", + "FluentMigrator.Runner.SqlAnywhere": "3.3.1", + "FluentMigrator.Runner.SqlServer": "3.3.1", + "FluentMigrator.Runner.SqlServerCe": "3.3.1", + "Microsoft.Extensions.Configuration.Abstractions": "2.1.0", + "Microsoft.Extensions.Logging": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": {} + } + }, + "FluentMigrator.Runner.Core/3.3.1": { + "dependencies": { + "FluentMigrator.Abstractions": "3.3.1", + "Microsoft.Extensions.Configuration.Abstractions": "2.1.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": {} + } + }, + "FluentMigrator.Runner.Db2/3.3.1": { + "dependencies": { + "FluentMigrator.Runner.Core": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": {} + } + }, + "FluentMigrator.Runner.Firebird/3.3.1": { + "dependencies": { + "FluentMigrator.Runner.Core": "3.3.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": {} + } + }, + "FluentMigrator.Runner.Hana/3.3.1": { + "dependencies": { + "FluentMigrator.Runner.Core": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": {} + } + }, + "FluentMigrator.Runner.MySql/3.3.1": { + "dependencies": { + "FluentMigrator.Runner.Core": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": {} + } + }, + "FluentMigrator.Runner.Oracle/3.3.1": { + "dependencies": { + "FluentMigrator.Extensions.Oracle": "3.3.1", + "FluentMigrator.Runner.Core": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": {} + } + }, + "FluentMigrator.Runner.Postgres/3.3.1": { + "dependencies": { + "FluentMigrator.Extensions.Postgres": "3.3.1", + "FluentMigrator.Runner.Core": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": {} + } + }, + "FluentMigrator.Runner.Redshift/3.3.1": { + "dependencies": { + "FluentMigrator.Runner.Core": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": {} + } + }, + "FluentMigrator.Runner.SqlAnywhere/3.3.1": { + "dependencies": { + "FluentMigrator.Extensions.SqlAnywhere": "3.3.1", + "FluentMigrator.Runner.Core": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlAnywhere.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlAnywhere.dll": {} + } + }, + "FluentMigrator.Runner.SQLite/3.3.1": { + "dependencies": { + "FluentMigrator.Runner.Core": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": {} + } + }, + "FluentMigrator.Runner.SqlServer/3.3.1": { + "dependencies": { + "FluentMigrator.Extensions.SqlServer": "3.3.1", + "FluentMigrator.Runner.Core": "3.3.1", + "Microsoft.Data.SqlClient": "4.0.0" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": {} + } + }, + "FluentMigrator.Runner.SqlServerCe/3.3.1": { + "dependencies": { + "FluentMigrator.Runner.SqlServer": "3.3.1", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServerCe.dll": { + "assemblyVersion": "3.3.1.0", + "fileVersion": "3.3.1.0" + }, + "lib/netstandard2.0/System.Data.SqlServerCe.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.8876.1" + } + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServerCe.dll": {}, + "lib/netstandard2.0/System.Data.SqlServerCe.dll": {} + } + }, + "FluentValidation/10.3.6": { + "runtime": { + "lib/net6.0/FluentValidation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "10.3.6.0" + } + }, + "compile": { + "lib/net6.0/FluentValidation.dll": {} + } + }, + "FluentValidation.AspNetCore/10.3.6": { + "dependencies": { + "FluentValidation": "10.3.6", + "FluentValidation.DependencyInjectionExtensions": "10.3.6" + }, + "runtime": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "10.3.6.0" + } + }, + "compile": { + "lib/net6.0/FluentValidation.AspNetCore.dll": {} + } + }, + "FluentValidation.DependencyInjectionExtensions/10.3.6": { + "dependencies": { + "FluentValidation": "10.3.6", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "10.3.6.0" + } + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} + } + }, + "Google.Protobuf/3.14.0": { + "dependencies": { + "System.Memory": "4.5.4", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Google.Protobuf.dll": { + "assemblyVersion": "3.14.0.0", + "fileVersion": "3.14.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Google.Protobuf.dll": {} + } + }, + "Humanizer/2.13.14": { + "dependencies": { + "Humanizer.Core.af": "2.13.14", + "Humanizer.Core.ar": "2.13.14", + "Humanizer.Core.az": "2.13.14", + "Humanizer.Core.bg": "2.13.14", + "Humanizer.Core.bn-BD": "2.13.14", + "Humanizer.Core.cs": "2.13.14", + "Humanizer.Core.da": "2.13.14", + "Humanizer.Core.de": "2.13.14", + "Humanizer.Core.el": "2.13.14", + "Humanizer.Core.es": "2.13.14", + "Humanizer.Core.fa": "2.13.14", + "Humanizer.Core.fi-FI": "2.13.14", + "Humanizer.Core.fr": "2.13.14", + "Humanizer.Core.fr-BE": "2.13.14", + "Humanizer.Core.he": "2.13.14", + "Humanizer.Core.hr": "2.13.14", + "Humanizer.Core.hu": "2.13.14", + "Humanizer.Core.hy": "2.13.14", + "Humanizer.Core.id": "2.13.14", + "Humanizer.Core.is": "2.13.14", + "Humanizer.Core.it": "2.13.14", + "Humanizer.Core.ja": "2.13.14", + "Humanizer.Core.ko-KR": "2.13.14", + "Humanizer.Core.ku": "2.13.14", + "Humanizer.Core.lv": "2.13.14", + "Humanizer.Core.ms-MY": "2.13.14", + "Humanizer.Core.mt": "2.13.14", + "Humanizer.Core.nb": "2.13.14", + "Humanizer.Core.nb-NO": "2.13.14", + "Humanizer.Core.nl": "2.13.14", + "Humanizer.Core.pl": "2.13.14", + "Humanizer.Core.pt": "2.13.14", + "Humanizer.Core.ro": "2.13.14", + "Humanizer.Core.ru": "2.13.14", + "Humanizer.Core.sk": "2.13.14", + "Humanizer.Core.sl": "2.13.14", + "Humanizer.Core.sr": "2.13.14", + "Humanizer.Core.sr-Latn": "2.13.14", + "Humanizer.Core.sv": "2.13.14", + "Humanizer.Core.th-TH": "2.13.14", + "Humanizer.Core.tr": "2.13.14", + "Humanizer.Core.uk": "2.13.14", + "Humanizer.Core.uz-Cyrl-UZ": "2.13.14", + "Humanizer.Core.uz-Latn-UZ": "2.13.14", + "Humanizer.Core.vi": "2.13.14", + "Humanizer.Core.zh-CN": "2.13.14", + "Humanizer.Core.zh-Hans": "2.13.14", + "Humanizer.Core.zh-Hant": "2.13.14" + } + }, + "Humanizer.Core/2.13.14": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.13.0.0", + "fileVersion": "2.13.14.5656" + } + }, + "compile": { + "lib/net6.0/Humanizer.dll": {} + } + }, + "Humanizer.Core.af/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.13.14": { + "dependencies": { + "Humanizer.Core": "2.13.14" + }, + "resources": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "iTextSharp.LGPLv2.Core/1.7.0": { + "dependencies": { + "Portable.BouncyCastle": "1.8.10", + "System.Collections.NonGeneric": "4.3.0", + "System.Drawing.Common": "5.0.0", + "System.Net.Requests": "4.3.0", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Runtime.Loader": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.1", + "System.Text.Encoding.CodePages": "5.0.0", + "System.Xml.ReaderWriter": "4.3.1", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": { + "assemblyVersion": "1.7.0.0", + "fileVersion": "1.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {} + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + }, + "compile": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + } + }, + "LigerShark.WebOptimizer.Core/3.0.344": { + "dependencies": { + "NUglify": "1.16.1", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/WebOptimizer.Core.dll": { + "assemblyVersion": "3.0.344.0", + "fileVersion": "3.0.344.0" + } + }, + "compile": { + "lib/netcoreapp3.0/WebOptimizer.Core.dll": {} + } + }, + "linq2db/3.6.0": { + "dependencies": { + "System.ComponentModel.Annotations": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/linq2db.dll": { + "assemblyVersion": "3.6.0.0", + "fileVersion": "3.6.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/linq2db.dll": {} + } + }, + "MailKit/2.15.0": { + "dependencies": { + "MimeKit": "2.15.0" + }, + "runtime": { + "lib/net50/MailKit.dll": { + "assemblyVersion": "2.15.0.0", + "fileVersion": "2.15.0.0" + } + }, + "compile": { + "lib/net50/MailKit.dll": {} + } + }, + "MaxMind.Db/3.0.0": { + "runtime": { + "lib/net5.0/MaxMind.Db.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + }, + "compile": { + "lib/net5.0/MaxMind.Db.dll": {} + } + }, + "MaxMind.GeoIP2/4.1.0": { + "dependencies": { + "MaxMind.Db": "3.0.0", + "Microsoft.CSharp": "4.7.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net5.0/MaxMind.GeoIP2.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + }, + "compile": { + "lib/net5.0/MaxMind.GeoIP2.dll": {} + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/2.1.0": {}, + "Microsoft.AspNetCore.DataProtection/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "2.1.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.0": {}, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.1.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.1.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.1.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.1.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Features/2.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.1": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.1", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.1", + "Microsoft.CodeAnalysis.Razor": "6.0.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.1", + "Microsoft.CodeAnalysis.Razor": "6.0.1", + "Microsoft.Extensions.DependencyModel": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.1": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Azure.Services.AppAuthentication/1.6.2": { + "dependencies": { + "Microsoft.IdentityModel.Clients.ActiveDirectory": "5.2.9", + "System.Diagnostics.Process": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Azure.Services.AppAuthentication.dll": { + "assemblyVersion": "1.6.2.0", + "fileVersion": "1.6.2.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Azure.Services.AppAuthentication.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "6.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "5.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.21.51404" + } + }, + "resources": { + "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" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.21.51404" + } + }, + "resources": { + "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" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.1", + "Microsoft.CodeAnalysis.CSharp": "4.0.0", + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/4.0.0": { + "dependencies": { + "Azure.Identity": "1.5.0", + "Microsoft.Data.SqlClient.SNI.runtime": "4.0.0", + "Microsoft.Identity.Client": "4.30.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime.Caching": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/4.0.0": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Microsoft.EntityFrameworkCore/6.0.6": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.6", + "Microsoft.EntityFrameworkCore.Analyzers": "6.0.6", + "Microsoft.Extensions.Caching.Memory": "6.0.1", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "System.Collections.Immutable": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "6.0.6.0", + "fileVersion": "6.0.622.26602" + } + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.6": { + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "6.0.6.0", + "fileVersion": "6.0.622.26602" + } + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.6": {}, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.222.6406" + } + } + }, + "Microsoft.Extensions.Caching.SqlServer/6.0.1": { + "dependencies": { + "Microsoft.Data.SqlClient": "4.0.0", + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Caching.SqlServer.dll": {} + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "StackExchange.Redis": "2.2.4" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.121.56714" + } + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/6.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.4", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.1.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.ObjectPool/5.0.10": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.30.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.30.1.0", + "fileVersion": "4.30.1.0" + } + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {} + } + }, + "Microsoft.Identity.Client.Extensions.Msal/2.18.4": { + "dependencies": { + "Microsoft.Identity.Client": "4.30.1", + "System.Security.Cryptography.ProtectedData": "5.0.0" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "2.18.4.0", + "fileVersion": "2.18.4.0" + } + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {} + } + }, + "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.9": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Net.Http": "4.3.4", + "System.Private.Uri": "4.3.2", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Json": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Security.SecureString": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": { + "assemblyVersion": "5.2.9.0", + "fileVersion": "5.2.9.0" + } + }, + "compile": { + "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.3": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "MimeKit/2.15.0": { + "dependencies": { + "Portable.BouncyCastle": "1.8.10", + "System.Buffers": "4.5.1", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Security.Cryptography.Pkcs": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0" + }, + "runtime": { + "lib/net50/MimeKit.dll": { + "assemblyVersion": "2.15.0.0", + "fileVersion": "2.15.0.0" + } + }, + "compile": { + "lib/net50/MimeKit.dll": {} + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + }, + "compile": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {} + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + }, + "compile": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {} + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + }, + "compile": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": {} + } + }, + "MySql.Data/8.0.27": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.14.0", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0" + }, + "runtime": { + "lib/net5.0/MySql.Data.dll": { + "assemblyVersion": "8.0.27.0", + "fileVersion": "8.0.27.0" + }, + "lib/net5.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net5.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + }, + "compile": { + "lib/net5.0/MySql.Data.dll": {}, + "lib/net5.0/Ubiety.Dns.Core.dll": {}, + "lib/net5.0/ZstdNet.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.4", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.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.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.1", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.1", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + } + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "dependencies": { + "Nito.AsyncEx.Tasks": "5.1.2", + "Nito.Collections.Deque": "1.1.1" + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "assemblyVersion": "5.1.2.0", + "fileVersion": "5.1.2.0" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {} + } + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "dependencies": { + "Nito.Disposables": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "assemblyVersion": "5.1.2.0", + "fileVersion": "5.1.2.0" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {} + } + }, + "Nito.Collections.Deque/1.1.1": { + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "assemblyVersion": "1.1.1.0", + "fileVersion": "1.1.1.0" + } + }, + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": {} + } + }, + "Nito.Disposables/2.2.1": { + "dependencies": { + "System.Collections.Immutable": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + }, + "compile": { + "lib/netstandard2.1/Nito.Disposables.dll": {} + } + }, + "Npgsql/6.0.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Npgsql.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + }, + "compile": { + "lib/net6.0/Npgsql.dll": {} + } + }, + "NUglify/1.16.1": { + "runtime": { + "lib/net5.0/NUglify.dll": { + "assemblyVersion": "1.16.1.0", + "fileVersion": "1.16.1.0" + } + }, + "compile": { + "lib/net5.0/NUglify.dll": {} + } + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "dependencies": { + "System.IO.Pipelines": "5.0.0" + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "2.2.0.45337" + } + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {} + } + }, + "Portable.BouncyCastle/1.8.10": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.10.0", + "fileVersion": "1.8.10.1" + } + }, + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.1": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "SkiaSharp/2.88.0": { + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.0", + "SkiaSharp.NativeAssets.macOS": "2.88.0", + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SkiaSharp.dll": { + "assemblyVersion": "2.88.0.0", + "fileVersion": "2.88.0.0" + } + }, + "compile": { + "lib/netstandard2.0/SkiaSharp.dll": {} + } + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.0": { + "dependencies": { + "SkiaSharp": "2.88.0" + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.0": { + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "StackExchange.Redis/2.2.4": { + "dependencies": { + "Pipelines.Sockets.Unofficial": "2.2.0", + "System.Diagnostics.PerformanceCounter": "5.0.0" + }, + "runtime": { + "lib/net5.0/StackExchange.Redis.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.4.27433" + } + }, + "compile": { + "lib/net5.0/StackExchange.Redis.dll": {} + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Annotations/4.7.0": {}, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + } + }, + "System.Diagnostics.Process/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.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.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/5.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.7.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Formats.Asn1/5.0.0": {}, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Packaging/4.0.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Xml.ReaderWriter": "4.3.1" + }, + "runtime": { + "lib/netstandard1.3/System.IO.Packaging.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "1.0.24212.1" + } + }, + "compile": { + "ref/netstandard1.3/System.IO.Packaging.dll": {} + } + }, + "System.IO.Pipelines/5.0.0": {}, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Async/5.1.0": { + "runtime": { + "lib/netcoreapp3.1/System.Linq.Async.dll": { + "assemblyVersion": "5.1.0.0", + "fileVersion": "5.1.0.2" + } + }, + "compile": { + "ref/netcoreapp3.1/System.Linq.Async.dll": {} + } + }, + "System.Linq.Dynamic.Core/1.2.14": { + "runtime": { + "lib/net6.0/System.Linq.Dynamic.Core.dll": { + "assemblyVersion": "1.2.14.0", + "fileVersion": "1.2.14.0" + } + }, + "compile": { + "lib/net6.0/System.Linq.Dynamic.Core.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.7.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": {} + } + }, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "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.Cryptography.Algorithms": "4.3.1", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.NameResolution/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.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": "5.0.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Requests/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.3.4", + "System.Net.Primitives": "4.3.0", + "System.Net.WebHeaderCollection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebHeaderCollection/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.DataContractSerialization/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Xml.ReaderWriter": "4.3.1", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0", + "System.Xml.XmlSerializer": "4.3.0" + } + }, + "System.Private.ServiceModel/4.9.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Private.Uri/4.3.2": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.DispatchProxy/4.7.1": {}, + "System.Reflection.Emit/4.7.0": {}, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/5.0.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.7.0": {}, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "System.Runtime.Caching/5.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Loader/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + } + }, + "System.Runtime.Serialization.Json/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Private.DataContractSerialization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.1", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "5.0.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.IO": "4.3.0", + "System.Reflection": "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.Cryptography.Algorithms": "4.3.1", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "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.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.1", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "compile": { + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.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.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.1", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Xml/5.0.0": { + "dependencies": { + "System.Security.Cryptography.Pkcs": "5.0.0", + "System.Security.Permissions": "5.0.0" + } + }, + "System.Security.Permissions/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "compile": { + "ref/net5.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.Security.SecureString/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ServiceModel.Http/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "compile": { + "ref/net6.0/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + }, + "lib/net6.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "compile": { + "ref/net6.0/System.ServiceModel.Primitives.dll": {}, + "ref/net6.0/System.ServiceModel.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Thread/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.ThreadPool/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.0" + } + }, + "System.ValueTuple/4.4.0": {}, + "System.Windows.Extensions/5.0.0": { + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.1" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.1" + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.7.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.1", + "System.Xml.XmlDocument": "4.3.0" + } + }, + "WebMarkupMin.AspNet.Common/2.10.0": { + "dependencies": { + "WebMarkupMin.Core": "2.9.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebMarkupMin.AspNet.Common.dll": { + "assemblyVersion": "2.10.0.0", + "fileVersion": "2.10.0.0" + } + }, + "compile": { + "lib/netcoreapp2.1/WebMarkupMin.AspNet.Common.dll": {} + } + }, + "WebMarkupMin.AspNetCore6/2.11.0": { + "dependencies": { + "AdvancedStringBuilder": "0.1.0", + "WebMarkupMin.AspNet.Common": "2.10.0" + }, + "runtime": { + "lib/net6.0/WebMarkupMin.AspNetCore6.dll": { + "assemblyVersion": "2.11.0.0", + "fileVersion": "2.11.0.0" + } + }, + "compile": { + "lib/net6.0/WebMarkupMin.AspNetCore6.dll": {} + } + }, + "WebMarkupMin.Core/2.9.0": { + "dependencies": { + "AdvancedStringBuilder": "0.1.0" + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "assemblyVersion": "2.9.0.0", + "fileVersion": "2.9.0.0" + } + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": {} + } + }, + "WebMarkupMin.NUglify/2.11.0": { + "dependencies": { + "AdvancedStringBuilder": "0.1.0", + "NUglify": "1.16.1", + "WebMarkupMin.Core": "2.9.0" + }, + "runtime": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "assemblyVersion": "2.11.0.0", + "fileVersion": "2.11.0.0" + } + }, + "compile": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": {} + } + }, + "Nop.Services/4.5.0": { + "dependencies": { + "Azure.Storage.Blobs": "12.10.0", + "ClosedXML": "0.95.4", + "MailKit": "2.15.0", + "MaxMind.GeoIP2": "4.1.0", + "Nop.Core": "4.5.0", + "Nop.Data": "4.5.0", + "SkiaSharp": "2.88.0", + "SkiaSharp.NativeAssets.Linux.NoDependencies": "2.88.0", + "System.Linq.Dynamic.Core": "1.2.14", + "System.ServiceModel.Http": "4.9.0", + "iTextSharp.LGPLv2.Core": "1.7.0" + }, + "runtime": { + "Nop.Services.dll": {} + }, + "compile": { + "Nop.Services.dll": {} + } + }, + "Nop.Web.Framework/4.5.0": { + "dependencies": { + "FluentValidation.AspNetCore": "10.3.6", + "LigerShark.WebOptimizer.Core": "3.0.344", + "Nop.Core": "4.5.0", + "Nop.Data": "4.5.0", + "Nop.Services": "4.5.0", + "WebMarkupMin.AspNetCore6": "2.11.0", + "WebMarkupMin.NUglify": "2.11.0" + }, + "runtime": { + "Nop.Web.Framework.dll": {} + }, + "compile": { + "Nop.Web.Framework.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal.Reference/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Reference/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features.Reference/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Results/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Results.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpLogging/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpLogging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Metadata/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Metadata.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/6.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp.Reference/6.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Json/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Features/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/6.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/6.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0.0": { + "compile": { + "Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Abstractions.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Primitives.Reference/6.0.0.0": { + "compile": { + "Microsoft.Extensions.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/6.0.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/6.0.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/6.0.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/11.0.0.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives.Reference/6.0.0.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry.Reference/6.0.0.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "Nop.Core.Reference/4.5.0.0": { + "compile": { + "Nop.Core.dll": {} + }, + "compileOnly": true + }, + "Nop.Data.Reference/4.5.0.0": { + "compile": { + "Nop.Data.dll": {} + }, + "compileOnly": true + }, + "Nop.Web.Reference/4.5.0.0": { + "compile": { + "Nop.Web.dll": {} + }, + "compileOnly": true + }, + "System.AppContext.Reference/6.0.0.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers.Reference/6.0.0.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent.Reference/6.0.0.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Reference/6.0.0.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable.Reference/6.0.0.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric.Reference/6.0.0.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized.Reference/6.0.0.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations.Reference/6.0.0.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Reference/6.0.0.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/6.0.0.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives.Reference/6.0.0.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter.Reference/6.0.0.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console.Reference/6.0.0.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common.Reference/6.0.0.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/4.0.0.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/6.0.0.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug.Reference/6.0.0.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource.Reference/6.0.0.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog/6.0.0.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/6.0.0.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process.Reference/6.0.0.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace.Reference/6.0.0.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/6.0.0.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools.Reference/6.0.0.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/6.0.0.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing.Reference/6.0.0.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/6.0.0.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime.Reference/6.0.0.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Asn1.Reference/6.0.0.0": { + "compile": { + "System.Formats.Asn1.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars.Reference/6.0.0.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Reference/6.0.0.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions.Reference/6.0.0.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/6.0.0.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Reference/6.0.0.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile.Reference/6.0.0.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO.Reference/6.0.0.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.AccessControl.Reference/6.0.0.0": { + "compile": { + "System.IO.FileSystem.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Reference/6.0.0.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/6.0.0.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives.Reference/6.0.0.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/6.0.0.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/6.0.0.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/6.0.0.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines.Reference/6.0.0.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes.AccessControl/6.0.0.0": { + "compile": { + "System.IO.Pipes.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/6.0.0.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/6.0.0.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Reference/6.0.0.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions.Reference/6.0.0.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/6.0.0.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable/6.0.0.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory.Reference/6.0.0.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http.Reference/6.0.0.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http.Json/6.0.0.0": { + "compile": { + "System.Net.Http.Json.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/6.0.0.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/6.0.0.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution.Reference/6.0.0.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/6.0.0.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/6.0.0.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives.Reference/6.0.0.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests.Reference/6.0.0.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/6.0.0.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/6.0.0.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets.Reference/6.0.0.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/6.0.0.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection.Reference/6.0.0.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/6.0.0.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/6.0.0.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/6.0.0.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors.Reference/6.0.0.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel.Reference/6.0.0.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy.Reference/6.0.0.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Reference/6.0.0.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Reference/6.0.0.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration.Reference/6.0.0.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight.Reference/6.0.0.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions.Reference/6.0.0.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata.Reference/6.0.0.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives.Reference/6.0.0.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions.Reference/6.0.0.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/6.0.0.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager.Reference/6.0.0.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/6.0.0.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe.Reference/6.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/6.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Reference/6.0.0.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions.Reference/6.0.0.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles.Reference/6.0.0.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.Reference/6.0.0.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation.Reference/6.0.0.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/6.0.0.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader.Reference/6.0.0.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics.Reference/6.0.0.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters.Reference/6.0.0.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json.Reference/6.0.0.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives.Reference/6.0.0.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/6.0.0.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl.Reference/6.0.0.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/6.0.0.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms.Reference/6.0.0.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng.Reference/6.0.0.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp.Reference/6.0.0.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding.Reference/6.0.0.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.OpenSsl.Reference/6.0.0.0": { + "compile": { + "System.Security.Cryptography.OpenSsl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives.Reference/6.0.0.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates.Reference/6.0.0.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml.Reference/6.0.0.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/6.0.0.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows.Reference/6.0.0.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString.Reference/6.0.0.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages.Reference/6.0.0.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Reference/6.0.0.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions.Reference/6.0.0.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web.Reference/6.0.0.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.Json.Reference/6.0.0.0": { + "compile": { + "System.Text.Json.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions.Reference/6.0.0.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/6.0.0.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Reference/6.0.0.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/6.0.0.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/6.0.0.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Reference/6.0.0.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions.Reference/6.0.0.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel.Reference/6.0.0.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread.Reference/6.0.0.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool.Reference/6.0.0.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer.Reference/6.0.0.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/6.0.0.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple.Reference/4.0.3.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/6.0.0.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter.Reference/6.0.0.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument.Reference/6.0.0.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument.Reference/6.0.0.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer.Reference/6.0.0.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/6.0.0.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/6.0.0.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + }, + "Nop.Core/4.5.0": { + "dependencies": { + "AutoMapper.Extensions.Microsoft.DependencyInjection": "8.1.1", + "Autofac.Extensions.DependencyInjection": "7.2.0", + "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.2.1", + "Azure.Extensions.AspNetCore.DataProtection.Keys": "1.1.0", + "Azure.Identity": "1.5.0", + "Humanizer": "2.13.14", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.1", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "6.0.1", + "Microsoft.Azure.Services.AppAuthentication": "1.6.2", + "Microsoft.Extensions.Caching.SqlServer": "6.0.1", + "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.1", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Nito.AsyncEx.Coordination": "5.1.2", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Linq.Async": "5.1.0" + }, + "compileOnly": true + }, + "Nop.Data/4.5.0": { + "dependencies": { + "FluentMigrator": "3.3.1", + "FluentMigrator.Runner": "3.3.1", + "Microsoft.Data.SqlClient": "4.0.0", + "MySql.Data": "8.0.27", + "Nop.Core": "4.5.0", + "Npgsql": "6.0.1", + "System.Net.NameResolution": "4.3.0", + "linq2db": "3.6.0" + }, + "compileOnly": true + }, + "Nop.Web/4.5.0": { + "dependencies": { + "Nop.Core": "4.5.0", + "Nop.Data": "4.5.0", + "Nop.Services": "4.5.0", + "Nop.Web.Framework": "4.5.0" + }, + "compileOnly": true + } + } + }, + "libraries": { + "Nop.Plugin.Misc.SimpleLMS/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AdvancedStringBuilder/0.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==", + "path": "advancedstringbuilder/0.1.0", + "hashPath": "advancedstringbuilder.0.1.0.nupkg.sha512" + }, + "Autofac/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRVRXGxwXbQmPy1ZGso115O55ffVW4mWtufjOy7hduQ1BNVR1j7RQQjxpYuB6tJw5OrgqRWYVJLJ8RwYNz/j+A==", + "path": "autofac/6.0.0", + "hashPath": "autofac.6.0.0.nupkg.sha512" + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==", + "path": "autofac.extensions.dependencyinjection/7.2.0", + "hashPath": "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512" + }, + "AutoMapper/10.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==", + "path": "automapper/10.1.1", + "hashPath": "automapper.10.1.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==", + "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512" + }, + "Azure.Core/1.20.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q7xigZIBjLjSKJA/Y+VygmJ2iZGiEyNuicN5iRX9oJL7451SulZm/CQ7qd8YCeL5TgNCNYCIrTIqRaams95zHA==", + "path": "azure.core/1.20.0", + "hashPath": "azure.core.1.20.0.nupkg.sha512" + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wxvkC6DeWThBtaPbsWdicp5Ltya4J8JuhxmZJDQkhnXG7oihfu8RqBV6w/X1nMieuIOq1qQaGTvjx7nEHHfxSQ==", + "path": "azure.extensions.aspnetcore.dataprotection.blobs/1.2.1", + "hashPath": "azure.extensions.aspnetcore.dataprotection.blobs.1.2.1.nupkg.sha512" + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HXcq3rNqcTteFSqAsdvHs7z22nQo4V9oesWSBqJTjpJ7xRrySw1JScxsi/D6709SQxmTPiIDEzuungVhT3uJ9g==", + "path": "azure.extensions.aspnetcore.dataprotection.keys/1.1.0", + "hashPath": "azure.extensions.aspnetcore.dataprotection.keys.1.1.0.nupkg.sha512" + }, + "Azure.Identity/1.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VfF88dqrgKXZNOS/y4XrX/jmIfP3pkY+hBUzBNpoKml1nR+QshX6XlXWyToLtWV80TDQ1CmUVCJksktDg5+j1w==", + "path": "azure.identity/1.5.0", + "hashPath": "azure.identity.1.5.0.nupkg.sha512" + }, + "Azure.Security.KeyVault.Keys/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I0e71ZjMQ3bJFBOnZNnKizshvZgd/GOx+m7waAeojbm/2P7j4mp5DXNMAN1nm0/FZaCGGR6fVF5I54El+RtGIg==", + "path": "azure.security.keyvault.keys/4.2.0", + "hashPath": "azure.security.keyvault.keys.4.2.0.nupkg.sha512" + }, + "Azure.Storage.Blobs/12.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yaijs9DPfn34C/X4TX+0TAxANEhuKSrFE650gkF9g1pz/nQljv86zOOtDwNwD5UsAY5LyrOiCASGo2dhuIxvdg==", + "path": "azure.storage.blobs/12.10.0", + "hashPath": "azure.storage.blobs.12.10.0.nupkg.sha512" + }, + "Azure.Storage.Common/12.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GuoigTmzz9HrCGdcdu7LyjD4pDr2XPt72LlWWTDyno+nYrjyuNwpwRFBvK/brxJvQFRHofQcBskf8vOxVxnI8g==", + "path": "azure.storage.common/12.9.0", + "hashPath": "azure.storage.common.12.9.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "ClosedXML/0.95.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YixFPzUJ4Ni2AaW/FbPgzFvdtjIzE/4NKROwI1RqIQHWka7QN9Spt4sHuXaSk9PLmXBkk8newHGW0UWLcLs5GA==", + "path": "closedxml/0.95.4", + "hashPath": "closedxml.0.95.4.nupkg.sha512" + }, + "DocumentFormat.OpenXml/2.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tWT7iu0ab9PNoMTWjv24rt+qnyqvcnPOYs167vPnk4aegAYSAxoUjwNW+VxY8xoLtJntQ/JlWTi7Vt+8TghLlQ==", + "path": "documentformat.openxml/2.7.2", + "hashPath": "documentformat.openxml.2.7.2.nupkg.sha512" + }, + "ExcelNumberFormat/1.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dRx817M5t0sv4GCJyAXU8qmhFXcqRpCHzLpxNmkMWTvzlfE0/KM7BNk6qEble0ffAr4xT7RyU7s/HpovVlA/9g==", + "path": "excelnumberformat/1.0.10", + "hashPath": "excelnumberformat.1.0.10.nupkg.sha512" + }, + "FluentMigrator/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RoCJSiWBMdUBNlhjrNi+6btJRtSJolw3z7UvT3oZVtDleqKkNoB8p1JdzrXcsvCDtfUphLbV8Q/LUj86MtHEPg==", + "path": "fluentmigrator/3.3.1", + "hashPath": "fluentmigrator.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Abstractions/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZaCRhXOEdxtyk7nUTqxTKuhEw//wmhzsBfclrVsGhnWaEjOuwgOlnrsmllSHK1rh5swECUn/GHKKpBwHsJcXzA==", + "path": "fluentmigrator.abstractions/3.3.1", + "hashPath": "fluentmigrator.abstractions.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Extensions.Oracle/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5fvw6rQXFVRkJN5j5CVe/CO6m+Mw8MP6T6exh/RFP9KW5lrLUlmW9F1l54BiLmOk+ZXI7aANZFxjnR7BvtPiyA==", + "path": "fluentmigrator.extensions.oracle/3.3.1", + "hashPath": "fluentmigrator.extensions.oracle.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Extensions.Postgres/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oVU19Y4CQkmBR/8X7ovaKzUPTR9zdl4+SukLBQno8v5+XRPXJ6pcBjtaYSI1n25wYqza28KI9Ya/wDO9emDWdA==", + "path": "fluentmigrator.extensions.postgres/3.3.1", + "hashPath": "fluentmigrator.extensions.postgres.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Extensions.SqlAnywhere/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Fe5O1gIIRA6pCAgdjsqTF7m+wZOOYm28OajnciFF0t4mINwdaz/ymZ1TNKEbxSCgqydjMJbZ2py5l8N1TXJbAA==", + "path": "fluentmigrator.extensions.sqlanywhere/3.3.1", + "hashPath": "fluentmigrator.extensions.sqlanywhere.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Extensions.SqlServer/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bOKzYzBKhPqLZ3oemEKSjJEO3Or664HuqvcVZl6v/x3y1PF2jL9goSpx5bUxOpYRBSy1roGbWT38rmJ1XfyTnA==", + "path": "fluentmigrator.extensions.sqlserver/3.3.1", + "hashPath": "fluentmigrator.extensions.sqlserver.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OYtZF9ARdt+qTGl8P8SiaNxcJLhpb58Z1uCJ+H5YQv3o3gheDDtAaB8S1AQqtRzn+qc8DOam/0WUYXfzzeeHug==", + "path": "fluentmigrator.runner/3.3.1", + "hashPath": "fluentmigrator.runner.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.Core/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JdMRerSpPUVlGn4mPLQyx+EadfEvByYEMRlbiMxHlBB4R8wgTYHwEHY68ig3//Mhec4ZllxIwByHzLA2+QftpA==", + "path": "fluentmigrator.runner.core/3.3.1", + "hashPath": "fluentmigrator.runner.core.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.Db2/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MTQzLOwN78cXpCgK8b3FkTqOOk+6P4v/DCsD99RvXx+RIm0Wwf78Dqb/xmkj1CoLRHikfob57H9Kli721aKznA==", + "path": "fluentmigrator.runner.db2/3.3.1", + "hashPath": "fluentmigrator.runner.db2.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.Firebird/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rQcxh1UOiIYdDpxtOyoZEmmprsToQ1aKlZyKYh4nwK8998XGz5lDYSd14Xr4yPeVAKSghrcHX7QTJTbJ2yFSxQ==", + "path": "fluentmigrator.runner.firebird/3.3.1", + "hashPath": "fluentmigrator.runner.firebird.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.Hana/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2Z4ucrkkszRoU7vk0wIl1mPJuIl/iWphReMJgSxtO1yzgYnzDDN7BXa0tTIDcZywU4l8VMD4pE5WrizhCMMgQ==", + "path": "fluentmigrator.runner.hana/3.3.1", + "hashPath": "fluentmigrator.runner.hana.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.MySql/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jEYcvDqxEedAg2KlpV8Na1qphmeDoeJi0pifDN6TOI8N9ho/14yb+cTPdwifUr0gVtBpVazsNJa4iiAUCUNwgA==", + "path": "fluentmigrator.runner.mysql/3.3.1", + "hashPath": "fluentmigrator.runner.mysql.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.Oracle/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H08VE195F57TO83KI37ZwMAAg2Cmu38/PKuXkkKTpm7BPCcW/ko4bVe0P3OGOGFM6jcOH5OeJgFBGCk+GT/4Tg==", + "path": "fluentmigrator.runner.oracle/3.3.1", + "hashPath": "fluentmigrator.runner.oracle.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.Postgres/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zMj9oVr48ICUcLAXrolxNkXUnYHSe0O3J1PhC1YZ99R0zTSLIpnSNE89xMrrpbodBFq45rZk5pdzFZ0DnwyD6g==", + "path": "fluentmigrator.runner.postgres/3.3.1", + "hashPath": "fluentmigrator.runner.postgres.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.Redshift/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aimp1TtgV7h5wqOcOD27+XcoxXhHK8c2akAc9ETLUcHdXd8cd+6lZvxWIe40+ColafxE7g1zC2w6/EkMsOzXfg==", + "path": "fluentmigrator.runner.redshift/3.3.1", + "hashPath": "fluentmigrator.runner.redshift.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.SqlAnywhere/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FPHwpEm8CaEHxyfK/RQFaQjGOw/wkAbJs5A7FGcUBCEqR7HmGB9n1TWDZjqVzkhvc8Vd2nZdmqpLm8l9sS5AEg==", + "path": "fluentmigrator.runner.sqlanywhere/3.3.1", + "hashPath": "fluentmigrator.runner.sqlanywhere.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.SQLite/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MayKI76lD03EhbpQr1HnYUBcA05+I9RYJzhXZQ7OljjlJAc8rTPLTjZ6Yg0TlgL/lNh0S4Y0Z9OJU3BsXZl+Ng==", + "path": "fluentmigrator.runner.sqlite/3.3.1", + "hashPath": "fluentmigrator.runner.sqlite.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.SqlServer/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JXtQkRgfVn2KTYYhzxkJx0cRiogmzT+2Cd2fPS6RZefg4+dR7EIGhYouIp37wHRnOiTW+B59xLrnbtMlSWiGUA==", + "path": "fluentmigrator.runner.sqlserver/3.3.1", + "hashPath": "fluentmigrator.runner.sqlserver.3.3.1.nupkg.sha512" + }, + "FluentMigrator.Runner.SqlServerCe/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ie58GWoqtpKsv6VS87r/KFMsmfsweTvDcP5ajual22Ovu+aSoG71vIr/DdgieamKrFTuaWUbvZ/AmUAdA/tuaw==", + "path": "fluentmigrator.runner.sqlserverce/3.3.1", + "hashPath": "fluentmigrator.runner.sqlserverce.3.3.1.nupkg.sha512" + }, + "FluentValidation/10.3.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "path": "fluentvalidation/10.3.6", + "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" + }, + "FluentValidation.AspNetCore/10.3.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xUgEjm+aqQPiVyZHmIq1HCShjlu17Rm1iV6yuL9CFWAl9YPvMxJL7vB+A1CqFUeWsx3LH8fM8ivA/5q5jPmcJg==", + "path": "fluentvalidation.aspnetcore/10.3.6", + "hashPath": "fluentvalidation.aspnetcore.10.3.6.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/10.3.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMwmbr+sHP/VLRQPTBVcgbJmtP5PGmxzNsqVX7FccDRwDB2edP8XsXWLNTZ4UwrslU1qQUD07BNQLDh7WXzpNw==", + "path": "fluentvalidation.dependencyinjectionextensions/10.3.6", + "hashPath": "fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512" + }, + "Google.Protobuf/3.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9AkodyGNmLI+wJJPbwpWLmh4BMHoXDQ9+8qvDPhQQi/BNsleqKMBn3OlyLwC6CALwan2kc5+Cenb8fJSITX3nQ==", + "path": "google.protobuf/3.14.0", + "hashPath": "google.protobuf.3.14.0.nupkg.sha512" + }, + "Humanizer/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FPWghHOCldAeE2ncWBX+teH2fa+ARWci8PPCK2keo8Wthw9ltjy2t+KAi65oWGH+AOw1Ai2zsNHv0ATwViXFJQ==", + "path": "humanizer/2.13.14", + "hashPath": "humanizer.2.13.14.nupkg.sha512" + }, + "Humanizer.Core/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-icZ3IcfmoIn5bQvYiZChRZ6jPn1HpjxQ+XzE5JFh8hp3MyvF1MmKvnc6htPBdW/FSmCotRzzRV6/tptjq/Aylw==", + "path": "humanizer.core/2.13.14", + "hashPath": "humanizer.core.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.af/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-K642RbfdJPb9WQVaSvHV5j6eNCsYfSbKx8Xw3WZR4yP1OcapCiGzf7THSP0HdAsua1fPXFoQv8HIpEHpoDxJIg==", + "path": "humanizer.core.af/2.13.14", + "hashPath": "humanizer.core.af.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.ar/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GaedbnWp74A1duNSkERNjn2+qWL4ICKwELwqKT1Hum3BYE2UPHp46mIndpJB0H5/YpBOeRq7k5OVXLe168zSNQ==", + "path": "humanizer.core.ar/2.13.14", + "hashPath": "humanizer.core.ar.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.az/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nZMcvvugQGqpgxPAr7fgbeF83Y4fmuS8guXkkPmscFHdW9syns0e+HlKQcTwBMkcu0Ck36q2g6QpS/0lG3KFw==", + "path": "humanizer.core.az/2.13.14", + "hashPath": "humanizer.core.az.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.bg/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2gjfaDrqz/uGIGF7oHKGFNW8TAMHlxtFh6fTom1bmSnIjMI3duIo+5GDOYXitOkcFt9l0aXda3J+OVMRYqDlyA==", + "path": "humanizer.core.bg/2.13.14", + "hashPath": "humanizer.core.bg.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.bn-BD/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-72GUfq3p5KemmMuGoVcDDv3ykeUy9mnbSYlI5r3q1pUBlVw4wtJFafSKAOtAFK/syMpXq+spvhl6F8VO9a66Sg==", + "path": "humanizer.core.bn-bd/2.13.14", + "hashPath": "humanizer.core.bn-bd.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.cs/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tOQJx2CmeowBH9jSHURZxxl3ig4jVN+v48saQ8DpkY87s4iFujqIIaZtOBneMpy6FXFboP7R7EKVFBxq/wd+8g==", + "path": "humanizer.core.cs/2.13.14", + "hashPath": "humanizer.core.cs.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.da/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v0XL9yl70y7HMwWa1t568vJtEjksk8orARalJarcfHKWruQoOV32JHsAPW8H5w2iFyChod4zdB66b5hTZ5HQ2w==", + "path": "humanizer.core.da/2.13.14", + "hashPath": "humanizer.core.da.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.de/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0E6HLSkdIwu/h0wc9SAA8fBwUyYtOxr+Q6iSEp6JWRz4ijhqc5aD53l0GtfJnrTsEQmuz6A/nE9mo+pH0t3lgQ==", + "path": "humanizer.core.de/2.13.14", + "hashPath": "humanizer.core.de.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.el/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-udCaCcx5J84u88PdUehJ7dkcpJVc8cQh0XcA6/gR4GvBIrHYEYFo0u/T6W6cIBZ63ZneQKzP3wb5Kem90QW+ug==", + "path": "humanizer.core.el/2.13.14", + "hashPath": "humanizer.core.el.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.es/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kiDZRtl/aFEOQ6T1P0G2H/Gmi5TSF57QFnvRNG579vb8WvXaQ06T7H0hvpmBzNhBGPoGI1q3/NZsLE1AeMnVhQ==", + "path": "humanizer.core.es/2.13.14", + "hashPath": "humanizer.core.es.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.fa/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s3DlG4UesBQz+0xQgWCVTRugmvTgvy1kAY0db6annUAy2JQvEglUpOtIO325NYk3n4yqP/KtRGG0onZ8pDbkYA==", + "path": "humanizer.core.fa/2.13.14", + "hashPath": "humanizer.core.fa.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.fi-FI/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2D81JS5rW5ORFk/DbhnHtGuN9uVyqmOhKneIrJe4Wb07haxMfxmMvLsjMYXyNwY13H//m6js4nZNPueKcjzQQg==", + "path": "humanizer.core.fi-fi/2.13.14", + "hashPath": "humanizer.core.fi-fi.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.fr/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Za8nhHMa4wg7U9X5XmHcz1BxIf/gaZBkR03iKxG9vtCUaudibkr4q0s2Xy1+6YwXkrBZavKHB2E12S1QiPgzFQ==", + "path": "humanizer.core.fr/2.13.14", + "hashPath": "humanizer.core.fr.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.fr-BE/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yl/b3DTmFNU7wuf/ZZ7uP/svllJAIO3qXN36RkJ3P42oUOGo91a8oYh6zVVtGyc4tBQuL/h9/jie6Hus6YXCOg==", + "path": "humanizer.core.fr-be/2.13.14", + "hashPath": "humanizer.core.fr-be.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.he/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WKwwrW0r/ARQ4iWMQeOPd0A/TC5otinWgxBb287eht2qFkvNYKnHnOx40XEvnG5N8AuJymvXiMJMb7jkXRKSJQ==", + "path": "humanizer.core.he/2.13.14", + "hashPath": "humanizer.core.he.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.hr/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LdQbJZfUpAv9iA2kPyRFMuYFh34Oavli6VyTyUYYZsqFxB0RifPNfh8kSFy3Gc0sfObiyqMy/6UKPP+IM0L5yg==", + "path": "humanizer.core.hr/2.13.14", + "hashPath": "humanizer.core.hr.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.hu/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4DS4i4t5/ZgehB+QhyuiUtnZbnr7MxydM7yEjEMb8NJrfhOjfP3K5roR2MnTC/FmhGzVJc1elIuNAjja/mAIQ==", + "path": "humanizer.core.hu/2.13.14", + "hashPath": "humanizer.core.hu.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.hy/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mX2yavW63qftlj+/8we7Doaa9jJcn7vL2YtDfhlYYuvs9DfBc6fmfhDyan9dfn1QkHADTmnSWaQfcQPJcvXhwQ==", + "path": "humanizer.core.hy/2.13.14", + "hashPath": "humanizer.core.hy.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.id/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Mz+MGrEbUczy0vngzT/Y2bRDX8Y5ePHeW6zlQp0Gppyt5BZX9u8y5jRIE+Zx0sn2IiXcBZ3nDbAzPn9LpTbRNw==", + "path": "humanizer.core.id/2.13.14", + "hashPath": "humanizer.core.id.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.is/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TpAbMRf8nn/7GwXB9NSQ1PajX+nCnsd+BcmatE1IxdgkbsjzxggL+Ww/iVPkQeo4YOWh6RYHCD33xUSi7YsFVQ==", + "path": "humanizer.core.is/2.13.14", + "hashPath": "humanizer.core.is.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.it/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/j4eylvh2ByUkQgycNk0H7m7a4I0x7OA7ChsLFPUii2ZIQoe7fezxO2ohOZEd6HFiS68LKvN2vLCnocUyQAvXg==", + "path": "humanizer.core.it/2.13.14", + "hashPath": "humanizer.core.it.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.ja/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zhAmD7KmTkUw6pAPtO9CYFoYlWC3LgPgKl1uMyaONnougWDyoGlijxYledYNjQXUTYMsnrWFR9Lm4DolVzJPog==", + "path": "humanizer.core.ja/2.13.14", + "hashPath": "humanizer.core.ja.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.ko-KR/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7J2EzCgSDlLI3HFcTUJo/wG6dZ5rjCfjr+wy3FOH8DvNYcFVBwlIv4unfYPY1GHOtUMOZAMTYRv/OYt8IKUsnw==", + "path": "humanizer.core.ko-kr/2.13.14", + "hashPath": "humanizer.core.ko-kr.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.ku/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ri5CdJ/+UeH0HEzwhNQiMUnU3M27HzXOQUbyg/ugGwAh20WHaiCcTMEBGqao20bm54c0kbDJPgZzpjN9PSmaw==", + "path": "humanizer.core.ku/2.13.14", + "hashPath": "humanizer.core.ku.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.lv/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Uq6XnEaZ3EuKLG3QAQACs0ddM4djY0f2wFREaf35OFP+879IYSiI0YTO8vWLw/1uyx6x472uM+PqYb12PJP+xA==", + "path": "humanizer.core.lv/2.13.14", + "hashPath": "humanizer.core.lv.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.ms-MY/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qXzQV+t+G9gRE9qIYpz3pwERXp2+vdO/8SJE3Wbfhxb7xwtZq40AR8jXT3v1xN9u9rPlCXF+UZkQ5HgXNDNK0w==", + "path": "humanizer.core.ms-my/2.13.14", + "hashPath": "humanizer.core.ms-my.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.mt/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PTRotGCuK5M9DC5C5q6JT7N9fXwrujtAwj0GqwbyOWf2JlvbpA0YykT+RYJ2stn1f8gy+lU31clGatRrrWcJsQ==", + "path": "humanizer.core.mt/2.13.14", + "hashPath": "humanizer.core.mt.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.nb/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PvawsXuUV44b3/EIS2z3aE8GCSqaDW2S/RypCjlIBP3aAU6Ub0HyR7b+Zc4QedYlhSDctGijgR/WRnrZ/ganUA==", + "path": "humanizer.core.nb/2.13.14", + "hashPath": "humanizer.core.nb.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.nb-NO/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Kwq2N8hdYO0aKYGl3GdoDGyb6o9UF2lplgFyvydHU5e/UnT1nBm4cIii67fwlYDmakvhp6AK6sBSTSfVPR8p7w==", + "path": "humanizer.core.nb-no/2.13.14", + "hashPath": "humanizer.core.nb-no.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.nl/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VYCXCNGyVxiSAX1JQHpSEdJI1+HoTVsKJ6ybgOteskh3NJCtFZO0R4WiLSPLMQ+YYsUmIp7ZPTzmSysp8YH1qw==", + "path": "humanizer.core.nl/2.13.14", + "hashPath": "humanizer.core.nl.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.pl/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/kmyA0JOv1Xq7arHegCZus24K5fUnhZQXYafw/WFlbSyNwd2mlDCOLL0e6WlZ1M4XLMCUv5jy6PL/Ipq7MAPCQ==", + "path": "humanizer.core.pl/2.13.14", + "hashPath": "humanizer.core.pl.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.pt/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3Ic/RwvLfNNYN97QDV1HwYaYdH1KpksKceC0RIKFM2t31+cmiw4KPg4XgDUTRRhCBX67Wc4czqo0HYVBJBLLQ==", + "path": "humanizer.core.pt/2.13.14", + "hashPath": "humanizer.core.pt.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.ro/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gxL5XKRomDOdAeH1b2Uyuo+XYu52Yb8B2ISlhazM/Z5iYaN98SFhepEZUNaazKGsPG7uc7ts++KbssAM4xUotA==", + "path": "humanizer.core.ro/2.13.14", + "hashPath": "humanizer.core.ro.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.ru/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Tv9P5pjanXOlRiDiSOKvwEmunXhn2jo8Z32iY62Q9sJ3ifZppbCxSfzGu3r4oTW9jpEaVLo3uOsqq6g1FwxMcw==", + "path": "humanizer.core.ru/2.13.14", + "hashPath": "humanizer.core.ru.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.sk/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TkskSuocvjhdQvWrzkb4UkabYS5Arh4nF3CPx9HIdoQMZst1TIutADPYGHbzTkxAz6JGJOnh9a/ylIkg8d4JOQ==", + "path": "humanizer.core.sk/2.13.14", + "hashPath": "humanizer.core.sk.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.sl/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wwYLj0dCoEvBPF1fJrdJvGjPVVTPRYW0jdZLhfXJ3cv2sjpwdVMNmIaQaYiKw4yedLVOpwhwba0RhzTOAwQJdg==", + "path": "humanizer.core.sl/2.13.14", + "hashPath": "humanizer.core.sl.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.sr/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GBrNiiOTIDRiVPLdafl7hAZ+s1v17dj4Pm/9vQcPdRmUzgr0VrAKu96Ll3+l5HBARKk57snDyaaeAVD5IfEoKA==", + "path": "humanizer.core.sr/2.13.14", + "hashPath": "humanizer.core.sr.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.sr-Latn/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1/jdjKm5hmXv9RPoNHtpLFdD3uqbSCRp6YLksNrlbHr4ldMpZ4AMKgtX9bo7cJQKtdSoy3KljC9hNp0nz1rNYw==", + "path": "humanizer.core.sr-latn/2.13.14", + "hashPath": "humanizer.core.sr-latn.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.sv/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vEqSBOhy3nGp0QZlHpGw6+qdvqQoEqUQbpqgUYfyT+Y6XiRgE/Q+TkcteYmiyEIPPPlULutiEhTe58mayaBjuQ==", + "path": "humanizer.core.sv/2.13.14", + "hashPath": "humanizer.core.sv.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.th-TH/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZxirhCTA1mWAEIl7Frjyt4A50PS1+whjv30yQikVYFTcDkpgvYIeRqqu3qoayGuT4BNOIAOC3H4ci3UetdUwdQ==", + "path": "humanizer.core.th-th/2.13.14", + "hashPath": "humanizer.core.th-th.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.tr/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HB333oopLHf2nsArrhcNkxY6YWTigE0tzJvgv5qXXCQh/IaDYn7PZWQyxtqxSARjkaCLbos1kYwETz2/k0BStw==", + "path": "humanizer.core.tr/2.13.14", + "hashPath": "humanizer.core.tr.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.uk/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b98S8HavURvgBZ3t6GFakWppRxHCnjECHTteJjremJOUppye4diLZj3g9X0QjFGPPxN2BlUw5n5v4DBZt31vbg==", + "path": "humanizer.core.uk/2.13.14", + "hashPath": "humanizer.core.uk.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.uz-Cyrl-UZ/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JWnDJ+kc5HEiL0Dz39RqUo1bnoQ7E6way8MY4WBsPozeo3u8zvExwp+W1UoHcVgqM7TT1jmn4/JI/i/eBmad+Q==", + "path": "humanizer.core.uz-cyrl-uz/2.13.14", + "hashPath": "humanizer.core.uz-cyrl-uz.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.uz-Latn-UZ/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vvpXjk5dxrUkiqu5EBf7YGWcIJ8PYoC6XI87Wxd7B7DgywGj3hZkK5X6J2ZUtgMo9CjyxLaLARPBRjHY6ujv2w==", + "path": "humanizer.core.uz-latn-uz/2.13.14", + "hashPath": "humanizer.core.uz-latn-uz.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.vi/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-noOfZKtvcMgGH1U/hfpoIiw0c86sqYywf6k6Cd8EHWuBuX6stuC906uADN4mwy8/Bbx4Iqu0aItR6AWSVrvyUw==", + "path": "humanizer.core.vi/2.13.14", + "hashPath": "humanizer.core.vi.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.zh-CN/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GZMNidfYEcJ6xGlO7dI935aIm6TNZ5cctb3R/ONb6KgFKWxVWHRr7ivGVz1XOmSRyqCMavvKzabsz6GZUSZmwQ==", + "path": "humanizer.core.zh-cn/2.13.14", + "hashPath": "humanizer.core.zh-cn.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.zh-Hans/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FnCcTdFTkCLVLz4HG0xhmV5cQX4/qGw4jYAaWQnj1tX0RYiBYR8Vp3tGNWmELUSFlit39GuFF32BRLG5rBt/JA==", + "path": "humanizer.core.zh-hans/2.13.14", + "hashPath": "humanizer.core.zh-hans.2.13.14.nupkg.sha512" + }, + "Humanizer.Core.zh-Hant/2.13.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOp/VNY+0/i9fp3ZyZGXizUMpewPVN8yxwkBBCwM1baDmpKYHeGMNJgIdIU79g7YzKItOciu4xOSQOzNPxL3Jg==", + "path": "humanizer.core.zh-hant/2.13.14", + "hashPath": "humanizer.core.zh-hant.2.13.14.nupkg.sha512" + }, + "iTextSharp.LGPLv2.Core/1.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eN/ivAHNjPFCBle/IRmU0om47ywhX2/oumEUsRwv50FSsTCcty87BXjzn6fP2S2+yJGc6gaEQ9YFaYU7Loybkg==", + "path": "itextsharp.lgplv2.core/1.7.0", + "hashPath": "itextsharp.lgplv2.core.1.7.0.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "LigerShark.WebOptimizer.Core/3.0.344": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EDvF1PhkOgMqWoJB9rwz58UNZEkCHX8Qg9iJKIOIku6exi6HNU3tCZ3r3TihqWL0NBTiobChbftSyU/z+zgETQ==", + "path": "ligershark.weboptimizer.core/3.0.344", + "hashPath": "ligershark.weboptimizer.core.3.0.344.nupkg.sha512" + }, + "linq2db/3.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZgaxVkEbxbHparKQ8fCW13S1wp9m3vDQkmbbssIhaNmbFoWm9zV8K/tmX+cL0CEcqRAdIibSOsIdZp3QWNK0mg==", + "path": "linq2db/3.6.0", + "hashPath": "linq2db.3.6.0.nupkg.sha512" + }, + "MailKit/2.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ihv6pRmjmBEAP4eXlDeo9srFQF9dVtYP1/jzj3I3BV9tBRk66NLdAF+8jkgUtauMKmns0yBvtfMFiBnNkHKDQ==", + "path": "mailkit/2.15.0", + "hashPath": "mailkit.2.15.0.nupkg.sha512" + }, + "MaxMind.Db/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fOWdlC6LbGvJnF9IJ5Fl3JeoeQGtzVBOJqDSoU2j01A4/dHurGRrMVN8Qh3Fq7OuMQiaNdY9yWzE72LWW/S6Nw==", + "path": "maxmind.db/3.0.0", + "hashPath": "maxmind.db.3.0.0.nupkg.sha512" + }, + "MaxMind.GeoIP2/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iKolbhr9iQSdaIz/Wp9HOwG+S4CKT8nXl1iF4mECfpMVutGdaYvZs4pBD6/at9MBh1cMjbfXY1ddXO7zr+x+ZA==", + "path": "maxmind.geoip2/4.1.0", + "hashPath": "maxmind.geoip2.4.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oqKoj5d+zR7/R2T03jq69fJ5w48dJ3Yw+XO3ORJGIV7Vd4eJhwvAOpEQKC3vWyQIKZWEkndIxaWMbfODJY/vsQ==", + "path": "microsoft.aspnetcore.cryptography.internal/2.1.0", + "hashPath": "microsoft.aspnetcore.cryptography.internal.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.DataProtection/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G+UoMHL0xiyFh30wkL7Bv/XL6eugTAKYhLPS53k1/Me1bYRwOOw+8VL/q0ppq3/yMzpHX+MkExaCTDlYl48FgA==", + "path": "microsoft.aspnetcore.dataprotection/2.1.0", + "hashPath": "microsoft.aspnetcore.dataprotection.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2+HVDhUqrnV9+EJNEewSy+Gk4hOVPzLPMpFDZI7kuH7NWxtbNkI6A6gT5lO2/kEPMyM8/iLWtohbOwjpC9rHVw==", + "path": "microsoft.aspnetcore.dataprotection.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1TQgBfd/NPZLR2o/h6l5Cml2ZCF5hsyV4h9WEwWwAIavrbdTnaNozGGcTOd4AOgQvogMM9UM1ajflm9Cwd0jLQ==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YTKMi2vHX6P+WHEVpW/DS+eFHnwivCSMklkyamcK1ETtc/4j8H3VR0kgW8XIBqukNxhD8k5wYt22P7PhrWSXjQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vbFDyKsSYBnxl3+RABtN79b0vsTcG66fDY8vD6Nqvu9uLtSej70Q5NcbGlnN6bJpZci5orSdgFTHMhBywivDPg==", + "path": "microsoft.aspnetcore.http.abstractions/2.1.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UmkUePxRjsQW0j5euFFscBwjvTu25b8+qIK/2fI3GvcqQ+mkwgbWNAT8b/Gkoei1m2bTWC07lSdutuRDPPLcJA==", + "path": "microsoft.aspnetcore.http.features/2.1.0", + "hashPath": "microsoft.aspnetcore.http.features.2.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vLgQbgudEQfGNaGyAvm+jlfLHu5Ynav8/RnhwM0QaKFjVW2crEOGm7tRHHjM5iofF8VZnEYfyvUvyK82dBej1w==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.1", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UMMDrtDzY1tug3Q6RFmgtknJ65nj3IxI/iVqrRFwKDIeiiBc8DMfxS1cZPWfaGmPfVulgaa8qHvQijaLpa8p7Q==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.1", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NYk/G6kPc4Gifk1/wihe/E5qR36hkA1QkKOxCzgSUY3weq2Nr/aUIa7Uy47GB5AjzI1NAR2D5vTKovm4NDHUgA==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.1", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9TtkixTq/oqywuhXUS4ZUjYfqF+/9IbxQ7M3VeT2y2iOSayu03Aq+Fz5xD158MKhpbQk7moYCebKpecuvGyCLg==", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/6.0.1", + "hashPath": "microsoft.aspnetcore.mvc.razor.runtimecompilation.6.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfdO54qy+qmvc4DB4Qn0gCswbf59ddijWzn13jGyf4H1DJ/ghdpdM0Ee6XIVX4nLLim35joC/dsDYLXnwYiUqw==", + "path": "microsoft.aspnetcore.razor.language/6.0.1", + "hashPath": "microsoft.aspnetcore.razor.language.6.0.1.nupkg.sha512" + }, + "Microsoft.Azure.Services.AppAuthentication/1.6.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rSQhTv43ionr9rWvE4vxIe/i73XR5hoBYfh7UUgdaVOGW1MZeikR9RmgaJhonTylimCcCuJvrU0zXsSIFOsTGw==", + "path": "microsoft.azure.services.appauthentication/1.6.2", + "hashPath": "microsoft.azure.services.appauthentication.1.6.2.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==", + "path": "microsoft.codeanalysis.common/4.0.0", + "hashPath": "microsoft.codeanalysis.common.4.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==", + "path": "microsoft.codeanalysis.csharp/4.0.0", + "hashPath": "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UyZYYHq7pBUamcShu8lDIkuhIAOTUeXiADHluq2RdwyIX1zBijXDPrimQXSaevAsyPsOc2DChS9NdFFbMIZYJQ==", + "path": "microsoft.codeanalysis.razor/6.0.1", + "hashPath": "microsoft.codeanalysis.razor.6.0.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YGYfWg3Xth2EXAy8TBN4Fgj0FY6BnGgCtT6ypKuqKojiGAtLsRtRbP8KOXNy8+SMK6AVzAguvl8K5zX9uqg8yA==", + "path": "microsoft.data.sqlclient/4.0.0", + "hashPath": "microsoft.data.sqlclient.4.0.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wtLlRwQX7YoBUYm25xBjJ3UsuLgycme1xXqDn8t3S5kPCWiZrx8uOkyZHLKzH4kkCiQ9m2/J5JeCKNRbZNn3Qg==", + "path": "microsoft.data.sqlclient.sni.runtime/4.0.0", + "hashPath": "microsoft.data.sqlclient.sni.runtime.4.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/6.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-icy5aMdp9R984RGmbgZvcjEX9HYcwqF+6HXLFydL7PJBlc9eVVPRdBSFS9mCFwXyFl24x7xUORhZx/cSLvwH7Q==", + "path": "microsoft.entityframeworkcore/6.0.6", + "hashPath": "microsoft.entityframeworkcore.6.0.6.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4Ep2LDUSSNjriin0wKH4jF4vsjQ2ICwC9/5ntDVShQqy1C8AmmE5oK25jfthEVSIosDhJoWCescV3xKa9kcpg==", + "path": "microsoft.entityframeworkcore.abstractions/6.0.6", + "hashPath": "microsoft.entityframeworkcore.abstractions.6.0.6.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EqBhW1bJnDw42CIGf/Dh1TbYXFUh53pghb5KGMTrxcNU6Ntfd8UEHs7LntZrMQrECrkhW7zBvfGvv9SbxOj5VQ==", + "path": "microsoft.entityframeworkcore.analyzers/6.0.6", + "hashPath": "microsoft.entityframeworkcore.analyzers.6.0.6.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==", + "path": "microsoft.extensions.caching.memory/6.0.1", + "hashPath": "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.SqlServer/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cGRJsZPqHXlqklDiQNlw6sITCMgUeStWEbNx8MqxVaWLupDHTUTOrIzYqa3uUmtdqpwZfGjq7VcsTbZN04Q7RA==", + "path": "microsoft.extensions.caching.sqlserver/6.0.1", + "hashPath": "microsoft.extensions.caching.sqlserver.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xzpa3qmpbqRLMgCy7/r56sVnsOZ8zi7tmbAtga3ep0aaJe27zA4pj9hgHyF3y3OFEav88UFMjldT3r/lhV1kkA==", + "path": "microsoft.extensions.caching.stackexchangeredis/6.0.1", + "hashPath": "microsoft.extensions.caching.stackexchangeredis.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lMmUjAKvY9r6QmxCS15iSb6ulhwnh0zp44NtnVJ+HIDLFmu4iej41U+dU58On8NRezmlgRXiQtLnBeZSzYNKQg==", + "path": "microsoft.extensions.configuration.abstractions/2.1.0", + "hashPath": "microsoft.extensions.configuration.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==", + "path": "microsoft.extensions.dependencymodel/6.0.0", + "hashPath": "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-itv+7XBu58pxi8mykxx9cUO1OOVYe0jmQIZVSZVp5lOcLxB7sSV2bnHiI1RSu6Nxne/s6+oBla3ON5CCMSmwhQ==", + "path": "microsoft.extensions.fileproviders.abstractions/2.1.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BpMaoBxdXr5VD0yk7rYN6R8lAU9X9JbvsPveNdKT+llIn3J5s4sxpWqaSG/NnzTzTLU5eJE5nrecTl7clg/7dQ==", + "path": "microsoft.extensions.hosting.abstractions/2.1.0", + "hashPath": "microsoft.extensions.hosting.abstractions.2.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "path": "microsoft.extensions.objectpool/5.0.10", + "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.30.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xk8tJeGfB2yD3+d7a0DXyV7/HYyEG10IofUHYHoPYKmDbroi/j9t1BqSHgbq1nARDjg7m8Ki6e21AyNU7e/R4Q==", + "path": "microsoft.identity.client/4.30.1", + "hashPath": "microsoft.identity.client.4.30.1.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/2.18.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HpG4oLwhQsy0ce7OWq9iDdLtJKOvKRStIKoSEOeBMKuohfuOWNDyhg8fMAJkpG/kFeoe4J329fiMHcJmmB+FPw==", + "path": "microsoft.identity.client.extensions.msal/2.18.4", + "hashPath": "microsoft.identity.client.extensions.msal.2.18.4.nupkg.sha512" + }, + "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WhBAG/9hWiMHIXve4ZgwXP3spRwf7kFFfejf76QA5BvumgnPp8iDkDCiJugzAcpW1YaHB526z1UVxHhVT1E5qw==", + "path": "microsoft.identitymodel.clients.activedirectory/5.2.9", + "hashPath": "microsoft.identitymodel.clients.activedirectory.5.2.9.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==", + "path": "microsoft.netcore.targets/1.1.3", + "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "MimeKit/2.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-146As77LbmZezdSJ5W/2ZEQsZyqVSAM8yOjDjvsy6NpLmyqG8lgzmX6ps3P/fKzUN5Ey4hxwnAtH+KLlJW0CsQ==", + "path": "mimekit/2.15.0", + "hashPath": "mimekit.2.15.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.27": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ef+sH12/nGAiF9yLZFkuXh7vtVvEPiLKyZNJiDk+VBULzLcXj0lmfU7qcmWNCSVX5n6zu5jMV+JaNf1C+a+T8g==", + "path": "mysql.data/8.0.27", + "hashPath": "mysql.data.8.0.27.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==", + "path": "nito.asyncex.coordination/5.1.2", + "hashPath": "nito.asyncex.coordination.5.1.2.nupkg.sha512" + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==", + "path": "nito.asyncex.tasks/5.1.2", + "hashPath": "nito.asyncex.tasks.5.1.2.nupkg.sha512" + }, + "Nito.Collections.Deque/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==", + "path": "nito.collections.deque/1.1.1", + "hashPath": "nito.collections.deque.1.1.1.nupkg.sha512" + }, + "Nito.Disposables/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==", + "path": "nito.disposables/2.2.1", + "hashPath": "nito.disposables.2.2.1.nupkg.sha512" + }, + "Npgsql/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T0v1fSBzcQaJoa6kHGiYYi/vwTJ5VYd8DDjCxW1jazAuO2Ak1KVWMkEcQxxz/C+H/+QteJRMi/xAVHzv1kKSgg==", + "path": "npgsql/6.0.1", + "hashPath": "npgsql.6.0.1.nupkg.sha512" + }, + "NUglify/1.16.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iAbP7HDVq4TEMzQ23/RyS1CcnM7g0Vx6S4hgg/ODyEUK/1rp9L0oFSsFhN4k5viivknlOBSXez1X+tN8Xfcz5g==", + "path": "nuglify/1.16.1", + "hashPath": "nuglify.1.16.1.nupkg.sha512" + }, + "Pipelines.Sockets.Unofficial/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==", + "path": "pipelines.sockets.unofficial/2.2.0", + "hashPath": "pipelines.sockets.unofficial.2.2.0.nupkg.sha512" + }, + "Portable.BouncyCastle/1.8.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XLhjNAwuVB9ynwn11l5K44eyozh8q6gFseTrlnLNttejimglX7+F9+vxh60LPjvA/DAt6fUdS43N3ah8K6eaWg==", + "path": "portable.bouncycastle/1.8.10", + "hashPath": "portable.bouncycastle.1.8.10.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==", + "path": "runtime.native.system.security.cryptography.apple/4.3.1", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "SkiaSharp/2.88.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKBrwZ4TdRjPjl2tVFbcakyNZBI9zBGFzZKr6DbhgybVpjiBMvIQbbbN4Wfl0lts0TJ5AwHDr6EO7zusJJOamQ==", + "path": "skiasharp/2.88.0", + "hashPath": "skiasharp.2.88.0.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nt1eSglEAGxFPdTMk8nAqyjFEEyRcez8qQ/YpismWrCp8ood1LekfzznxEIr6StD8G6pTXmjDkCVpfFthjTMOQ==", + "path": "skiasharp.nativeassets.linux.nodependencies/2.88.0", + "hashPath": "skiasharp.nativeassets.linux.nodependencies.2.88.0.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.macOS/2.88.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tfcr1Bnye1lsBbsskqtlkZrFDBZfIEfJoGzJ6nnJF1sSDs8zzdiuL7PjEUDEh5iHb6Wbc0la9f/OIPnUcW7KFg==", + "path": "skiasharp.nativeassets.macos/2.88.0", + "hashPath": "skiasharp.nativeassets.macos.2.88.0.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.Win32/2.88.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R//VHCO/FTBtDMyYTzazuqLU8QOczapgf9FIC6Hw2SodP79CYu27+fdGS0fL9bt1qKCCitlI22QWSniPLG8YJg==", + "path": "skiasharp.nativeassets.win32/2.88.0", + "hashPath": "skiasharp.nativeassets.win32.2.88.0.nupkg.sha512" + }, + "StackExchange.Redis/2.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==", + "path": "stackexchange.redis/2.2.4", + "hashPath": "stackexchange.redis.2.2.4.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "path": "system.collections.immutable/6.0.0", + "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", + "path": "system.componentmodel.annotations/4.7.0", + "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "path": "system.configuration.configurationmanager/5.0.0", + "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "path": "system.diagnostics.performancecounter/5.0.0", + "hashPath": "system.diagnostics.performancecounter.5.0.0.nupkg.sha512" + }, + "System.Diagnostics.Process/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", + "path": "system.diagnostics.process/4.3.0", + "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "path": "system.drawing.common/5.0.0", + "hashPath": "system.drawing.common.5.0.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "path": "system.formats.asn1/5.0.0", + "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Packaging/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-taPqPWcAj/h6e/c+zIWIVe1ddJtpV6acC6g9GpolxUcIwUaH6zc0ZbFS8kkVzBkuWv76pMalKeTzfmHtfT1pXA==", + "path": "system.io.packaging/4.0.0", + "hashPath": "system.io.packaging.4.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", + "path": "system.io.pipelines/5.0.0", + "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Async/5.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TkDTElj3vvizUnhS4mj0oZW8kX6KOBcsUkj79w/q6IUI7nsW+bXmWZfixknClug/IA+8vTWcArXSjIxn9hIWxQ==", + "path": "system.linq.async/5.1.0", + "hashPath": "system.linq.async.5.1.0.nupkg.sha512" + }, + "System.Linq.Dynamic.Core/1.2.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXqCW9nmZ4GLVYhRsTvYQ5y/OVAgDK/t/fA4IL8diQiVNKVOE8OTjA3HE3dYxyfsgJPhoBPK2Tw5vqdW97JQKQ==", + "path": "system.linq.dynamic.core/1.2.14", + "hashPath": "system.linq.dynamic.core.1.2.14.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "path": "system.net.nameresolution/4.3.0", + "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Requests/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", + "path": "system.net.requests/4.3.0", + "hashPath": "system.net.requests.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebHeaderCollection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", + "path": "system.net.webheadercollection/4.3.0", + "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.DataContractSerialization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==", + "path": "system.private.datacontractserialization/4.3.0", + "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "path": "system.private.servicemodel/4.9.0", + "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==", + "path": "system.private.uri/4.3.2", + "hashPath": "system.private.uri.4.3.2.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "path": "system.reflection.dispatchproxy/4.7.1", + "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" + }, + "System.Reflection.Emit/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==", + "path": "system.reflection.emit/4.7.0", + "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "path": "system.reflection.metadata/5.0.0", + "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==", + "path": "system.reflection.typeextensions/4.7.0", + "hashPath": "system.reflection.typeextensions.4.7.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", + "path": "system.runtime.caching/5.0.0", + "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Loader/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", + "path": "system.runtime.loader/4.3.0", + "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "path": "system.runtime.serialization.formatters/4.3.0", + "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Json/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==", + "path": "system.runtime.serialization.json/4.3.0", + "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==", + "path": "system.security.cryptography.algorithms/4.3.1", + "hashPath": "system.security.cryptography.algorithms.4.3.1.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", + "path": "system.security.cryptography.pkcs/5.0.0", + "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "path": "system.security.cryptography.protecteddata/5.0.0", + "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MYmkHtCW+paFmPGFDktnLdOeH3zUrNchbZNki87E1ejNSMm9enSRbJokmvFrsWUrDE4bRE1lVeAle01+t6SGhA==", + "path": "system.security.cryptography.xml/5.0.0", + "hashPath": "system.security.cryptography.xml.5.0.0.nupkg.sha512" + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "path": "system.security.permissions/5.0.0", + "hashPath": "system.security.permissions.5.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.Security.SecureString/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==", + "path": "system.security.securestring/4.3.0", + "hashPath": "system.security.securestring.4.3.0.nupkg.sha512" + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "path": "system.servicemodel.http/4.9.0", + "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "path": "system.servicemodel.primitives/4.9.0", + "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "path": "system.text.encoding.codepages/5.0.0", + "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "path": "system.threading.thread/4.3.0", + "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "path": "system.threading.threadpool/4.3.0", + "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BahUww/+mdP4ARCAh2RQhQTg13wYLVrBb9SYVgW8ZlrwjraGCXHGjo0oIiUfZ34LUZkMMR+RAzR7dEY4S1HeQQ==", + "path": "system.valuetuple/4.4.0", + "hashPath": "system.valuetuple.4.4.0.nupkg.sha512" + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "path": "system.windows.extensions/5.0.0", + "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==", + "path": "system.xml.readerwriter/4.3.1", + "hashPath": "system.xml.readerwriter.4.3.1.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "path": "system.xml.xmlserializer/4.3.0", + "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512" + }, + "WebMarkupMin.AspNet.Common/2.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QmsjcOQkUQ7kEqzMEXuvVrcBu90B7tfPe177PdoAroakgvAhu/kJf96Pn0OSwVWXx4d8gNjFNYhMbg1ghYYPzw==", + "path": "webmarkupmin.aspnet.common/2.10.0", + "hashPath": "webmarkupmin.aspnet.common.2.10.0.nupkg.sha512" + }, + "WebMarkupMin.AspNetCore6/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H17p+ZVkA1jm6LcMtxvc13UMtFY+RsKOHmRSUQngF/Tu7IlN8N+TfwYwOZmrgBVNOFFMAsYiRBwbvTqmbGrhMQ==", + "path": "webmarkupmin.aspnetcore6/2.11.0", + "hashPath": "webmarkupmin.aspnetcore6.2.11.0.nupkg.sha512" + }, + "WebMarkupMin.Core/2.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FlEMQbamh/L6nYa4A7coH0X3G6IynOM7q+/3Wub7Y4DVGyOEXHQbUHkvJ61RXtFnT9tagfzsn1iiSm3VoOumzw==", + "path": "webmarkupmin.core/2.9.0", + "hashPath": "webmarkupmin.core.2.9.0.nupkg.sha512" + }, + "WebMarkupMin.NUglify/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qD4Smh2MMggVlJk+bur2TZ5o/FasrhY/uqgiZL+yeWR2WOLviQsnlWqhI41SZcV5XUnSuy4Fkx3ahpgeHbusIg==", + "path": "webmarkupmin.nuglify/2.11.0", + "hashPath": "webmarkupmin.nuglify.2.11.0.nupkg.sha512" + }, + "Nop.Services/4.5.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Nop.Web.Framework/4.5.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Results/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpLogging/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Metadata/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Memory.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.CommandLine/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.UserSecrets/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Features/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Composite/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization.Abstractions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Abstractions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Primitives.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/11.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Nop.Core.Reference/4.5.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Nop.Data.Reference/4.5.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Nop.Web.Reference/4.5.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Asn1.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.AccessControl.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes.AccessControl/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http.Json/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.OpenSsl.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Json.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple.Reference/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer.Reference/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/6.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Nop.Core/4.5.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Nop.Data/4.5.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Nop.Web/4.5.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.dll b/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.dll new file mode 100644 index 0000000..ec10dd2 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.dll differ diff --git a/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.pdb b/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.pdb new file mode 100644 index 0000000..5b59577 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Nop.Plugin.Misc.SimpleLMS.pdb differ diff --git a/src/Plugins/Misc.SimpleLMS/Views/.DS_Store b/src/Plugins/Misc.SimpleLMS/Views/.DS_Store new file mode 100644 index 0000000..edffb19 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/Views/.DS_Store differ diff --git a/src/Plugins/Misc.SimpleLMS/Views/Customer/CoursesDetails.cshtml b/src/Plugins/Misc.SimpleLMS/Views/Customer/CoursesDetails.cshtml new file mode 100755 index 0000000..ca4af77 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Views/Customer/CoursesDetails.cshtml @@ -0,0 +1,220 @@ +@model CourseDetail +@using Nop.Core +@using Nop.Core.Domain.Catalog +@inject CatalogSettings catalogSettings +@inject IWorkContext workContext +@{ + +} +@{ + var sectionCount = 1; + var lessonCount = 1; + Layout = "_CourseDetailRoot"; + + NopHtml.AddTitleParts(Model.Name); + + NopHtml.AddCssFileParts("~/lib_npm/bootstrap/css/bootstrap.min.css"); + NopHtml.AddCssFileParts("~/lib_npm/@fortawesome/fontawesome-free/css/all.min.css"); + NopHtml.AddCssFileParts("~/Plugins/Misc.SimpleLMS/Content/Public/Productstyle.css"); + // + + NopHtml.AddScriptParts(ResourceLocation.Footer, "~/lib_npm/bootstrap/js/bootstrap.min.js"); + + +} + + + +
+
+
+
+
+ @if (Model.Sections.Count == 0) + { +
+

@T("SimpleLMS.NoLessonsAvailable")

+
+ } +
+ +
+
+
+
+ @foreach (var section in Model.Sections) + { +
+
+

+ +

+
+
+
+ + @foreach (var lesson in section.Lessons) + {
+
+ + + + + + @(lessonCount++). @lesson.Name + + +
+ + @if (lesson.LessonType == Nop.Plugin.Misc.SimpleLMS.Domains.LessonType.Video) + { + + } + @if (lesson.LessonType == Nop.Plugin.Misc.SimpleLMS.Domains.LessonType.Text) + { + + } + + @(lesson.Duration>0? lesson.Duration+ " " + @T("SimpleLMS.Minutes"):"") + + + +
+
+
+ } + +
+
+
+ } +
+ + +
+
+
+
+
+ + + + diff --git a/src/Plugins/Misc.SimpleLMS/Views/Customer/List.cshtml b/src/Plugins/Misc.SimpleLMS/Views/Customer/List.cshtml new file mode 100755 index 0000000..7702f9d --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Views/Customer/List.cshtml @@ -0,0 +1,188 @@ +@model CourseSearchModel + + + +@{ + Layout = "_ColumnsTwo"; + NopHtml.AddTitleParts(T("SimpleLMS.MyCourses").Text); + +} + +@section left +{ + @await Component.InvokeAsync("CustomerNavigation", new { selectedTabId = SimpleLMSDefaults.CustomerMyCoursesMenuTab }) +} + + + + + + + \ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/Views/Customer/_CourseDetailRoot.cshtml b/src/Plugins/Misc.SimpleLMS/Views/Customer/_CourseDetailRoot.cshtml new file mode 100644 index 0000000..65ed855 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Views/Customer/_CourseDetailRoot.cshtml @@ -0,0 +1,16 @@ +@{ + Layout = "_Root.Head"; +} +@await Component.InvokeAsync("Widget", new { widgetZone = PublicWidgetZones.BodyStartHtmlTagAfter }) +@{ await Html.RenderPartialAsync("_Notifications"); } +@{ await Html.RenderPartialAsync("_JavaScriptDisabledWarning"); } +@{ await Html.RenderPartialAsync("_OldInternetExplorerWarning"); } + +
+
+ Loading... +
+ +
+ +@RenderBody() diff --git a/src/Plugins/Misc.SimpleLMS/Views/Customer/_LessonContent.cshtml b/src/Plugins/Misc.SimpleLMS/Views/Customer/_LessonContent.cshtml new file mode 100755 index 0000000..149b8ad --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Views/Customer/_LessonContent.cshtml @@ -0,0 +1,38 @@ +@model Nop.Plugin.Misc.SimpleLMS.Models.LessonDetail +@using Nop.Core +@using Nop.Core.Domain.Catalog +@using Nop.Plugin.Misc.SimpleLMS.Domains +@inject CatalogSettings catalogSettings +@inject IWorkContext workContext +@{ + + var simpleLMSSettings = (SimpleLMSSettings)ViewData["simpleLMSSettings"]; + +} + +@if (Model.LessonType == LessonType.Video) +{ +
+ @if (Model.Video.VideoType == VideoType.Youtube) + { +
+ +
+ } + @if (Model.Video.VideoType == VideoType.Vimeo) + { +
+ +
+ + } +
+ + +} +
+ @Html.Raw(Model.LessonContents) +
diff --git a/src/Plugins/Misc.SimpleLMS/Views/Customer/_MyCourseList.cshtml b/src/Plugins/Misc.SimpleLMS/Views/Customer/_MyCourseList.cshtml new file mode 100644 index 0000000..af4d4bc --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Views/Customer/_MyCourseList.cshtml @@ -0,0 +1,99 @@ + + +@model CourseOverviewListModel + +@inject CatalogSettings catalogSettings +@inject IWorkContext workContext +@{ + +} + + +@if (Model.Courses.Count() > 0) +{ +
+
+ @foreach (var course in Model.Courses) + { + + } +
+
+ + var pager = Html.Pager(Model) + .QueryParam("page") + .RenderEmptyParameters(true); + + @if (!await pager.IsEmpty()) + { +
` + @pager +
+ + } + +} +else +{ +
@T("SimpleLMS.MyCourses.NoCoursesToShow")
+} + + + + + +@*
+
+ + @Model.DefaultPictureModel.AlternateText + +
+
+

+ @Model.Name +

+ @if (catalogSettings.ShowSkuOnCatalogPages && !string.IsNullOrEmpty(Model.Sku)) + { +
+ @Model.Sku +
+ } + @if (Model.ReviewOverviewModel.AllowCustomerReviews) + { + var ratingPercent = 0; + if (Model.ReviewOverviewModel.TotalReviews != 0) + { + ratingPercent = ((Model.ReviewOverviewModel.RatingSum*100)/Model.ReviewOverviewModel.TotalReviews)/5; + } +
+
+
+
+
+
+ } +
+ @Html.Raw(Model.ShortDescription) +
+ +
+
*@ diff --git a/src/Plugins/Misc.SimpleLMS/Views/_ViewImports.cshtml b/src/Plugins/Misc.SimpleLMS/Views/_ViewImports.cshtml new file mode 100755 index 0000000..fc05ebc --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/Views/_ViewImports.cshtml @@ -0,0 +1,51 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage + +@inject INopHtmlHelper NopHtml + +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@*we remove the default InputTagHelper to prevent the checkbox duplicating: https://stackoverflow.com/questions/42544961/asp-net-core-custom-input-tag-helper-rendering-duplicate-checkboxes*@ +@removeTagHelper Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework +@addTagHelper *, MiniProfiler.AspNetCore.Mvc + +@using System.Globalization; +@using System.Text.Encodings.Web +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Microsoft.Extensions.Primitives +@using static Nop.Services.Common.NopLinksDefaults +@using Nop.Web.Components +@using Nop.Web.Extensions +@using Nop.Web.Framework +@using Nop.Web.Framework.Events +@using Nop.Web.Framework.Extensions +@using Nop.Web.Framework.Infrastructure +@using Nop.Web.Framework.Models +@using Nop.Web.Framework.Mvc.Routing +@using Nop.Web.Framework.Security.Captcha +@using Nop.Web.Framework.Security.Honeypot +@using Nop.Web.Framework.Themes +@using Nop.Web.Framework.UI +@using Nop.Web.Models.Blogs +@using Nop.Web.Models.Boards +@using Nop.Web.Models.Catalog +@using Nop.Web.Models.Checkout +@using Nop.Web.Models.Cms +@using Nop.Web.Models.Common +@using Nop.Web.Models.Customer +@using Nop.Web.Models.Media +@using Nop.Web.Models.News +@using Nop.Web.Models.Newsletter +@using Nop.Web.Models.Order +@using Nop.Web.Models.Polls +@using Nop.Web.Models.PrivateMessages +@using Nop.Web.Models.Profile +@using Nop.Web.Models.ShoppingCart +@using Nop.Web.Models.Topics +@using Nop.Web.Models.Vendors + + +@using Nop.Core +@using Nop.Core.Domain.Catalog + +@using Nop.Plugin.Misc.SimpleLMS.Models +@using Nop.Plugin.Misc.SimpleLMS \ No newline at end of file diff --git a/src/Plugins/Misc.SimpleLMS/logo.jpg b/src/Plugins/Misc.SimpleLMS/logo.jpg new file mode 100755 index 0000000..2582098 Binary files /dev/null and b/src/Plugins/Misc.SimpleLMS/logo.jpg differ diff --git a/src/Plugins/Misc.SimpleLMS/plugin.json b/src/Plugins/Misc.SimpleLMS/plugin.json new file mode 100755 index 0000000..81fc5b7 --- /dev/null +++ b/src/Plugins/Misc.SimpleLMS/plugin.json @@ -0,0 +1,11 @@ +{ + "Group": "Misc", + "FriendlyName": "SimpleLMS", + "SystemName": "Misc.SimpleLMS", + "Version": "1.00", + "SupportedVersions": [ "4.50" ], + "Author": "www.slyko.tech", + "DisplayOrder": 1, + "FileName": "Nop.Plugin.Misc.SimpleLMS.dll", + "Description": "SimpleLMS is a learning management system plugin for NopCommerce." +} \ No newline at end of file