From a4f46cb24acdc36f8eaa2f21351344d22b7458e0 Mon Sep 17 00:00:00 2001 From: Kalarumeth <70245579+Kalarumeth@users.noreply.github.com> Date: Tue, 2 Aug 2022 09:53:18 +0200 Subject: [PATCH] WebParts Al momento le wp non funzionano --- console_spo_utils/Program.cs | 160 ++- .../Debug/net6.0/console_spo_utils.deps.json | 813 +++++++---- console_spo_utils/console_spo_utils.csproj | 5 + ...sole_spo_utils.csproj.FileListAbsolute.txt | 26 +- ...console_spo_utils.csproj.nuget.dgspec.json | 23 +- .../console_spo_utils.csproj.nuget.g.props | 6 +- .../console_spo_utils.csproj.nuget.g.targets | 1 + console_spo_utils/obj/project.assets.json | 1274 ++++++++++++----- 8 files changed, 1597 insertions(+), 711 deletions(-) diff --git a/console_spo_utils/Program.cs b/console_spo_utils/Program.cs index 55fedf5..e6fb007 100644 --- a/console_spo_utils/Program.cs +++ b/console_spo_utils/Program.cs @@ -1,18 +1,16 @@ -using Microsoft.SharePoint; +using Microsoft.Online.SharePoint.TenantAdministration; using Microsoft.SharePoint.Client; using Microsoft.SharePoint.Client.DocumentSet; -using Microsoft.Online.SharePoint.TenantAdministration; -using Microsoft.PowerPlatform.Dataverse.Client; -using System; +using Microsoft.SharePoint.Client.WebParts; +using OfficeDevPnP.Core.Pages; using System.Collections.Concurrent; using System.Net; -using System.Net.Http; using System.Security; using System.Text; using System.Text.Json; -using System.Threading; -using System.Threading.Tasks; using System.Web; +using SP = Microsoft.SharePoint.Client; +using spc = SharePointOnlineUtils.SharePointCustomOperation; namespace SharePointOnlineUtils { @@ -41,6 +39,7 @@ namespace SharePointOnlineUtils public class Program { + public static async Task Main() { #region SPO Credential @@ -88,7 +87,7 @@ namespace SharePointOnlineUtils string year = DateTime.Now.Year.ToString(); string projectsYear = $"Commesse{year}"; string listTitle = $"Lista Commesse {year}"; - string ssProjectTitle = "CT0011"; + string ssProjectTitle = "CT0001"; Uri site = new Uri($"{siteCollection}/sites/{projectsYear}"); Uri subSite = new Uri($"{siteCollection}/sites/{projectsYear}/{ssProjectTitle}"); @@ -97,20 +96,22 @@ namespace SharePointOnlineUtils var ctx = authMgr.GetContext(site, user, psw); var sCtx = authMgr.GetContext(subSite, user, psw); - if (SharePointCustomOperation.SiteExist(ctx) == true && SharePointCustomOperation.SiteExist(sCtx) == false) - { - #region Site Context - SharePointCustomOperation.ProjectSubSite(ssProjectTitle, projectsYear, ctx); - SharePointCustomOperation.OnenoteSPFeature(ctx, year, ssProjectTitle); - SharePointCustomOperation.ProjectListEntry(ssProjectTitle, listTitle, projectsYear, ctx); - #endregion + //if (SharePointCustomOperation.SiteExist(ctx) == true && SharePointCustomOperation.SiteExist(sCtx) == false) + //{ + // #region Site Context + // SharePointCustomOperation.ProjectSubSite(ssProjectTitle, projectsYear, ctx); + // SharePointCustomOperation.OnenoteSPFeature(ctx, year, ssProjectTitle); + // SharePointCustomOperation.ProjectListEntry(ssProjectTitle, listTitle, projectsYear, ctx); + // #endregion - #region SubSite Context - SharePointCustomOperation.ProjectDocLib(ssProjectTitle, sCtx); - SharePointCustomOperation.ProjectSubProjList(ssProjectTitle, sCtx); - SharePointCustomOperation.ProjectQuickMenu(ssProjectTitle, subSite.ToString(), sCtx); - #endregion - } + // #region SubSite Context + // SharePointCustomOperation.ProjectDocLib(ssProjectTitle, sCtx); + // SharePointCustomOperation.ProjectSubProjList(ssProjectTitle, sCtx); + // SharePointCustomOperation.ProjectQuickMenu(ssProjectTitle, subSite.ToString(), sCtx); + // #endregion + //} + + spc.WebPartPage(sCtx); } @@ -794,6 +795,7 @@ namespace SharePointOnlineUtils #region Rights public static async Task DomainGroupRights(ClientContext ctx, string docLibName) { + #region Groups & Privileges Dictionary itsADGruopRole = new Dictionary() { { "ITS-SPO-PROJ-OWNER", "Full Control" }, @@ -809,13 +811,15 @@ namespace SharePointOnlineUtils { "ITS-SPO-PROJ-SALES-MODIFY", "Edit" }, { "ITS-SPO-PROJ-SALES-READ", "Read" } }; + #endregion Console.WriteLine("> Inizializzata la fase di assegnazione dei ruoli."); - if (string.IsNullOrEmpty(docLibName)) + try { - try + if (string.IsNullOrEmpty(docLibName)) { + #region Site Permission Web web = ctx.Web; foreach (KeyValuePair role in itsADGruopRole) @@ -833,13 +837,11 @@ namespace SharePointOnlineUtils ctx.ExecuteQuery(); Console.WriteLine("> Completata la fase di assegnazione dei ruoli."); + #endregion } - catch (Exception ex) { Console.WriteLine($"!> Qualcosa è andato storto... ( {ex.Message} )"); return; } - } - else - { - try + else { + #region DocLib Permission Web web = ctx.Web; List list = web.Lists.GetByTitle(docLibName); ctx.Load(list); @@ -862,9 +864,102 @@ namespace SharePointOnlineUtils } ctx.ExecuteQuery(); Console.WriteLine($"> Completata la fase di assegnazione dei ruoli in {docLibName}."); + #endregion } - catch (Exception ex) { Console.WriteLine($"!> Qualcosa è andato storto... ( {ex.Message} {ex.StackTrace} )"); return; } + } + catch (Exception ex) { Console.WriteLine($"!> Qualcosa è andato storto... ( {ex.Message} {ex.StackTrace} )"); return; } + } + #endregion + + #region WebParts + protected void ReplaceWebPartsWithAppParts(ClientContext ctx) + { + Web web = ctx.Web; + // Get properties from the Web. + ctx.Load(web, + w => w.ServerRelativeUrl, + w => w.AllProperties); + ctx.ExecuteQuery(); + // Read the Pages library name from the Web properties. + var pagesListName = web.AllProperties["__pageslistname"] as string; + + var list = web.Lists.GetByTitle(pagesListName); + var items = list.GetItems(CamlQuery.CreateAllItemsQuery()); + // Get the file associated with each list item. + ctx.Load(items, i => i.Include(item => item.File)); + ctx.ExecuteQuery(); + + // Iterate through all pages in the Pages list. + foreach (var item in items) + { + FindWebPartToReplace(item, ctx, web); + } + + } + + private static void FindWebPartToReplace(ListItem item, ClientContext clientContext, Web web) + { + SP.File page = item.File; + // Requires Full Control permissions on the Web. + string oldWebPartTitle = ""; + LimitedWebPartManager webPartManager = page.GetLimitedWebPartManager(PersonalizationScope.Shared); + clientContext.Load(webPartManager, + wpm => wpm.WebParts, + wpm => wpm.WebParts.Include( + wp => wp.WebPart.Title)); + clientContext.ExecuteQuery(); + + foreach (var oldWebPartDefinition in webPartManager.WebParts) + { + var oldWebPart = oldWebPartDefinition.WebPart; + // Modify the web part if we find an old web part with the same title. + if (oldWebPart.Title != oldWebPartTitle) continue; + + ReplaceWebPart(web, item, webPartManager, oldWebPartDefinition, clientContext, page); + } + } + + private static void ReplaceWebPart(Web web, ListItem item, LimitedWebPartManager webPartManager, WebPartDefinition oldWebPartDefinition, ClientContext clientContext, SP.File page) + { + string appPartXml = ""; + + // Create a web part definition using the XML string. + var definition = webPartManager.ImportWebPart(appPartXml); + webPartManager.AddWebPart(definition.WebPart, "RightColumn", 0); + + // Delete the old web part from the page. + oldWebPartDefinition.DeleteWebPart(); + clientContext.Load(page, + p => p.CheckOutType, + p => p.Level); + + clientContext.ExecuteQuery(); + + } + + public static void WebPartPage(ClientContext ctx) + { + try + { + ClientSidePage pageWebParts = ctx.Web.AddClientSidePage("PageWithSections.aspx", true); + + pageWebParts.AddSection(CanvasSectionTemplate.OneColumnFullWidth, 5); + pageWebParts.Save(); + var components = pageWebParts.AvailableClientSideComponents(); + + var webPartToAdd = components.Where(wp => wp.ComponentType == 1 && wp.Name == "MYWEBPARTNAME").FirstOrDefault(); + + if (webPartToAdd != null) + { + ClientSideWebPart clientWp = new ClientSideWebPart(webPartToAdd) { Order = 1 }; + pageWebParts.AddControl(clientWp, pageWebParts.Sections[0].Columns[2]); + } + + pageWebParts.Save(); + ctx.ExecuteQuery(); + } + catch (Exception ex) { Console.WriteLine($"!> Qualcosa è andato storto... ( {ex.Message} )\n[\n{ex.StackTrace}\n]"); return; } } #endregion } @@ -877,12 +972,13 @@ namespace SharePointOnlineUtils private const string defaultAADAppId = "46e6296e-176f-4ebb-a14b-bdd5678c16e6"; - // Token cache handling + private static readonly SemaphoreSlim semaphoreSlimTokens = new SemaphoreSlim(1); private AutoResetEvent tokenResetEvent = null; private readonly ConcurrentDictionary tokenCache = new ConcurrentDictionary(); private bool disposedValue; + #region CSOM internal class TokenWaitInfo { public RegisteredWaitHandle Handle = null; @@ -965,7 +1061,7 @@ namespace SharePointOnlineUtils else { //Console.WriteLine($"Returning token from cache for resource {resourceUri.DnsSafeHost} and user {userPrincipalName}"); - Console.WriteLine("OK - Execution Querry"); + Console.WriteLine("OK - Execution Query"); return accessTokenFromCache; } } @@ -1056,6 +1152,6 @@ namespace SharePointOnlineUtils Dispose(disposing: true); GC.SuppressFinalize(this); } + #endregion } - } diff --git a/console_spo_utils/bin/Debug/net6.0/console_spo_utils.deps.json b/console_spo_utils/bin/Debug/net6.0/console_spo_utils.deps.json index d16c5be..97c80c1 100644 --- a/console_spo_utils/bin/Debug/net6.0/console_spo_utils.deps.json +++ b/console_spo_utils/bin/Debug/net6.0/console_spo_utils.deps.json @@ -8,9 +8,14 @@ ".NETCoreApp,Version=v6.0": { "console_spo_utils/1.0.0": { "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly.Authentication": "6.0.7", "Microsoft.PowerPlatform.Dataverse.Client": "1.0.9", "Microsoft.SharePoint.Client": "14.0.4762.1000", "Microsoft.SharePointOnline.CSOM": "16.1.22615.12000", + "PnP.Core": "1.7.0", + "PnP.Core.Admin": "1.7.0", + "PnP.Core.Auth": "1.7.0", + "SharePointPnP.IdentityModel.Extensions": "1.2.4", "SharePointPnPCoreOnline": "3.28.2012", "System.IdentityModel.Tokens.Jwt": "6.21.0" }, @@ -29,6 +34,17 @@ } } }, + "Microsoft.ApplicationInsights/2.16.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "assemblyVersion": "2.16.0.18277", + "fileVersion": "2.16.0.18277" + } + } + }, "Microsoft.AspNet.WebApi.Client/5.2.3": { "dependencies": { "Newtonsoft.Json": "13.0.1" @@ -51,6 +67,90 @@ } } }, + "Microsoft.AspNetCore.Authorization/6.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.7", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32205" + } + } + }, + "Microsoft.AspNetCore.Components/6.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "6.0.7", + "Microsoft.AspNetCore.Components.Analyzers": "6.0.7" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32205" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/6.0.7": {}, + "Microsoft.AspNetCore.Components.Authorization/6.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "6.0.7", + "Microsoft.AspNetCore.Components": "6.0.7" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32205" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/6.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.7" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32205" + } + } + }, + "Microsoft.AspNetCore.Components.Web/6.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.7", + "Microsoft.AspNetCore.Components.Forms": "6.0.7", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.JSInterop": "6.0.7", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32205" + } + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.Authentication/6.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Components.Authorization": "6.0.7", + "Microsoft.AspNetCore.Components.Web": "6.0.7" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": { + "assemblyVersion": "6.0.7.0", + "fileVersion": "6.0.722.32205" + } + } + }, + "Microsoft.AspNetCore.Metadata/6.0.7": { + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32205" + } + } + }, "Microsoft.Azure.ActiveDirectory.GraphClient/2.1.0": { "dependencies": { "Microsoft.Data.Edm": "5.8.4", @@ -200,115 +300,97 @@ } } }, - "Microsoft.Extensions.Caching.Abstractions/3.1.8": { + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.8" + "Microsoft.Extensions.Primitives": "6.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "Microsoft.Extensions.Caching.Memory/3.1.8": { + "Microsoft.Extensions.Caching.Memory/6.0.0": { "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "3.1.8", - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", - "Microsoft.Extensions.Logging.Abstractions": "3.1.8", - "Microsoft.Extensions.Options": "3.1.8" + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "Microsoft.Extensions.Configuration/3.1.8": { + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "3.1.8" + "Microsoft.Extensions.Primitives": "6.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.8": { + "Microsoft.Extensions.DependencyInjection/6.0.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "Microsoft.Extensions.Configuration.Binder/3.1.8": { + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Http/6.0.0": { "dependencies": { - "Microsoft.Extensions.Configuration": "3.1.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "Microsoft.Extensions.DependencyInjection/3.1.8": { + "Microsoft.Extensions.Logging/6.0.0": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8" + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": { + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" - } - } - }, - "Microsoft.Extensions.Http/3.1.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", - "Microsoft.Extensions.Logging": "3.1.8", - "Microsoft.Extensions.Options": "3.1.8" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Http.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" - } - } - }, - "Microsoft.Extensions.Logging/3.1.8": { - "dependencies": { - "Microsoft.Extensions.Configuration.Binder": "3.1.8", - "Microsoft.Extensions.DependencyInjection": "3.1.8", - "Microsoft.Extensions.Logging.Abstractions": "3.1.8", - "Microsoft.Extensions.Options": "3.1.8" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/3.1.8": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" } } }, @@ -320,23 +402,26 @@ } } }, - "Microsoft.Extensions.Options/3.1.8": { + "Microsoft.Extensions.Options/6.0.0": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", - "Microsoft.Extensions.Primitives": "3.1.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "Microsoft.Extensions.Primitives/3.1.8": { + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "3.1.8.0", - "fileVersion": "3.100.820.42004" + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, @@ -366,18 +451,18 @@ } } }, - "Microsoft.Identity.Client/4.35.1": { + "Microsoft.Identity.Client/4.36.1": { "runtime": { "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.35.1.0", - "fileVersion": "4.35.1.0" + "assemblyVersion": "4.36.1.0", + "fileVersion": "4.36.1.0" } } }, "Microsoft.Identity.Client.Extensions.Msal/2.18.9": { "dependencies": { - "Microsoft.Identity.Client": "4.35.1", - "System.Security.Cryptography.ProtectedData": "4.7.0" + "Microsoft.Identity.Client": "4.36.1", + "System.Security.Cryptography.ProtectedData": "6.0.0" }, "runtime": { "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { @@ -454,21 +539,29 @@ } } }, - "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.JSInterop/6.0.7": { + "runtime": { + "lib/net6.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32205" + } + } + }, + "Microsoft.NETCore.Platforms/2.0.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.PowerPlatform.Dataverse.Client/1.0.9": { "dependencies": { - "Microsoft.Extensions.Caching.Memory": "3.1.8", - "Microsoft.Extensions.DependencyInjection": "3.1.8", - "Microsoft.Extensions.Http": "3.1.8", - "Microsoft.Extensions.Logging": "3.1.8", - "Microsoft.Identity.Client": "4.35.1", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Identity.Client": "4.36.1", "Microsoft.Identity.Client.Extensions.Msal": "2.18.9", "Microsoft.Rest.ClientRuntime": "2.3.20", "Microsoft.VisualBasic": "10.3.0", "Newtonsoft.Json": "13.0.1", "System.Collections": "4.3.0", - "System.Configuration.ConfigurationManager": "4.7.0", + "System.Configuration.ConfigurationManager": "6.0.0", "System.Globalization": "4.3.0", "System.Linq": "4.3.0", "System.Linq.Expressions": "4.3.0", @@ -480,8 +573,8 @@ "System.Runtime.Serialization.Primitives": "4.3.0", "System.Runtime.Serialization.Xml": "4.3.0", "System.Security.Cryptography.Algorithms": "4.3.1", - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "5.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0", "System.ServiceModel.Duplex": "4.9.0", "System.ServiceModel.Http": "4.9.0", "System.ServiceModel.Primitives": "4.9.0", @@ -577,33 +670,30 @@ "Microsoft.VisualBasic/10.3.0": {}, "Microsoft.Win32.Primitives/4.0.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "Microsoft.Win32.SystemEvents/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - }, + "Microsoft.Win32.SystemEvents/6.0.0": { "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, "NETStandard.Library/1.6.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.Win32.Primitives": "4.0.1", "System.AppContext": "4.1.0", "System.Collections": "4.3.0", @@ -657,24 +747,69 @@ } } }, + "PnP.Core/1.7.0": { + "dependencies": { + "AngleSharp": "0.14.0", + "Microsoft.ApplicationInsights": "2.16.0", + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.IdentityModel.Tokens.Jwt": "6.21.0", + "TimeZoneConverter": "3.5.0" + }, + "runtime": { + "lib/net6.0/PnP.Core.dll": { + "assemblyVersion": "1.7.0.0", + "fileVersion": "1.7.0.0" + } + } + }, + "PnP.Core.Admin/1.7.0": { + "dependencies": { + "PnP.Core": "1.7.0" + }, + "runtime": { + "lib/net6.0/PnP.Core.Admin.dll": { + "assemblyVersion": "1.7.0.0", + "fileVersion": "1.7.0.0" + } + } + }, + "PnP.Core.Auth/1.7.0": { + "dependencies": { + "Microsoft.Identity.Client": "4.36.1", + "PnP.Core": "1.7.0" + }, + "runtime": { + "lib/net6.0/PnP.Core.Auth.dll": { + "assemblyVersion": "1.7.0.0", + "fileVersion": "1.7.0.0" + } + } + }, "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.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0" } }, "runtime.native.System.IO.Compression/4.1.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0" } }, "runtime.native.System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -756,7 +891,7 @@ }, "System.Collections/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -775,21 +910,21 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/6.0.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "5.0.0" + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" }, "runtime": { - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, "System.Console/4.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Runtime": "4.3.0", @@ -798,70 +933,66 @@ }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource/4.3.0": { + "System.Diagnostics.DiagnosticSource/6.0.0": { "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" + "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, "System.Diagnostics.Tools/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Diagnostics.Tracing/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Drawing.Common/5.0.0": { + "System.Drawing.Common/6.0.0": { "dependencies": { - "Microsoft.Win32.SystemEvents": "5.0.0" + "Microsoft.Win32.SystemEvents": "6.0.0" }, "runtime": { - "lib/netcoreapp3.0/System.Drawing.Common.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { "rid": "unix", "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" }, - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, "System.Formats.Asn1/5.0.0": {}, "System.Globalization/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Globalization.Calendars/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Runtime": "4.3.0" @@ -869,7 +1000,7 @@ }, "System.Globalization.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -891,7 +1022,7 @@ }, "System.IO/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", @@ -900,7 +1031,7 @@ }, "System.IO.Compression/4.1.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.IO": "4.3.0", @@ -931,7 +1062,7 @@ }, "System.IO.FileSystem/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.IO.FileSystem.Primitives": "4.3.0", @@ -946,6 +1077,14 @@ "System.Runtime": "4.3.0" } }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, "System.Linq/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -978,10 +1117,10 @@ }, "System.Net.Http/4.3.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "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", @@ -1008,7 +1147,7 @@ }, "System.Net.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -1016,7 +1155,7 @@ }, "System.Net.Sockets/4.1.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Net.Primitives": "4.3.0", @@ -1122,7 +1261,7 @@ }, "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1156,7 +1295,7 @@ }, "System.Reflection.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Runtime": "4.3.0" @@ -1164,7 +1303,7 @@ }, "System.Reflection.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1172,7 +1311,7 @@ "System.Reflection.TypeExtensions/4.7.0": {}, "System.Resources.ResourceManager/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Reflection": "4.3.0", @@ -1181,13 +1320,13 @@ }, "System.Runtime/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0" } }, "System.Runtime.Caching/4.7.0": { "dependencies": { - "System.Configuration.ConfigurationManager": "4.7.0" + "System.Configuration.ConfigurationManager": "6.0.0" }, "runtime": { "lib/netstandard2.0/System.Runtime.Caching.dll": { @@ -1207,21 +1346,21 @@ "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, "System.Runtime.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.Handles/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.InteropServices/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1231,7 +1370,7 @@ }, "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.Reflection": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -1271,15 +1410,10 @@ "System.Xml.ReaderWriter": "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.AccessControl/6.0.0": {}, "System.Security.Cryptography.Algorithms/4.3.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.Collections": "4.3.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1302,7 +1436,7 @@ }, "System.Security.Cryptography.Csp/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.IO": "4.3.0", "System.Reflection": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1319,7 +1453,7 @@ }, "System.Security.Cryptography.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.Collections": "4.3.0", "System.Collections.Concurrent": "4.3.0", "System.Linq": "4.3.0", @@ -1381,25 +1515,25 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/6.0.0": { "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.56404" + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, "System.Security.Cryptography.X509Certificates/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -1429,7 +1563,7 @@ "System.Security.Cryptography.Xml/5.0.0": { "dependencies": { "System.Security.Cryptography.Pkcs": "5.0.0", - "System.Security.Permissions": "5.0.0" + "System.Security.Permissions": "6.0.0" }, "runtime": { "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": { @@ -1438,15 +1572,15 @@ } } }, - "System.Security.Permissions/5.0.0": { + "System.Security.Permissions/6.0.0": { "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Windows.Extensions": "5.0.0" + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" }, "runtime": { - "lib/net5.0/System.Security.Permissions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, @@ -1529,20 +1663,20 @@ }, "System.Text.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Text.Encoding.CodePages/4.5.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, "System.Text.Encoding.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0" @@ -1578,7 +1712,7 @@ }, "System.Threading.Tasks/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1592,27 +1726,27 @@ }, "System.Threading.Timer/4.0.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Platforms": "2.0.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Windows.Extensions/5.0.0": { + "System.Windows.Extensions/6.0.0": { "dependencies": { - "System.Drawing.Common": "5.0.0" + "System.Drawing.Common": "6.0.0" }, "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, @@ -1686,6 +1820,14 @@ "System.Xml.XmlDocument": "4.3.0" } }, + "TimeZoneConverter/3.5.0": { + "runtime": { + "lib/netstandard2.0/TimeZoneConverter.dll": { + "assemblyVersion": "3.5.0.0", + "fileVersion": "3.5.0.0" + } + } + }, "WindowsAzure.Storage/7.0.0": { "dependencies": { "Microsoft.Azure.KeyVault.Core": "1.0.0", @@ -1715,6 +1857,13 @@ "path": "anglesharp/0.14.0", "hashPath": "anglesharp.0.14.0.nupkg.sha512" }, + "Microsoft.ApplicationInsights/2.16.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-77RzjJe9nGn7wTOQvEFQZRdkQjETrbC4MhytzwTv2TTuoqoHvmUIzwFqE6BjjFGsHbZhYNYZg/YJbOa4kUMSSg==", + "path": "microsoft.applicationinsights/2.16.0", + "hashPath": "microsoft.applicationinsights.2.16.0.nupkg.sha512" + }, "Microsoft.AspNet.WebApi.Client/5.2.3": { "type": "package", "serviceable": true, @@ -1729,6 +1878,62 @@ "path": "microsoft.aspnet.webapi.core/5.2.3", "hashPath": "microsoft.aspnet.webapi.core.5.2.3.nupkg.sha512" }, + "Microsoft.AspNetCore.Authorization/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFVhR/obKzKWKT359cF+jEm2Bs2ytWwAkDwj0CsPwXIKkTZENSmgGP3pAkKW8vf+4RSFZNUYNt8s9OGTVfgBqA==", + "path": "microsoft.aspnetcore.authorization/6.0.7", + "hashPath": "microsoft.aspnetcore.authorization.6.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1OkW1RCpDte29hc74ZMpBqlzGg19yRsvDRayCnLddxjX37dA48d5sur4sVmJ+fqIV51rvTYJX1conaNoA9grDA==", + "path": "microsoft.aspnetcore.components/6.0.7", + "hashPath": "microsoft.aspnetcore.components.6.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Analyzers/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9xNHguX3r0S9f5BIZxtOVe2HlL4xJlRRxHmRGT2RotyiKGwV2jLp6v8+ZR4XtblSC2MCAKQ0NlSo2NvI8Yesyw==", + "path": "microsoft.aspnetcore.components.analyzers/6.0.7", + "hashPath": "microsoft.aspnetcore.components.analyzers.6.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Authorization/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eEp3j2BQ9u4jS/Y7y6X6Dv8xmH8evOYxVXAMvVZeYx/kn12oSx/B1Zin6dU118uPm4SY8gxB/9yDVEeqLhyG2w==", + "path": "microsoft.aspnetcore.components.authorization/6.0.7", + "hashPath": "microsoft.aspnetcore.components.authorization.6.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aV4hfSGvysPDyF5oGsMOzlCqdKmDv0MdMEDDb6Yef6Ky0rpcDBY9rPLGBy2q3wv5Y8B5zUnbtMRJYFDEenfPIA==", + "path": "microsoft.aspnetcore.components.forms/6.0.7", + "hashPath": "microsoft.aspnetcore.components.forms.6.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UVGBTzlK1BkfHLvo2ej84xlvpROnY1jvAn6OgIc5ksSSwSY0LPCRAo4Lejk0LvGFtiSYhinKJZfp5QNtjbUl5w==", + "path": "microsoft.aspnetcore.components.web/6.0.7", + "hashPath": "microsoft.aspnetcore.components.web.6.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.WebAssembly.Authentication/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gXX6JBiuxcyh8tlWmpscwYisPtuMDgFpD4ynGaB3s9zfiiUq+uOZL5yv8Qx8BOF+kcvUfamkNZSvnx30qNxnRQ==", + "path": "microsoft.aspnetcore.components.webassembly.authentication/6.0.7", + "hashPath": "microsoft.aspnetcore.components.webassembly.authentication.6.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRYA9dAPRhstA1x9RN0Y7O+28SeIwjASRL64mtuAb4Lywe7GykgFM2sK4cDrNedCOiCt2R6FretfNGjFeP9pRA==", + "path": "microsoft.aspnetcore.metadata/6.0.7", + "hashPath": "microsoft.aspnetcore.metadata.6.0.7.nupkg.sha512" + }, "Microsoft.Azure.ActiveDirectory.GraphClient/2.1.0": { "type": "package", "serviceable": true, @@ -1778,75 +1983,61 @@ "path": "microsoft.data.services.client/5.6.4", "hashPath": "microsoft.data.services.client.5.6.4.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Abstractions/3.1.8": { + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-iBIdKjKa2nR4LdknV2JMSRpJVM5TOca25EckPm6SZQT6HfH8RoHrn9m14GUAkvzE+uOziXRoAwr8YIC6ZOpyXg==", - "path": "microsoft.extensions.caching.abstractions/3.1.8", - "hashPath": "microsoft.extensions.caching.abstractions.3.1.8.nupkg.sha512" + "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/3.1.8": { + "Microsoft.Extensions.Caching.Memory/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-u04q7+tgc8l6pQ5HOcr6scgapkQQHnrhpGoCaaAZd24R36/NxGsGxuhSmhHOrQx9CsBLe2CVBN/4CkLlxtnnXw==", - "path": "microsoft.extensions.caching.memory/3.1.8", - "hashPath": "microsoft.extensions.caching.memory.3.1.8.nupkg.sha512" + "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "path": "microsoft.extensions.caching.memory/6.0.0", + "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Configuration/3.1.8": { + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-xWvtu/ra8xDOy62ZXzQj1ElmmH3GpZBSKvw4LbfNXKCy+PaziS5Uh0gQ47D4H4w3u+PJfhNWCCGCp9ORNEzkRw==", - "path": "microsoft.extensions.configuration/3.1.8", - "hashPath": "microsoft.extensions.configuration.3.1.8.nupkg.sha512" + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.8": { + "Microsoft.Extensions.DependencyInjection/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-0qbNyxGpuNP/fuQ3FLHesm1Vn/83qYcAgVsi1UQCQN1peY4YH1uiizOh4xbYkQyxiVMD/c/zhiYYv94G0DXSSA==", - "path": "microsoft.extensions.configuration.abstractions/3.1.8", - "hashPath": "microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512" + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Binder/3.1.8": { + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-l/oqIWRM4YF62mlCOrIKGUOCemsaID/lngK2SZEtpYI8LrktpjPd4QzvENWj5GebbLbqOtsFhF6Ko6dgzmUnBw==", - "path": "microsoft.extensions.configuration.binder/3.1.8", - "hashPath": "microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512" + "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.DependencyInjection/3.1.8": { + "Microsoft.Extensions.Http/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-tUpYcVxFqwh8wVD8O+6A8gJnVtl6L4N1Vd9bLJgQSJ0gjBTUQ/eKwJn0LglkkaDU7GAxODDv4eexgZn3QSE0NQ==", - "path": "microsoft.extensions.dependencyinjection/3.1.8", - "hashPath": "microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512" + "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "path": "microsoft.extensions.http/6.0.0", + "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": { + "Microsoft.Extensions.Logging/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-YP0kEBkSLTVl3znqZEux+xyJpz5iVNwFZf0OPS7nupdKbojSlO7Fa+JuQjLYpWfpAshaMcznu27tjWzfXRJnOA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.8", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512" + "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.Http/3.1.8": { + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-GRkzBs2wJG6jTGqRrT8l/Sqk4MiO0yQltiekDNw/X7L2l5/gKSud/6Vcjb9b5SPtgn6lxcn8qCmfDtk2kP/cOw==", - "path": "microsoft.extensions.http/3.1.8", - "hashPath": "microsoft.extensions.http.3.1.8.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/3.1.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bch88WGwrgJUabSOiTbPgne/jkCcWTyP97db8GWzQH9RcGi6TThiRm8ggsD+OXBW2UBwAYx1Zb1ns1elsMiomQ==", - "path": "microsoft.extensions.logging/3.1.8", - "hashPath": "microsoft.extensions.logging.3.1.8.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/3.1.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LxQPR/KE4P9nx304VcFipWPcW8ZOZOGHuiYlG0ncAQJItogDzR9nyYUNvziLObx2MfX2Z9iCTdAqEtoImaQOYg==", - "path": "microsoft.extensions.logging.abstractions/3.1.8", - "hashPath": "microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512" + "sha512": "sha512-dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==", + "path": "microsoft.extensions.logging.abstractions/6.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512" }, "Microsoft.Extensions.ObjectPool/5.0.10": { "type": "package", @@ -1855,19 +2046,19 @@ "path": "microsoft.extensions.objectpool/5.0.10", "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" }, - "Microsoft.Extensions.Options/3.1.8": { + "Microsoft.Extensions.Options/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-mpkwjNg5sr1XHEJwVS8G1w6dsh5/72vQOOe4aqhg012j93m8OOmfyIBwoQN4SE0KRRS+fatdW3qqUrHbRwlWOA==", - "path": "microsoft.extensions.options/3.1.8", - "hashPath": "microsoft.extensions.options.3.1.8.nupkg.sha512" + "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/3.1.8": { + "Microsoft.Extensions.Primitives/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-XcIoXQhT0kwnEhOKv/LmpWR6yF6QWmBTy9Fcsz4aHuCOgTJ7Zd23ELtUA4BfwlYoFlSedavS+vURz9tNekd44g==", - "path": "microsoft.extensions.primitives/3.1.8", - "hashPath": "microsoft.extensions.primitives.3.1.8.nupkg.sha512" + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" }, "Microsoft.Graph/1.9.0": { "type": "package", @@ -1883,12 +2074,12 @@ "path": "microsoft.graph.core/1.9.0", "hashPath": "microsoft.graph.core.1.9.0.nupkg.sha512" }, - "Microsoft.Identity.Client/4.35.1": { + "Microsoft.Identity.Client/4.36.1": { "type": "package", "serviceable": true, - "sha512": "sha512-u7IU0HlOG+nedpG/syrKStAVkHfp2cBJe09udQF8jFiQs3784dGteMneijM61g4NIGBi3XmDDNnbmPVi2K94Ng==", - "path": "microsoft.identity.client/4.35.1", - "hashPath": "microsoft.identity.client.4.35.1.nupkg.sha512" + "sha512": "sha512-E7nlLZ4CSdzLM4+OWXLrjHUfwn7S+fr7vnowjsFqeA3ST1jlNO8C87boCzsqBfjMSLeXaHa7SsvsKXoKAMHJuw==", + "path": "microsoft.identity.client/4.36.1", + "hashPath": "microsoft.identity.client.4.36.1.nupkg.sha512" }, "Microsoft.Identity.Client.Extensions.Msal/2.18.9": { "type": "package", @@ -1939,12 +2130,19 @@ "path": "microsoft.identitymodel.tokens/6.21.0", "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/5.0.0": { + "Microsoft.JSInterop/6.0.7": { "type": "package", "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + "sha512": "sha512-tnlXRE82H1zPFlOlGJDXOtCiPMqXDxdGVeM1YIDt4iS6qEsDtTtGJP6Zh01Qp1eJzsyfYyzsBFmwvkU4mTIbwQ==", + "path": "microsoft.jsinterop/6.0.7", + "hashPath": "microsoft.jsinterop.6.0.7.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "path": "microsoft.netcore.platforms/2.0.0", + "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512" }, "Microsoft.NETCore.Targets/1.1.0": { "type": "package", @@ -1995,12 +2193,12 @@ "path": "microsoft.win32.primitives/4.0.1", "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/5.0.0": { + "Microsoft.Win32.SystemEvents/6.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" + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" }, "NETStandard.Library/1.6.0": { "type": "package", @@ -2016,6 +2214,27 @@ "path": "newtonsoft.json/13.0.1", "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" }, + "PnP.Core/1.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dnxqfhSYupJDUPG2i+67Zn5PpXl9ukPqy6PWpSgeviHbjem9WnSkrhs3Amtg8mleXIgn20wwJdMYD7oZbsZvYQ==", + "path": "pnp.core/1.7.0", + "hashPath": "pnp.core.1.7.0.nupkg.sha512" + }, + "PnP.Core.Admin/1.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JFZo9lwfNCMghfCY3P7daw9Cvo6u6gogS4RY09nhvw1m28IMLCLfazPogxm65D2wsDHkftmamUvUcF68Ghd0Tg==", + "path": "pnp.core.admin/1.7.0", + "hashPath": "pnp.core.admin.1.7.0.nupkg.sha512" + }, + "PnP.Core.Auth/1.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yWUlCOPlBAUfdPF9y3SK3YWfkbl/wISFDn6hwCfqP3HqfFqs76A7hVWeT8IP0+zBYhpUGOnP2F+KiiE0sahkw==", + "path": "pnp.core.auth/1.7.0", + "hashPath": "pnp.core.auth.1.7.0.nupkg.sha512" + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, @@ -2170,12 +2389,12 @@ "path": "system.collections.concurrent/4.3.0", "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", - "path": "system.configuration.configurationmanager/4.7.0", - "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "path": "system.configuration.configurationmanager/6.0.0", + "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" }, "System.Console/4.0.0": { "type": "package", @@ -2191,12 +2410,12 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/4.3.0": { + "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "path": "system.diagnostics.diagnosticsource/4.3.0", - "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" }, "System.Diagnostics.Tools/4.3.0": { "type": "package", @@ -2212,12 +2431,12 @@ "path": "system.diagnostics.tracing/4.3.0", "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" }, - "System.Drawing.Common/5.0.0": { + "System.Drawing.Common/6.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" + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" }, "System.Formats.Asn1/5.0.0": { "type": "package", @@ -2289,6 +2508,13 @@ "path": "system.io.filesystem.primitives/4.3.0", "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, "System.Linq/4.3.0": { "type": "package", "serviceable": true, @@ -2492,12 +2718,12 @@ "path": "system.runtime.serialization.xml/4.3.0", "hashPath": "system.runtime.serialization.xml.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/5.0.0": { + "System.Security.AccessControl/6.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" + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" }, "System.Security.Cryptography.Algorithms/4.3.1": { "type": "package", @@ -2548,12 +2774,12 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", - "path": "system.security.cryptography.protecteddata/4.7.0", - "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", @@ -2569,12 +2795,12 @@ "path": "system.security.cryptography.xml/5.0.0", "hashPath": "system.security.cryptography.xml.5.0.0.nupkg.sha512" }, - "System.Security.Permissions/5.0.0": { + "System.Security.Permissions/6.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" + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" }, "System.Security.Principal.Windows/5.0.0": { "type": "package", @@ -2681,12 +2907,12 @@ "path": "system.threading.timer/4.0.1", "hashPath": "system.threading.timer.4.0.1.nupkg.sha512" }, - "System.Windows.Extensions/5.0.0": { + "System.Windows.Extensions/6.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" + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", @@ -2716,6 +2942,13 @@ "path": "system.xml.xmlserializer/4.3.0", "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512" }, + "TimeZoneConverter/3.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziTcQ5rVxRdtWJEnEqhKBukZGuUQregbf5G7QRrFKj6CwBLss5tSz0dlSHy9gzi5M5ES0PNQ0K2ACP/0XVT5Ow==", + "path": "timezoneconverter/3.5.0", + "hashPath": "timezoneconverter.3.5.0.nupkg.sha512" + }, "WindowsAzure.Storage/7.0.0": { "type": "package", "serviceable": true, diff --git a/console_spo_utils/console_spo_utils.csproj b/console_spo_utils/console_spo_utils.csproj index 72c9468..f3004f3 100644 --- a/console_spo_utils/console_spo_utils.csproj +++ b/console_spo_utils/console_spo_utils.csproj @@ -8,9 +8,14 @@ + + + + + diff --git a/console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt b/console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt index 5b38d1c..b5282c5 100644 --- a/console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt +++ b/console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt @@ -92,9 +92,7 @@ C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Ide C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\System.Text.Json.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Extensions.Caching.Abstractions.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Extensions.Caching.Memory.dll -C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Extensions.Configuration.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Extensions.Configuration.Abstractions.dll -C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Extensions.Configuration.Binder.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.Extensions.Http.dll @@ -135,10 +133,24 @@ C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\ru\System.Pri C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll -C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll -C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll -C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll -C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Authorization.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\Microsoft.JSInterop.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\PnP.Core.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\PnP.Core.Admin.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\PnP.Core.Auth.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\System.IO.Pipelines.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\TimeZoneConverter.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Sources\VS\console_spo_utils\console_spo_utils\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll diff --git a/console_spo_utils/obj/console_spo_utils.csproj.nuget.dgspec.json b/console_spo_utils/obj/console_spo_utils.csproj.nuget.dgspec.json index bc5aa64..2db91f6 100644 --- a/console_spo_utils/obj/console_spo_utils.csproj.nuget.dgspec.json +++ b/console_spo_utils/obj/console_spo_utils.csproj.nuget.dgspec.json @@ -14,13 +14,11 @@ "outputPath": "C:\\Sources\\VS\\console_spo_utils\\console_spo_utils\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", "C:\\Program Files\\DevExpress 22.1\\Components\\Offline Packages", "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ "C:\\Users\\cbo\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" @@ -29,7 +27,6 @@ "net6.0" ], "sources": { - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "C:\\Program Files\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, "https://api.nuget.org/v3/index.json": {} @@ -50,6 +47,10 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly.Authentication": { + "target": "Package", + "version": "[6.0.7, )" + }, "Microsoft.PowerPlatform.Dataverse.Client": { "target": "Package", "version": "[1.0.9, )" @@ -62,6 +63,22 @@ "target": "Package", "version": "[16.1.22615.12000, )" }, + "PnP.Core": { + "target": "Package", + "version": "[1.7.0, )" + }, + "PnP.Core.Admin": { + "target": "Package", + "version": "[1.7.0, )" + }, + "PnP.Core.Auth": { + "target": "Package", + "version": "[1.7.0, )" + }, + "SharePointPnP.IdentityModel.Extensions": { + "target": "Package", + "version": "[1.2.4, )" + }, "SharePointPnPCoreOnline": { "target": "Package", "version": "[3.28.2012, )" diff --git a/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.props b/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.props index ee5a3de..0a68570 100644 --- a/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.props +++ b/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.props @@ -5,14 +5,16 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\cbo\.nuget\packages\;C:\Program Files (x86)\DevExpress 21.2\Components\Offline Packages;C:\Program Files\DevExpress 22.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\cbo\.nuget\packages\;C:\Program Files\DevExpress 22.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference 6.2.1 - + + + \ No newline at end of file diff --git a/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.targets b/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.targets index 2af9c35..8bdb705 100644 --- a/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.targets +++ b/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.targets @@ -2,5 +2,6 @@ + \ No newline at end of file diff --git a/console_spo_utils/obj/project.assets.json b/console_spo_utils/obj/project.assets.json index 24d4870..3dbfe16 100644 --- a/console_spo_utils/obj/project.assets.json +++ b/console_spo_utils/obj/project.assets.json @@ -14,6 +14,18 @@ "lib/netstandard2.0/AngleSharp.dll": {} } }, + "Microsoft.ApplicationInsights/2.16.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + } + }, "Microsoft.AspNet.WebApi.Client/5.2.3": { "type": "package", "dependencies": { @@ -38,6 +50,108 @@ "lib/net45/System.Web.Http.dll": {} } }, + "Microsoft.AspNetCore.Authorization/6.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.7", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Components/6.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "6.0.7", + "Microsoft.AspNetCore.Components.Analyzers": "6.0.7" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} + } + }, + "Microsoft.AspNetCore.Components.Analyzers/6.0.7": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Authorization/6.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "6.0.7", + "Microsoft.AspNetCore.Components": "6.0.7" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/6.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.7" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} + } + }, + "Microsoft.AspNetCore.Components.Web/6.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.7", + "Microsoft.AspNetCore.Components.Forms": "6.0.7", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.JSInterop": "6.0.7", + "System.IO.Pipelines": "6.0.3" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.Authentication/6.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Authorization": "6.0.7", + "Microsoft.AspNetCore.Components.Web": "6.0.7" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": {} + }, + "build": { + "buildTransitive/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props": {} + } + }, + "Microsoft.AspNetCore.Metadata/6.0.7": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} + } + }, "Microsoft.Azure.ActiveDirectory.GraphClient/2.1.0": { "type": "package", "dependencies": { @@ -201,126 +315,115 @@ } } }, - "Microsoft.Extensions.Caching.Abstractions/3.1.8": { + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.8" + "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} } }, - "Microsoft.Extensions.Caching.Memory/3.1.8": { + "Microsoft.Extensions.Caching.Memory/6.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "3.1.8", - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", - "Microsoft.Extensions.Logging.Abstractions": "3.1.8", - "Microsoft.Extensions.Options": "3.1.8" + "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" }, "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} } }, - "Microsoft.Extensions.Configuration/3.1.8": { + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "3.1.8" + "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.8": { + "Microsoft.Extensions.DependencyInjection/6.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, - "Microsoft.Extensions.Configuration.Binder/3.1.8": { + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Http/6.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "3.1.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" }, "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/3.1.8": { + "Microsoft.Extensions.Logging/6.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8" + "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" }, "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": { + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { "type": "package", "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Http/3.1.8": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", - "Microsoft.Extensions.Logging": "3.1.8", - "Microsoft.Extensions.Options": "3.1.8" + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Http.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Http.dll": {} - } - }, - "Microsoft.Extensions.Logging/3.1.8": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Binder": "3.1.8", - "Microsoft.Extensions.DependencyInjection": "3.1.8", - "Microsoft.Extensions.Logging.Abstractions": "3.1.8", - "Microsoft.Extensions.Options": "3.1.8" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/3.1.8": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, "Microsoft.Extensions.ObjectPool/5.0.10": { @@ -332,26 +435,32 @@ "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} } }, - "Microsoft.Extensions.Options/3.1.8": { + "Microsoft.Extensions.Options/6.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", - "Microsoft.Extensions.Primitives": "3.1.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} } }, - "Microsoft.Extensions.Primitives/3.1.8": { + "Microsoft.Extensions.Primitives/6.0.0": { "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, "Microsoft.Graph/1.9.0": { @@ -382,7 +491,7 @@ "lib/netstandard1.1/Microsoft.Graph.Core.dll": {} } }, - "Microsoft.Identity.Client/4.35.1": { + "Microsoft.Identity.Client/4.36.1": { "type": "package", "compile": { "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {} @@ -476,7 +585,16 @@ "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {} } }, - "Microsoft.NETCore.Platforms/5.0.0": { + "Microsoft.JSInterop/6.0.7": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.JSInterop.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.JSInterop.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -615,19 +733,19 @@ "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} } }, - "Microsoft.Win32.SystemEvents/5.0.0": { + "Microsoft.Win32.SystemEvents/6.0.0": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - }, "compile": { - "ref/netstandard2.0/_._": {} + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { "assetType": "runtime", "rid": "win" } @@ -691,6 +809,54 @@ "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, + "PnP.Core/1.7.0": { + "type": "package", + "dependencies": { + "AngleSharp": "0.14.0", + "Microsoft.ApplicationInsights": "2.16.0", + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Http": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.IdentityModel.Tokens.Jwt": "6.12.2", + "TimeZoneConverter": "3.5.0" + }, + "compile": { + "lib/net6.0/PnP.Core.dll": {} + }, + "runtime": { + "lib/net6.0/PnP.Core.dll": {} + } + }, + "PnP.Core.Admin/1.7.0": { + "type": "package", + "dependencies": { + "PnP.Core": "1.7.0" + }, + "compile": { + "lib/net6.0/PnP.Core.Admin.dll": {} + }, + "runtime": { + "lib/net6.0/PnP.Core.Admin.dll": {} + } + }, + "PnP.Core.Auth/1.7.0": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.36.1", + "PnP.Core": "1.7.0" + }, + "compile": { + "lib/net6.0/PnP.Core.Auth.dll": {} + }, + "runtime": { + "lib/net6.0/PnP.Core.Auth.dll": {} + } + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "runtimeTargets": { @@ -959,17 +1125,20 @@ "lib/netstandard1.3/System.Collections.Concurrent.dll": {} } }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/6.0.0": { "type": "package", "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" }, "compile": { - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} }, "runtime": { - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, "System.Console/4.0.0": { @@ -996,20 +1165,19 @@ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} } }, - "System.Diagnostics.DiagnosticSource/4.3.0": { + "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" + "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/netstandard1.3/_._": {} + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, "System.Diagnostics.Tools/4.3.0": { @@ -1034,23 +1202,26 @@ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} } }, - "System.Drawing.Common/5.0.0": { + "System.Drawing.Common/6.0.0": { "type": "package", "dependencies": { - "Microsoft.Win32.SystemEvents": "5.0.0" + "Microsoft.Win32.SystemEvents": "6.0.0" }, "compile": { - "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + "lib/net6.0/System.Drawing.Common.dll": {} }, "runtime": { - "lib/netcoreapp3.0/System.Drawing.Common.dll": {} + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} }, "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { "assetType": "runtime", "rid": "win" } @@ -1218,6 +1389,18 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, "System.Linq/4.3.0": { "type": "package", "dependencies": { @@ -1723,20 +1906,19 @@ "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} } }, - "System.Security.AccessControl/5.0.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "lib/net6.0/System.Security.AccessControl.dll": {} }, "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { "assetType": "runtime", "rid": "win" } @@ -1924,16 +2106,19 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/6.0.0": { "type": "package", "compile": { - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} }, "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} }, "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { "assetType": "runtime", "rid": "win" } @@ -1995,17 +2180,20 @@ "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {} } }, - "System.Security.Permissions/5.0.0": { + "System.Security.Permissions/6.0.0": { "type": "package", "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Windows.Extensions": "5.0.0" + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" }, "compile": { - "ref/net5.0/System.Security.Permissions.dll": {} + "lib/net6.0/System.Security.Permissions.dll": {} }, "runtime": { - "lib/net5.0/System.Security.Permissions.dll": {} + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, "System.Security.Principal.Windows/5.0.0": { @@ -2246,19 +2434,19 @@ "ref/netstandard1.2/System.Threading.Timer.dll": {} } }, - "System.Windows.Extensions/5.0.0": { + "System.Windows.Extensions/6.0.0": { "type": "package", "dependencies": { - "System.Drawing.Common": "5.0.0" + "System.Drawing.Common": "6.0.0" }, "compile": { - "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + "lib/net6.0/System.Windows.Extensions.dll": {} }, "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + "lib/net6.0/System.Windows.Extensions.dll": {} }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { "assetType": "runtime", "rid": "win" } @@ -2362,6 +2550,15 @@ "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} } }, + "TimeZoneConverter/3.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/TimeZoneConverter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TimeZoneConverter.dll": {} + } + }, "WindowsAzure.Storage/7.0.0": { "type": "package", "dependencies": { @@ -2401,6 +2598,27 @@ "lib/netstandard2.0/AngleSharp.xml" ] }, + "Microsoft.ApplicationInsights/2.16.0": { + "sha512": "77RzjJe9nGn7wTOQvEFQZRdkQjETrbC4MhytzwTv2TTuoqoHvmUIzwFqE6BjjFGsHbZhYNYZg/YJbOa4kUMSSg==", + "type": "package", + "path": "microsoft.applicationinsights/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net452/Microsoft.ApplicationInsights.dll", + "lib/net452/Microsoft.ApplicationInsights.pdb", + "lib/net452/Microsoft.ApplicationInsights.xml", + "lib/net46/Microsoft.ApplicationInsights.dll", + "lib/net46/Microsoft.ApplicationInsights.pdb", + "lib/net46/Microsoft.ApplicationInsights.xml", + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", + "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", + "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", + "microsoft.applicationinsights.2.16.0.nupkg.sha512", + "microsoft.applicationinsights.nuspec" + ] + }, "Microsoft.AspNet.WebApi.Client/5.2.3": { "sha512": "3kiI8peSXbXHDDrRuo+QaX0iCEVRe0nvn2dBDRw656uPX32UalbBlSIDUDlJxu05eau4tnuhsikiUuugvvoUoQ==", "type": "package", @@ -2430,6 +2648,140 @@ "microsoft.aspnet.webapi.core.nuspec" ] }, + "Microsoft.AspNetCore.Authorization/6.0.7": { + "sha512": "tFVhR/obKzKWKT359cF+jEm2Bs2ytWwAkDwj0CsPwXIKkTZENSmgGP3pAkKW8vf+4RSFZNUYNt8s9OGTVfgBqA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Authorization.dll", + "lib/net461/Microsoft.AspNetCore.Authorization.xml", + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net6.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.6.0.7.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/6.0.7": { + "sha512": "1OkW1RCpDte29hc74ZMpBqlzGg19yRsvDRayCnLddxjX37dA48d5sur4sVmJ+fqIV51rvTYJX1conaNoA9grDA==", + "type": "package", + "path": "microsoft.aspnetcore.components/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net6.0/Microsoft.AspNetCore.Components.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.6.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/6.0.7": { + "sha512": "9xNHguX3r0S9f5BIZxtOVe2HlL4xJlRRxHmRGT2RotyiKGwV2jLp6v8+ZR4XtblSC2MCAKQ0NlSo2NvI8Yesyw==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", + "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "microsoft.aspnetcore.components.analyzers.6.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Authorization/6.0.7": { + "sha512": "eEp3j2BQ9u4jS/Y7y6X6Dv8xmH8evOYxVXAMvVZeYx/kn12oSx/B1Zin6dU118uPm4SY8gxB/9yDVEeqLhyG2w==", + "type": "package", + "path": "microsoft.aspnetcore.components.authorization/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net6.0/Microsoft.AspNetCore.Components.Authorization.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.Authorization.xml", + "microsoft.aspnetcore.components.authorization.6.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/6.0.7": { + "sha512": "aV4hfSGvysPDyF5oGsMOzlCqdKmDv0MdMEDDb6Yef6Ky0rpcDBY9rPLGBy2q3wv5Y8B5zUnbtMRJYFDEenfPIA==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.6.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/6.0.7": { + "sha512": "UVGBTzlK1BkfHLvo2ej84xlvpROnY1jvAn6OgIc5ksSSwSY0LPCRAo4Lejk0LvGFtiSYhinKJZfp5QNtjbUl5w==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.6.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly.Authentication/6.0.7": { + "sha512": "gXX6JBiuxcyh8tlWmpscwYisPtuMDgFpD4ynGaB3s9zfiiUq+uOZL5yv8Qx8BOF+kcvUfamkNZSvnx30qNxnRQ==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly.authentication/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "build/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props", + "buildTransitive/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props", + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.xml", + "microsoft.aspnetcore.components.webassembly.authentication.6.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.authentication.nuspec", + "staticwebassets/AuthenticationService.js" + ] + }, + "Microsoft.AspNetCore.Metadata/6.0.7": { + "sha512": "lRYA9dAPRhstA1x9RN0Y7O+28SeIwjASRL64mtuAb4Lywe7GykgFM2sK4cDrNedCOiCt2R6FretfNGjFeP9pRA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Metadata.dll", + "lib/net461/Microsoft.AspNetCore.Metadata.xml", + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net6.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.6.0.7.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, "Microsoft.Azure.ActiveDirectory.GraphClient/2.1.0": { "sha512": "mWW9sJzDfb0C5wqBIZ967TcAh4ee68DGAxE5fvE0MqdWimp1PZxT29mzAkGfQ1on7KklimYeFChZnhOY7dMPHA==", "type": "package", @@ -2723,164 +3075,203 @@ "microsoft.data.services.client.nuspec" ] }, - "Microsoft.Extensions.Caching.Abstractions/3.1.8": { - "sha512": "iBIdKjKa2nR4LdknV2JMSRpJVM5TOca25EckPm6SZQT6HfH8RoHrn9m14GUAkvzE+uOziXRoAwr8YIC6ZOpyXg==", + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", "type": "package", - "path": "microsoft.extensions.caching.abstractions/3.1.8", + "path": "microsoft.extensions.caching.abstractions/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.3.1.8.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec" + "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Caching.Memory/3.1.8": { - "sha512": "u04q7+tgc8l6pQ5HOcr6scgapkQQHnrhpGoCaaAZd24R36/NxGsGxuhSmhHOrQx9CsBLe2CVBN/4CkLlxtnnXw==", + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", "type": "package", - "path": "microsoft.extensions.caching.memory/3.1.8", + "path": "microsoft.extensions.caching.memory/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.3.1.8.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec" + "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Configuration/3.1.8": { - "sha512": "xWvtu/ra8xDOy62ZXzQj1ElmmH3GpZBSKvw4LbfNXKCy+PaziS5Uh0gQ47D4H4w3u+PJfhNWCCGCp9ORNEzkRw==", + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", "type": "package", - "path": "microsoft.extensions.configuration/3.1.8", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.3.1.8.nupkg.sha512", - "microsoft.extensions.configuration.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.8": { - "sha512": "0qbNyxGpuNP/fuQ3FLHesm1Vn/83qYcAgVsi1UQCQN1peY4YH1uiizOh4xbYkQyxiVMD/c/zhiYYv94G0DXSSA==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/3.1.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec" + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Configuration.Binder/3.1.8": { - "sha512": "l/oqIWRM4YF62mlCOrIKGUOCemsaID/lngK2SZEtpYI8LrktpjPd4QzvENWj5GebbLbqOtsFhF6Ko6dgzmUnBw==", + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", "type": "package", - "path": "microsoft.extensions.configuration.binder/3.1.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection/3.1.8": { - "sha512": "tUpYcVxFqwh8wVD8O+6A8gJnVtl6L4N1Vd9bLJgQSJ0gjBTUQ/eKwJn0LglkkaDU7GAxODDv4eexgZn3QSE0NQ==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/3.1.8", + "path": "microsoft.extensions.dependencyinjection/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/net461/Microsoft.Extensions.DependencyInjection.dll", "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec" + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": { - "sha512": "YP0kEBkSLTVl3znqZEux+xyJpz5iVNwFZf0OPS7nupdKbojSlO7Fa+JuQjLYpWfpAshaMcznu27tjWzfXRJnOA==", + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.8", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec" + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Http/3.1.8": { - "sha512": "GRkzBs2wJG6jTGqRrT8l/Sqk4MiO0yQltiekDNw/X7L2l5/gKSud/6Vcjb9b5SPtgn6lxcn8qCmfDtk2kP/cOw==", + "Microsoft.Extensions.Http/6.0.0": { + "sha512": "15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", "type": "package", - "path": "microsoft.extensions.http/3.1.8", + "path": "microsoft.extensions.http/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Http.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Http.xml", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Http.dll", + "lib/net461/Microsoft.Extensions.Http.xml", "lib/netstandard2.0/Microsoft.Extensions.Http.dll", "lib/netstandard2.0/Microsoft.Extensions.Http.xml", - "microsoft.extensions.http.3.1.8.nupkg.sha512", - "microsoft.extensions.http.nuspec" + "microsoft.extensions.http.6.0.0.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Logging/3.1.8": { - "sha512": "Bch88WGwrgJUabSOiTbPgne/jkCcWTyP97db8GWzQH9RcGi6TThiRm8ggsD+OXBW2UBwAYx1Zb1ns1elsMiomQ==", + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", "type": "package", - "path": "microsoft.extensions.logging/3.1.8", + "path": "microsoft.extensions.logging/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.3.1.8.nupkg.sha512", - "microsoft.extensions.logging.nuspec" + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Logging.Abstractions/3.1.8": { - "sha512": "LxQPR/KE4P9nx304VcFipWPcW8ZOZOGHuiYlG0ncAQJItogDzR9nyYUNvziLObx2MfX2Z9iCTdAqEtoImaQOYg==", + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { + "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==", "type": "package", - "path": "microsoft.extensions.logging.abstractions/3.1.8", + "path": "microsoft.extensions.logging.abstractions/6.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec" + "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" ] }, "Microsoft.Extensions.ObjectPool/5.0.10": { @@ -2902,36 +3293,50 @@ "microsoft.extensions.objectpool.nuspec" ] }, - "Microsoft.Extensions.Options/3.1.8": { - "sha512": "mpkwjNg5sr1XHEJwVS8G1w6dsh5/72vQOOe4aqhg012j93m8OOmfyIBwoQN4SE0KRRS+fatdW3qqUrHbRwlWOA==", + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", "type": "package", - "path": "microsoft.extensions.options/3.1.8", + "path": "microsoft.extensions.options/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", "lib/netstandard2.0/Microsoft.Extensions.Options.dll", "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.3.1.8.nupkg.sha512", - "microsoft.extensions.options.nuspec" + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Primitives/3.1.8": { - "sha512": "XcIoXQhT0kwnEhOKv/LmpWR6yF6QWmBTy9Fcsz4aHuCOgTJ7Zd23ELtUA4BfwlYoFlSedavS+vURz9tNekd44g==", + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", "type": "package", - "path": "microsoft.extensions.primitives/3.1.8", + "path": "microsoft.extensions.primitives/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.3.1.8.nupkg.sha512", - "microsoft.extensions.primitives.nuspec" + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" ] }, "Microsoft.Graph/1.9.0": { @@ -2964,10 +3369,10 @@ "microsoft.graph.core.nuspec" ] }, - "Microsoft.Identity.Client/4.35.1": { - "sha512": "u7IU0HlOG+nedpG/syrKStAVkHfp2cBJe09udQF8jFiQs3784dGteMneijM61g4NIGBi3XmDDNnbmPVi2K94Ng==", + "Microsoft.Identity.Client/4.36.1": { + "sha512": "E7nlLZ4CSdzLM4+OWXLrjHUfwn7S+fr7vnowjsFqeA3ST1jlNO8C87boCzsqBfjMSLeXaHa7SsvsKXoKAMHJuw==", "type": "package", - "path": "microsoft.identity.client/4.35.1", + "path": "microsoft.identity.client/4.36.1", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -2992,7 +3397,7 @@ "lib/xamarinios10/Microsoft.Identity.Client.xml", "lib/xamarinmac20/Microsoft.Identity.Client.dll", "lib/xamarinmac20/Microsoft.Identity.Client.xml", - "microsoft.identity.client.4.35.1.nupkg.sha512", + "microsoft.identity.client.4.36.1.nupkg.sha512", "microsoft.identity.client.nuspec" ] }, @@ -3148,18 +3553,32 @@ "microsoft.identitymodel.tokens.nuspec" ] }, - "Microsoft.NETCore.Platforms/5.0.0": { - "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "Microsoft.JSInterop/6.0.7": { + "sha512": "tnlXRE82H1zPFlOlGJDXOtCiPMqXDxdGVeM1YIDt4iS6qEsDtTtGJP6Zh01Qp1eJzsyfYyzsBFmwvkU4mTIbwQ==", "type": "package", - "path": "microsoft.netcore.platforms/5.0.0", + "path": "microsoft.jsinterop/6.0.7", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.JSInterop.dll", + "lib/net6.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.6.0.7.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", "microsoft.netcore.platforms.nuspec", "runtime.json", "useSharedDesignerContext.txt", @@ -3406,32 +3825,33 @@ "ref/xamarinwatchos10/_._" ] }, - "Microsoft.Win32.SystemEvents/5.0.0": { - "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", "type": "package", - "path": "microsoft.win32.systemevents/5.0.0", + "path": "microsoft.win32.systemevents/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/net461/Microsoft.Win32.SystemEvents.dll", "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", "microsoft.win32.systemevents.nuspec", - "ref/net461/Microsoft.Win32.SystemEvents.dll", - "ref/net461/Microsoft.Win32.SystemEvents.xml", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", - "useSharedDesignerContext.txt", - "version.txt" + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" ] }, "NETStandard.Library/1.6.0": { @@ -3473,6 +3893,60 @@ "packageIcon.png" ] }, + "PnP.Core/1.7.0": { + "sha512": "dnxqfhSYupJDUPG2i+67Zn5PpXl9ukPqy6PWpSgeviHbjem9WnSkrhs3Amtg8mleXIgn20wwJdMYD7oZbsZvYQ==", + "type": "package", + "path": "pnp.core/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/PnP.Core.dll", + "lib/net5.0/PnP.Core.xml", + "lib/net6.0/PnP.Core.dll", + "lib/net6.0/PnP.Core.xml", + "lib/netstandard2.0/PnP.Core.dll", + "lib/netstandard2.0/PnP.Core.xml", + "nugeticon.png", + "pnp.core.1.7.0.nupkg.sha512", + "pnp.core.nuspec" + ] + }, + "PnP.Core.Admin/1.7.0": { + "sha512": "JFZo9lwfNCMghfCY3P7daw9Cvo6u6gogS4RY09nhvw1m28IMLCLfazPogxm65D2wsDHkftmamUvUcF68Ghd0Tg==", + "type": "package", + "path": "pnp.core.admin/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/PnP.Core.Admin.dll", + "lib/net5.0/PnP.Core.Admin.xml", + "lib/net6.0/PnP.Core.Admin.dll", + "lib/net6.0/PnP.Core.Admin.xml", + "lib/netstandard2.0/PnP.Core.Admin.dll", + "lib/netstandard2.0/PnP.Core.Admin.xml", + "nugeticon.png", + "pnp.core.admin.1.7.0.nupkg.sha512", + "pnp.core.admin.nuspec" + ] + }, + "PnP.Core.Auth/1.7.0": { + "sha512": "+yWUlCOPlBAUfdPF9y3SK3YWfkbl/wISFDn6hwCfqP3HqfFqs76A7hVWeT8IP0+zBYhpUGOnP2F+KiiE0sahkw==", + "type": "package", + "path": "pnp.core.auth/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/PnP.Core.Auth.dll", + "lib/net5.0/PnP.Core.Auth.xml", + "lib/net6.0/PnP.Core.Auth.dll", + "lib/net6.0/PnP.Core.Auth.xml", + "lib/netstandard2.0/PnP.Core.Auth.dll", + "lib/netstandard2.0/PnP.Core.Auth.xml", + "nugeticon.png", + "pnp.core.auth.1.7.0.nupkg.sha512", + "pnp.core.auth.nuspec" + ] + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", "type": "package", @@ -3928,27 +4402,29 @@ "system.collections.concurrent.nuspec" ] }, - "System.Configuration.ConfigurationManager/4.7.0": { - "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "System.Configuration.ConfigurationManager/6.0.0": { + "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", "type": "package", - "path": "system.configuration.configurationmanager/4.7.0", + "path": "system.configuration.configurationmanager/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/net461/System.Configuration.ConfigurationManager.dll", "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "ref/net461/System.Configuration.ConfigurationManager.dll", - "ref/net461/System.Configuration.ConfigurationManager.xml", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.0.nupkg.sha512", "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Console/4.0.0": { @@ -4056,25 +4532,29 @@ "system.diagnostics.debug.nuspec" ] }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", "type": "package", - "path": "system.diagnostics.diagnosticsource/4.3.0", + "path": "system.diagnostics.diagnosticsource/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec" + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" ] }, "System.Diagnostics.Tools/4.3.0": { @@ -4224,46 +4704,43 @@ "system.diagnostics.tracing.nuspec" ] }, - "System.Drawing.Common/5.0.0": { - "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", "type": "package", - "path": "system.drawing.common/5.0.0", + "path": "system.drawing.common/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net461/System.Drawing.Common.dll", - "lib/netcoreapp3.0/System.Drawing.Common.dll", - "lib/netcoreapp3.0/System.Drawing.Common.xml", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.Drawing.Common.dll", - "ref/netcoreapp3.0/System.Drawing.Common.dll", - "ref/netcoreapp3.0/System.Drawing.Common.xml", - "ref/netstandard2.0/System.Drawing.Common.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", - "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", - "system.drawing.common.5.0.0.nupkg.sha512", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", "system.drawing.common.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Formats.Asn1/5.0.0": { @@ -4722,6 +5199,31 @@ "system.io.filesystem.primitives.nuspec" ] }, + "System.IO.Pipelines/6.0.3": { + "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "type": "package", + "path": "system.io.pipelines/6.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/netcoreapp3.1/System.IO.Pipelines.dll", + "lib/netcoreapp3.1/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.6.0.3.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.Linq/4.3.0": { "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", "type": "package", @@ -6405,51 +6907,33 @@ "system.runtime.serialization.xml.nuspec" ] }, - "System.Security.AccessControl/5.0.0": { - "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", "type": "package", - "path": "system.security.accesscontrol/5.0.0", + "path": "system.security.accesscontrol/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/net461/System.Security.AccessControl.dll", "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", "lib/netstandard2.0/System.Security.AccessControl.dll", "lib/netstandard2.0/System.Security.AccessControl.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", "runtimes/win/lib/net461/System.Security.AccessControl.dll", "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.5.0.0.nupkg.sha512", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.Cryptography.Algorithms/4.3.1": { @@ -6742,49 +7226,39 @@ "system.security.cryptography.primitives.nuspec" ] }, - "System.Security.Cryptography.ProtectedData/4.7.0": { - "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", "type": "package", - "path": "system.security.cryptography.protecteddata/4.7.0", + "path": "system.security.cryptography.protecteddata/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.ProtectedData.dll", "lib/net461/System.Security.Cryptography.ProtectedData.dll", "lib/net461/System.Security.Cryptography.ProtectedData.xml", - "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.xml", - "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.Cryptography.X509Certificates/4.3.0": { @@ -6867,36 +7341,33 @@ "version.txt" ] }, - "System.Security.Permissions/5.0.0": { - "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", "type": "package", - "path": "system.security.permissions/5.0.0", + "path": "system.security.permissions/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/net461/System.Security.Permissions.dll", "lib/net461/System.Security.Permissions.xml", "lib/net5.0/System.Security.Permissions.dll", "lib/net5.0/System.Security.Permissions.xml", - "lib/netcoreapp3.0/System.Security.Permissions.dll", - "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", "lib/netstandard2.0/System.Security.Permissions.dll", "lib/netstandard2.0/System.Security.Permissions.xml", - "ref/net461/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.xml", - "ref/net5.0/System.Security.Permissions.dll", - "ref/net5.0/System.Security.Permissions.xml", - "ref/netcoreapp3.0/System.Security.Permissions.dll", - "ref/netcoreapp3.0/System.Security.Permissions.xml", - "ref/netstandard2.0/System.Security.Permissions.dll", - "ref/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.5.0.0.nupkg.sha512", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", "system.security.permissions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.Principal.Windows/5.0.0": { @@ -7736,26 +8207,27 @@ "system.threading.timer.nuspec" ] }, - "System.Windows.Extensions/5.0.0": { - "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", "type": "package", - "path": "system.windows.extensions/5.0.0", + "path": "system.windows.extensions/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp3.0/System.Windows.Extensions.dll", - "lib/netcoreapp3.0/System.Windows.Extensions.xml", - "ref/netcoreapp3.0/System.Windows.Extensions.dll", - "ref/netcoreapp3.0/System.Windows.Extensions.xml", - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", - "system.windows.extensions.5.0.0.nupkg.sha512", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", "system.windows.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Xml.ReaderWriter/4.3.0": { @@ -8010,6 +8482,33 @@ "system.xml.xmlserializer.nuspec" ] }, + "TimeZoneConverter/3.5.0": { + "sha512": "ziTcQ5rVxRdtWJEnEqhKBukZGuUQregbf5G7QRrFKj6CwBLss5tSz0dlSHy9gzi5M5ES0PNQ0K2ACP/0XVT5Ow==", + "type": "package", + "path": "timezoneconverter/3.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/TimeZoneConverter.dll", + "lib/net35/TimeZoneConverter.xml", + "lib/net40/TimeZoneConverter.dll", + "lib/net40/TimeZoneConverter.xml", + "lib/net45/TimeZoneConverter.dll", + "lib/net45/TimeZoneConverter.xml", + "lib/net461/TimeZoneConverter.dll", + "lib/net461/TimeZoneConverter.xml", + "lib/net471/TimeZoneConverter.dll", + "lib/net471/TimeZoneConverter.xml", + "lib/netstandard1.1/TimeZoneConverter.dll", + "lib/netstandard1.1/TimeZoneConverter.xml", + "lib/netstandard1.3/TimeZoneConverter.dll", + "lib/netstandard1.3/TimeZoneConverter.xml", + "lib/netstandard2.0/TimeZoneConverter.dll", + "lib/netstandard2.0/TimeZoneConverter.xml", + "timezoneconverter.3.5.0.nupkg.sha512", + "timezoneconverter.nuspec" + ] + }, "WindowsAzure.Storage/7.0.0": { "sha512": "AKxGH6NpZN0fRc2eRKtlDdkk1JW5uqCMeHCF06Z/L5xkYajM7OWquzsjAkQsi2s5a2O0Y4iE6WZOcT5PLE0IMA==", "type": "package", @@ -8033,16 +8532,20 @@ }, "projectFileDependencyGroups": { "net6.0": [ + "Microsoft.AspNetCore.Components.WebAssembly.Authentication >= 6.0.7", "Microsoft.PowerPlatform.Dataverse.Client >= 1.0.9", "Microsoft.SharePoint.Client >= 14.0.4762.1000", "Microsoft.SharePointOnline.CSOM >= 16.1.22615.12000", + "PnP.Core >= 1.7.0", + "PnP.Core.Admin >= 1.7.0", + "PnP.Core.Auth >= 1.7.0", + "SharePointPnP.IdentityModel.Extensions >= 1.2.4", "SharePointPnPCoreOnline >= 3.28.2012", "System.IdentityModel.Tokens.Jwt >= 6.21.0" ] }, "packageFolders": { "C:\\Users\\cbo\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages": {}, "C:\\Program Files\\DevExpress 22.1\\Components\\Offline Packages": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, @@ -8056,13 +8559,11 @@ "outputPath": "C:\\Sources\\VS\\console_spo_utils\\console_spo_utils\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", "C:\\Program Files\\DevExpress 22.1\\Components\\Offline Packages", "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ "C:\\Users\\cbo\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" @@ -8071,7 +8572,6 @@ "net6.0" ], "sources": { - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "C:\\Program Files\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, "https://api.nuget.org/v3/index.json": {} @@ -8092,6 +8592,10 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly.Authentication": { + "target": "Package", + "version": "[6.0.7, )" + }, "Microsoft.PowerPlatform.Dataverse.Client": { "target": "Package", "version": "[1.0.9, )" @@ -8104,6 +8608,22 @@ "target": "Package", "version": "[16.1.22615.12000, )" }, + "PnP.Core": { + "target": "Package", + "version": "[1.7.0, )" + }, + "PnP.Core.Admin": { + "target": "Package", + "version": "[1.7.0, )" + }, + "PnP.Core.Auth": { + "target": "Package", + "version": "[1.7.0, )" + }, + "SharePointPnP.IdentityModel.Extensions": { + "target": "Package", + "version": "[1.2.4, )" + }, "SharePointPnPCoreOnline": { "target": "Package", "version": "[3.28.2012, )"