update directory name and access visibility

This commit is contained in:
Kalarumeth
2022-09-29 08:33:32 +02:00
parent 3ab3afe25e
commit f258a284d6
86 changed files with 253 additions and 361 deletions
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.2.32616.157 VisualStudioVersion = 17.2.32616.157
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "console_spo_utils", "console_spo_utils\console_spo_utils.csproj", "{7F73BBFA-1300-4110-8623-4CBE31011A48}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "library_spo_utils", "library_spo_utils\library_spo_utils.csproj", "{7F73BBFA-1300-4110-8623-4CBE31011A48}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -2,9 +2,9 @@
namespace console_spo_utils.Constants; namespace console_spo_utils.Constants;
public static class Fields internal static class Fields
{ {
public static string[] SiteFields internal static string[] SiteFields
{ {
get get
{ {
@@ -17,7 +17,7 @@ public static class Fields
} }
} }
public static string[] SubSiteProject internal static string[] SubSiteProject
{ {
get get
{ {
@@ -31,7 +31,7 @@ public static class Fields
} }
} }
public static string[] SubProject internal static string[] SubProject
{ {
get get
{ {
@@ -51,7 +51,7 @@ public static class Fields
} }
} }
public static string[] QuotationView internal static string[] QuotationView
{ {
get get
{ {
@@ -67,7 +67,7 @@ public static class Fields
} }
} }
public static Dictionary<string, string> SyntheticProjList internal static Dictionary<string, string> SyntheticProjList
{ {
get get
{ {
@@ -81,7 +81,7 @@ public static class Fields
} }
} }
public static string[] SynthticProjTitle internal static string[] SynthticProjTitle
{ {
get get
{ {
@@ -94,7 +94,7 @@ public static class Fields
} }
} }
public static Dictionary<string, string[]> ProjectCustomFields internal static Dictionary<string, string[]> ProjectCustomFields
{ {
get get
{ {
@@ -111,7 +111,7 @@ public static class Fields
} }
} }
public static Dictionary<string, string[]> QuotationCustomFields internal static Dictionary<string, string[]> QuotationCustomFields
{ {
get get
{ {
@@ -125,7 +125,7 @@ public static class Fields
} }
} }
public static Dictionary<string, string[]> NonComplianceCustomFields internal static Dictionary<string, string[]> NonComplianceCustomFields
{ {
get get
{ {
@@ -3,9 +3,9 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Constants; namespace console_spo_utils.Constants;
public static class Folders internal static class Folders
{ {
public static Dictionary<string, string> GetProjectFolders(string projName) internal static Dictionary<string, string> GetProjectFolders(string projName)
{ {
var folderName = new Dictionary<string, string> var folderName = new Dictionary<string, string>
{ {
@@ -20,7 +20,7 @@ public static class Folders
}; };
return folderName; return folderName;
} }
public static Dictionary<string, string> GetProjectQuickMenu(string projName, string subSiteUrl) internal static Dictionary<string, string> GetProjectQuickMenu(string projName, string subSiteUrl)
{ {
var itemQuickMenu = new Dictionary<string, string> var itemQuickMenu = new Dictionary<string, string>
{ {
@@ -31,7 +31,7 @@ public static class Folders
}; };
return itemQuickMenu; return itemQuickMenu;
} }
public static Dictionary<string, ListTemplateType> GetProjectDocLib(string ssProjectTitle) internal static Dictionary<string, ListTemplateType> GetProjectDocLib(string ssProjectTitle)
{ {
var docLibNames = new Dictionary<string, ListTemplateType> var docLibNames = new Dictionary<string, ListTemplateType>
{ {
@@ -43,7 +43,7 @@ public static class Folders
return docLibNames; return docLibNames;
} }
public static IEnumerable SubProjectDocSet internal static IEnumerable SubProjectDocSet
{ {
get get
{ {
@@ -57,8 +57,8 @@ public static class Folders
}; };
} }
} }
public static IEnumerable OfferDocSet internal static IEnumerable OfferDocSet
{ {
get get
{ {
@@ -1,6 +1,6 @@
namespace console_spo_utils.Enums namespace console_spo_utils.Enums
{ {
public enum PalFieldType internal enum PalFieldType
{ {
Project, Project,
Quotation, Quotation,
@@ -1,6 +1,6 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface INonComplianceBuildService internal interface INonComplianceBuildService
{ {
public void CreateIfNotExists(string nonComplianceName); public void CreateIfNotExists(string nonComplianceName);
} }
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface INonComplianceDocLibraryService internal interface INonComplianceDocLibraryService
{ {
public void Create(string libName, ClientContext ctx); public void Create(string libName, ClientContext ctx);
} }
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface INonComplianceDocSetService internal interface INonComplianceDocSetService
{ {
public void Create(string nonComplianceName, string docLibraryName, string tenantName, ClientContext ctx); public void Create(string nonComplianceName, string docLibraryName, string tenantName, ClientContext ctx);
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IOneNoteService internal interface IOneNoteService
{ {
public bool CreateFolderInsideProject(string projName, ClientContext ctx); public bool CreateFolderInsideProject(string projName, ClientContext ctx);
public bool CreateFolderInsideQuotation(string quotationName, ClientContext ctx); public bool CreateFolderInsideQuotation(string quotationName, ClientContext ctx);
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IProjectDocLibraryService internal interface IProjectDocLibraryService
{ {
void Create(string projName, ClientContext subSiteContext); void Create(string projName, ClientContext subSiteContext);
} }
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IProjectQuickMenuService internal interface IProjectQuickMenuService
{ {
void CreateForProject(string projNames, ClientContext subSiteContext); void CreateForProject(string projNames, ClientContext subSiteContext);
} }
@@ -1,6 +1,6 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IProjectService internal interface IProjectService
{ {
public void BuildWebParts(); public void BuildWebParts();
@@ -3,7 +3,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IProjectYearService internal interface IProjectYearService
{ {
public void CreateList(string listTitle, ClientContext ctx); public void CreateList(string listTitle, ClientContext ctx);
@@ -1,6 +1,6 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IQuotationBuildService internal interface IQuotationBuildService
{ {
void CreateIfNotExists(string quotationName); void CreateIfNotExists(string quotationName);
} }
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IQuotationDocLibraryService internal interface IQuotationDocLibraryService
{ {
public void Create(string libName, ClientContext ctx); public void Create(string libName, ClientContext ctx);
} }
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IQuotationDocSetService internal interface IQuotationDocSetService
{ {
public void Create(string quotationName, string docLibraryName, string tenantName, ClientContext ctx); public void Create(string quotationName, string docLibraryName, string tenantName, ClientContext ctx);
} }
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IRightsService internal interface IRightsService
{ {
void DomainGroupRights(ClientContext ctx, string tenantName, string docLibName = ""); void DomainGroupRights(ClientContext ctx, string tenantName, string docLibName = "");
} }
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface ISharePointAuthenticationManager internal interface ISharePointAuthenticationManager
{ {
ClientContext GetContext(Uri web); ClientContext GetContext(Uri web);
Task<string> EnsureAccessTokenAsync(Uri resourceUri, string userPrincipalName, string userPassword); Task<string> EnsureAccessTokenAsync(Uri resourceUri, string userPrincipalName, string userPassword);
@@ -3,7 +3,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface ISharePointCustomOperation internal interface ISharePointCustomOperation
{ {
bool SiteExist(ClientContext ctx); bool SiteExist(ClientContext ctx);
bool ListExist(ClientContext ctx, string listTitle); bool ListExist(ClientContext ctx, string listTitle);
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface ISiteOptions internal interface ISiteOptions
{ {
public string TokenEndpoint { get; } public string TokenEndpoint { get; }
public string DefaultAadAppId { get; } public string DefaultAadAppId { get; }
@@ -1,6 +1,6 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface ISiteService internal interface ISiteService
{ {
public bool CreateProjectSiteIfNotExists(); public bool CreateProjectSiteIfNotExists();
public bool CreateSubSiteIfNotExists(string projName); public bool CreateSubSiteIfNotExists(string projName);
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface ISubProjectBuilderService internal interface ISubProjectBuilderService
{ {
bool SubProjectDocSet(string projName, List<string> subProjTitle); bool SubProjectDocSet(string projName, List<string> subProjTitle);
} }
@@ -2,7 +2,7 @@
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface ISubSiteService internal interface ISubSiteService
{ {
bool Create(string projName, ClientContext siteContext); bool Create(string projName, ClientContext siteContext);
void AddColumnsToListView(string projName, ClientContext subSiteContext); void AddColumnsToListView(string projName, ClientContext subSiteContext);
@@ -3,7 +3,7 @@ using System.Security;
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface ITenantService internal interface ITenantService
{ {
public void CreateForProject(); public void CreateForProject();
public void CreateForQuotation(); public void CreateForQuotation();
@@ -3,7 +3,7 @@ using Microsoft.SharePoint.Client.WebParts;
namespace console_spo_utils.Interfaces.Services; namespace console_spo_utils.Interfaces.Services;
public interface IWebpartService internal interface IWebpartService
{ {
public void AddWebPart(Web web, LimitedWebPartManager mgr, string xmlSchema, string listName, string zoneName,int zoneId); public void AddWebPart(Web web, LimitedWebPartManager mgr, string xmlSchema, string listName, string zoneName,int zoneId);
} }
@@ -1,6 +1,6 @@
namespace console_spo_utils.Model namespace console_spo_utils.Model
{ {
public class ParentProj internal class ParentProj
{ {
public string ProjId { get; set; } public string ProjId { get; set; }
public string Description { get; set; } public string Description { get; set; }
@@ -1,6 +1,6 @@
namespace console_spo_utils.Model namespace console_spo_utils.Model
{ {
public class SubProj internal class SubProj
{ {
public string ProjId { get; set; } public string ProjId { get; set; }
public string Description { get; set; } public string Description { get; set; }
@@ -2,6 +2,6 @@
{ {
internal class TokenWaitInfo internal class TokenWaitInfo
{ {
public RegisteredWaitHandle Handle = null; internal RegisteredWaitHandle Handle = null;
} }
} }
@@ -9,7 +9,7 @@ using console_spo_utils.Interfaces.Services;
namespace console_spo_utils.Services namespace console_spo_utils.Services
{ {
public sealed class SharePointAuthenticationManager : IDisposable, ISharePointAuthenticationManager internal sealed class SharePointAuthenticationManager : IDisposable, ISharePointAuthenticationManager
{ {
private readonly ILogger<SharePointAuthenticationManager> logger; private readonly ILogger<SharePointAuthenticationManager> logger;
private readonly ISiteOptions siteOptions; private readonly ISiteOptions siteOptions;
@@ -3,7 +3,7 @@ using Microsoft.Extensions.Logging;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class NonComplianceBuildService : INonComplianceBuildService internal class NonComplianceBuildService : INonComplianceBuildService
{ {
private readonly ISiteOptions siteOptions; private readonly ISiteOptions siteOptions;
private readonly ISharePointAuthenticationManager sharePointAuthenticationManager; private readonly ISharePointAuthenticationManager sharePointAuthenticationManager;
@@ -4,7 +4,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class NonComplianceDocLibraryService : INonComplianceDocLibraryService internal class NonComplianceDocLibraryService : INonComplianceDocLibraryService
{ {
private readonly ILogger<NonComplianceDocLibraryService> logger; private readonly ILogger<NonComplianceDocLibraryService> logger;
@@ -7,7 +7,7 @@ using Microsoft.SharePoint.Client.DocumentSet;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class NonComplianceDocSetService : INonComplianceDocSetService internal class NonComplianceDocSetService : INonComplianceDocSetService
{ {
private readonly ISharePointCustomOperation cpt; private readonly ISharePointCustomOperation cpt;
private readonly IOneNoteService oneNoteService; private readonly IOneNoteService oneNoteService;
@@ -4,7 +4,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class OneNoteService : IOneNoteService internal class OneNoteService : IOneNoteService
{ {
private readonly ILogger<OneNoteService> logger; private readonly ILogger<OneNoteService> logger;
private readonly ISiteOptions siteOptions; private readonly ISiteOptions siteOptions;
@@ -5,7 +5,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class ProjectDocLibraryService : IProjectDocLibraryService internal class ProjectDocLibraryService : IProjectDocLibraryService
{ {
private readonly ILogger<ProjectDocLibraryService> logger; private readonly ILogger<ProjectDocLibraryService> logger;
private readonly IRightsService rightsService; private readonly IRightsService rightsService;
@@ -6,7 +6,7 @@ using Microsoft.SharePoint.Navigation;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class ProjectQuickMenuService : IProjectQuickMenuService internal class ProjectQuickMenuService : IProjectQuickMenuService
{ {
private readonly ILogger<ProjectQuickMenuService> logger; private readonly ILogger<ProjectQuickMenuService> logger;
private readonly ISiteOptions siteOptions; private readonly ISiteOptions siteOptions;
@@ -6,7 +6,7 @@ using Microsoft.SharePoint.Client.WebParts;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class ProjectService : IProjectService internal class ProjectService : IProjectService
{ {
private readonly ISiteOptions siteOptions; private readonly ISiteOptions siteOptions;
private readonly ISharePointAuthenticationManager sharePointAuthenticationManager; private readonly ISharePointAuthenticationManager sharePointAuthenticationManager;
@@ -5,7 +5,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class ProjectYearService : IProjectYearService internal class ProjectYearService : IProjectYearService
{ {
private readonly ILogger<ProjectYearService> logger; private readonly ILogger<ProjectYearService> logger;
private readonly IProjectService projectService; private readonly IProjectService projectService;
@@ -3,7 +3,7 @@ using Microsoft.Extensions.Logging;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class QuotationBuildService : IQuotationBuildService internal class QuotationBuildService : IQuotationBuildService
{ {
private readonly ISiteOptions siteOptions; private readonly ISiteOptions siteOptions;
private readonly ISharePointAuthenticationManager sharePointAuthenticationManager; private readonly ISharePointAuthenticationManager sharePointAuthenticationManager;
@@ -4,7 +4,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class QuotationDocLibraryService : IQuotationDocLibraryService internal class QuotationDocLibraryService : IQuotationDocLibraryService
{ {
private readonly ILogger<QuotationDocLibraryService> logger; private readonly ILogger<QuotationDocLibraryService> logger;
@@ -7,7 +7,7 @@ using Microsoft.SharePoint.Client.DocumentSet;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class QuotationDocSetService : IQuotationDocSetService internal class QuotationDocSetService : IQuotationDocSetService
{ {
private readonly ISharePointCustomOperation cpt; private readonly ISharePointCustomOperation cpt;
private readonly ILogger<QuotationDocSetService> logger; private readonly ILogger<QuotationDocSetService> logger;
@@ -4,7 +4,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services namespace console_spo_utils.Services
{ {
public class RightsService : IRightsService internal class RightsService : IRightsService
{ {
private readonly ILogger<RightsService> logger; private readonly ILogger<RightsService> logger;
@@ -9,7 +9,7 @@ using console_spo_utils.Constants;
namespace console_spo_utils.Services namespace console_spo_utils.Services
{ {
public class SharePointCustomOperation : ISharePointCustomOperation internal class SharePointCustomOperation : ISharePointCustomOperation
{ {
private readonly ILogger logger; private readonly ILogger logger;
private readonly IRightsService rightsService; private readonly IRightsService rightsService;
@@ -4,7 +4,7 @@ using console_spo_utils.Interfaces.Services;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class SharePointStructureBuilderService : ISharePointStructureBuilder internal class SharePointStructureBuilderService : ISharePointStructureBuilder
{ {
private readonly ISiteService siteService; private readonly ISiteService siteService;
private readonly ISubProjectRepository subProjectRepository; private readonly ISubProjectRepository subProjectRepository;
@@ -1,7 +1,6 @@
using System.Net; using System.Net;
using System.Security; using System.Security;
using console_spo_utils.Interfaces.Services; using console_spo_utils.Interfaces.Services;
using Microsoft.Crm.Sdk.Messages;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
@@ -6,7 +6,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class SiteService : ISiteService internal class SiteService : ISiteService
{ {
private readonly ILogger<SiteService> logger; private readonly ILogger<SiteService> logger;
private readonly ISharePointAuthenticationManager authMgr; private readonly ISharePointAuthenticationManager authMgr;
@@ -7,7 +7,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class SubProjectBuilderService : ISubProjectBuilderService internal class SubProjectBuilderService : ISubProjectBuilderService
{ {
private readonly ISiteOptions siteOptions; private readonly ISiteOptions siteOptions;
private readonly ISharePointCustomOperation cpt; private readonly ISharePointCustomOperation cpt;
@@ -5,7 +5,7 @@ using Microsoft.SharePoint.Client;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class SubSiteService : ISubSiteService internal class SubSiteService : ISubSiteService
{ {
private readonly ILogger<SubSiteService> logger; private readonly ILogger<SubSiteService> logger;
private readonly IProjectQuickMenuService projectQuickMenuService; private readonly IProjectQuickMenuService projectQuickMenuService;
@@ -5,7 +5,7 @@ using console_spo_utils.Enums;
namespace console_spo_utils.Services; namespace console_spo_utils.Services;
public class TenantService : ITenantService internal class TenantService : ITenantService
{ {
private readonly ISharePointAuthenticationManager authMgr; private readonly ISharePointAuthenticationManager authMgr;
private readonly ISharePointCustomOperation cpt; private readonly ISharePointCustomOperation cpt;
@@ -6,7 +6,7 @@ using Microsoft.SharePoint.Client.WebParts;
namespace console_spo_utils.Services namespace console_spo_utils.Services
{ {
public class WebpartService : IWebpartService internal class WebpartService : IWebpartService
{ {
private readonly ILogger<WebpartService> logger; private readonly ILogger<WebpartService> logger;
private readonly ISharePointAuthenticationManager authMgr; private readonly ISharePointAuthenticationManager authMgr;
@@ -8,13 +8,11 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Hangfire.Core" Version="1.7.31" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="6.0.8" /> <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="6.0.8" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" /> <PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" /> <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.0.9" /> <PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.0.9" />
<PackageReference Include="Microsoft.SharePoint.Client" Version="14.0.4762.1000" /> <PackageReference Include="Microsoft.SharePoint.Client" Version="14.0.4762.1000" />
<PackageReference Include="Microsoft.SharePoint.Client.Online.CSOM" Version="15.0.4919.1000" />
<PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.22615.12000" /> <PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.22615.12000" />
<PackageReference Include="PnP.Core" Version="1.7.0" /> <PackageReference Include="PnP.Core" Version="1.7.0" />
<PackageReference Include="PnP.Core.Admin" Version="1.7.0" /> <PackageReference Include="PnP.Core.Admin" Version="1.7.0" />
@@ -25,8 +23,6 @@
<ItemGroup> <ItemGroup>
<Folder Include="Fakes\Repositories\" /> <Folder Include="Fakes\Repositories\" />
<Folder Include="Fakes\Services\" />
<Folder Include="Repositories\" />
</ItemGroup> </ItemGroup>
</Project> </Project>
@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Il codice è stato generato da uno strumento.
// Versione runtime:4.0.30319.42000
//
// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
// il codice viene rigenerato.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("library_spo_utils")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("library_spo_utils")]
[assembly: System.Reflection.AssemblyTitleAttribute("library_spo_utils")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generato dalla classe WriteCodeFragment di MSBuild.
@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = library_spo_utils
build_property.ProjectDir = C:\Sources\VS\console_spo_utils\library_spo_utils\
@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
@@ -0,0 +1,117 @@
{
"format": 1,
"restore": {
"C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\library_spo_utils.csproj": {}
},
"projects": {
"C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\library_spo_utils.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\library_spo_utils.csproj",
"projectName": "library_spo_utils",
"projectPath": "C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\library_spo_utils.csproj",
"packagesPath": "C:\\Users\\cbo\\.nuget\\packages\\",
"outputPath": "C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"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 22.1.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.AspNetCore.Components.WebAssembly.Authentication": {
"target": "Package",
"version": "[6.0.8, )"
},
"Microsoft.Extensions.Hosting": {
"target": "Package",
"version": "[6.0.1, )"
},
"Microsoft.Extensions.Hosting.Abstractions": {
"target": "Package",
"version": "[6.0.0, )"
},
"Microsoft.PowerPlatform.Dataverse.Client": {
"target": "Package",
"version": "[1.0.9, )"
},
"Microsoft.SharePoint.Client": {
"target": "Package",
"version": "[14.0.4762.1000, )"
},
"Microsoft.SharePointOnline.CSOM": {
"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, )"
},
"SharePointPnPCoreOnline": {
"target": "Package",
"version": "[3.28.2012, )"
},
"System.IdentityModel.Tokens.Jwt": {
"target": "Package",
"version": "[6.22.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}
}
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\cbo\.nuget\packages\;C:\Program Files\DevExpress 22.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\cbo\.nuget\packages\" />
<SourceRoot Include="C:\Program Files\DevExpress 22.1\Components\Offline Packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\6.0.1\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\6.0.1\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.webassembly.authentication\6.0.8\buildTransitive\Microsoft.AspNetCore.Components.WebAssembly.Authentication.props" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.webassembly.authentication\6.0.8\buildTransitive\Microsoft.AspNetCore.Components.WebAssembly.Authentication.props')" />
</ImportGroup>
</Project>
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)system.text.json\6.0.2\build\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\6.0.2\build\System.Text.Json.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\6.0.1\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\6.0.1\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers\6.0.8\buildTransitive\netstandard2.0\Microsoft.AspNetCore.Components.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers\6.0.8\buildTransitive\netstandard2.0\Microsoft.AspNetCore.Components.Analyzers.targets')" />
</ImportGroup>
</Project>
@@ -18,63 +18,6 @@
} }
} }
}, },
"Hangfire.Core/1.7.31": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "11.0.1"
},
"compile": {
"lib/netstandard2.0/Hangfire.Core.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/netstandard2.0/Hangfire.Core.dll": {
"related": ".xml"
}
},
"resource": {
"lib/netstandard2.0/ca/Hangfire.Core.resources.dll": {
"locale": "ca"
},
"lib/netstandard2.0/de/Hangfire.Core.resources.dll": {
"locale": "de"
},
"lib/netstandard2.0/es/Hangfire.Core.resources.dll": {
"locale": "es"
},
"lib/netstandard2.0/fa/Hangfire.Core.resources.dll": {
"locale": "fa"
},
"lib/netstandard2.0/fr/Hangfire.Core.resources.dll": {
"locale": "fr"
},
"lib/netstandard2.0/nb/Hangfire.Core.resources.dll": {
"locale": "nb"
},
"lib/netstandard2.0/nl/Hangfire.Core.resources.dll": {
"locale": "nl"
},
"lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll": {
"locale": "pt-BR"
},
"lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll": {
"locale": "pt-PT"
},
"lib/netstandard2.0/pt/Hangfire.Core.resources.dll": {
"locale": "pt"
},
"lib/netstandard2.0/tr-TR/Hangfire.Core.resources.dll": {
"locale": "tr-TR"
},
"lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll": {
"locale": "zh-TW"
},
"lib/netstandard2.0/zh/Hangfire.Core.resources.dll": {
"locale": "zh"
}
}
},
"Microsoft.ApplicationInsights/2.16.0": { "Microsoft.ApplicationInsights/2.16.0": {
"type": "package", "type": "package",
"dependencies": { "dependencies": {
@@ -1268,56 +1211,6 @@
"lib/Microsoft.SharePoint.Client.dll": {} "lib/Microsoft.SharePoint.Client.dll": {}
} }
}, },
"Microsoft.SharePoint.Client.Online.CSOM/15.0.4919.1000": {
"type": "package",
"dependencies": {
"SharePoint.Client.Office.Tools": "15.0.4907.1000"
},
"compile": {
"lib/net40-full/Microsoft.Online.SharePoint.Client.Tenant.dll": {},
"lib/net40-full/Microsoft.SharePoint.ApplicationPages.Administration.dll": {},
"lib/net40-full/Microsoft.SharePoint.ApplicationPages.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.DocumentManagement.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Publishing.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Runtime.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Search.Applications.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Search.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.ServerRuntime.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Taxonomy.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.UserProfiles.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.WorkflowServices.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.dll": {},
"lib/net40-full/Microsoft.SharePoint.DesignTime.Activities.dll": {},
"lib/net40-full/Microsoft.SharePoint.Portal.dll": {},
"lib/net40-full/Microsoft.SharePoint.Publishing.dll": {},
"lib/net40-full/Microsoft.SharePoint.Security.dll": {},
"lib/net40-full/Microsoft.SharePoint.Taxonomy.dll": {},
"lib/net40-full/Microsoft.SharePoint.dll": {},
"lib/net40-full/Microsoft.Sharepoint.WorkflowActions.dll": {}
},
"runtime": {
"lib/net40-full/Microsoft.Online.SharePoint.Client.Tenant.dll": {},
"lib/net40-full/Microsoft.SharePoint.ApplicationPages.Administration.dll": {},
"lib/net40-full/Microsoft.SharePoint.ApplicationPages.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.DocumentManagement.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Publishing.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Runtime.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Search.Applications.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Search.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.ServerRuntime.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.Taxonomy.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.UserProfiles.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.WorkflowServices.dll": {},
"lib/net40-full/Microsoft.SharePoint.Client.dll": {},
"lib/net40-full/Microsoft.SharePoint.DesignTime.Activities.dll": {},
"lib/net40-full/Microsoft.SharePoint.Portal.dll": {},
"lib/net40-full/Microsoft.SharePoint.Publishing.dll": {},
"lib/net40-full/Microsoft.SharePoint.Security.dll": {},
"lib/net40-full/Microsoft.SharePoint.Taxonomy.dll": {},
"lib/net40-full/Microsoft.SharePoint.dll": {},
"lib/net40-full/Microsoft.Sharepoint.WorkflowActions.dll": {}
}
},
"Microsoft.SharePointOnline.CSOM/16.1.22615.12000": { "Microsoft.SharePointOnline.CSOM/16.1.22615.12000": {
"type": "package", "type": "package",
"compile": { "compile": {
@@ -1690,31 +1583,6 @@
} }
} }
}, },
"SharePoint.Client.Office.Tools/15.0.4907.1000": {
"type": "package",
"compile": {
"lib/net40-full/Microsoft.Office.Client.Education.dll": {},
"lib/net40-full/Microsoft.Office.Client.Policy.dll": {},
"lib/net40-full/Microsoft.Office.Client.TranslationServices.dll": {},
"lib/net40-full/Microsoft.Office.DocumentManagement.dll": {},
"lib/net40-full/Microsoft.Office.Policy.dll": {},
"lib/net40-full/Microsoft.Office.Server.Search.dll": {},
"lib/net40-full/Microsoft.Office.Server.UserProfiles.dll": {},
"lib/net40-full/Microsoft.Office.Server.dll": {},
"lib/net40-full/Microsoft.Office.SharePoint.Tools.dll": {}
},
"runtime": {
"lib/net40-full/Microsoft.Office.Client.Education.dll": {},
"lib/net40-full/Microsoft.Office.Client.Policy.dll": {},
"lib/net40-full/Microsoft.Office.Client.TranslationServices.dll": {},
"lib/net40-full/Microsoft.Office.DocumentManagement.dll": {},
"lib/net40-full/Microsoft.Office.Policy.dll": {},
"lib/net40-full/Microsoft.Office.Server.Search.dll": {},
"lib/net40-full/Microsoft.Office.Server.UserProfiles.dll": {},
"lib/net40-full/Microsoft.Office.Server.dll": {},
"lib/net40-full/Microsoft.Office.SharePoint.Tools.dll": {}
}
},
"SharePointPnP.IdentityModel.Extensions/1.2.4": { "SharePointPnP.IdentityModel.Extensions/1.2.4": {
"type": "package", "type": "package",
"dependencies": { "dependencies": {
@@ -3511,83 +3379,6 @@
"lib/netstandard2.0/AngleSharp.xml" "lib/netstandard2.0/AngleSharp.xml"
] ]
}, },
"Hangfire.Core/1.7.31": {
"sha512": "2SthlIUr2NgFMPQteHZ8SRWj9A8MT0fDcT8D2gSZdVlvb+kvj+250hXOJMm2z/eQoCa0pJ0qFyy8Npxa/JfFiA==",
"type": "package",
"path": "hangfire.core/1.7.31",
"files": [
".nupkg.metadata",
".signature.p7s",
"COPYING",
"COPYING.LESSER",
"LICENSE.md",
"LICENSE_ROYALTYFREE",
"LICENSE_STANDARD",
"NOTICES",
"hangfire.core.1.7.31.nupkg.sha512",
"hangfire.core.nuspec",
"lib/net45/Hangfire.Core.dll",
"lib/net45/Hangfire.Core.xml",
"lib/net45/ca/Hangfire.Core.resources.dll",
"lib/net45/de/Hangfire.Core.resources.dll",
"lib/net45/es/Hangfire.Core.resources.dll",
"lib/net45/fa/Hangfire.Core.resources.dll",
"lib/net45/fr/Hangfire.Core.resources.dll",
"lib/net45/nb/Hangfire.Core.resources.dll",
"lib/net45/nl/Hangfire.Core.resources.dll",
"lib/net45/pt-BR/Hangfire.Core.resources.dll",
"lib/net45/pt-PT/Hangfire.Core.resources.dll",
"lib/net45/pt/Hangfire.Core.resources.dll",
"lib/net45/tr-TR/Hangfire.Core.resources.dll",
"lib/net45/zh-TW/Hangfire.Core.resources.dll",
"lib/net45/zh/Hangfire.Core.resources.dll",
"lib/net46/Hangfire.Core.dll",
"lib/net46/Hangfire.Core.xml",
"lib/net46/ca/Hangfire.Core.resources.dll",
"lib/net46/de/Hangfire.Core.resources.dll",
"lib/net46/es/Hangfire.Core.resources.dll",
"lib/net46/fa/Hangfire.Core.resources.dll",
"lib/net46/fr/Hangfire.Core.resources.dll",
"lib/net46/nb/Hangfire.Core.resources.dll",
"lib/net46/nl/Hangfire.Core.resources.dll",
"lib/net46/pt-BR/Hangfire.Core.resources.dll",
"lib/net46/pt-PT/Hangfire.Core.resources.dll",
"lib/net46/pt/Hangfire.Core.resources.dll",
"lib/net46/tr-TR/Hangfire.Core.resources.dll",
"lib/net46/zh-TW/Hangfire.Core.resources.dll",
"lib/net46/zh/Hangfire.Core.resources.dll",
"lib/netstandard1.3/Hangfire.Core.dll",
"lib/netstandard1.3/Hangfire.Core.xml",
"lib/netstandard1.3/ca/Hangfire.Core.resources.dll",
"lib/netstandard1.3/de/Hangfire.Core.resources.dll",
"lib/netstandard1.3/es/Hangfire.Core.resources.dll",
"lib/netstandard1.3/fa/Hangfire.Core.resources.dll",
"lib/netstandard1.3/fr/Hangfire.Core.resources.dll",
"lib/netstandard1.3/nb/Hangfire.Core.resources.dll",
"lib/netstandard1.3/nl/Hangfire.Core.resources.dll",
"lib/netstandard1.3/pt-BR/Hangfire.Core.resources.dll",
"lib/netstandard1.3/pt-PT/Hangfire.Core.resources.dll",
"lib/netstandard1.3/pt/Hangfire.Core.resources.dll",
"lib/netstandard1.3/tr-TR/Hangfire.Core.resources.dll",
"lib/netstandard1.3/zh-TW/Hangfire.Core.resources.dll",
"lib/netstandard1.3/zh/Hangfire.Core.resources.dll",
"lib/netstandard2.0/Hangfire.Core.dll",
"lib/netstandard2.0/Hangfire.Core.xml",
"lib/netstandard2.0/ca/Hangfire.Core.resources.dll",
"lib/netstandard2.0/de/Hangfire.Core.resources.dll",
"lib/netstandard2.0/es/Hangfire.Core.resources.dll",
"lib/netstandard2.0/fa/Hangfire.Core.resources.dll",
"lib/netstandard2.0/fr/Hangfire.Core.resources.dll",
"lib/netstandard2.0/nb/Hangfire.Core.resources.dll",
"lib/netstandard2.0/nl/Hangfire.Core.resources.dll",
"lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll",
"lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll",
"lib/netstandard2.0/pt/Hangfire.Core.resources.dll",
"lib/netstandard2.0/tr-TR/Hangfire.Core.resources.dll",
"lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll",
"lib/netstandard2.0/zh/Hangfire.Core.resources.dll"
]
},
"Microsoft.ApplicationInsights/2.16.0": { "Microsoft.ApplicationInsights/2.16.0": {
"sha512": "77RzjJe9nGn7wTOQvEFQZRdkQjETrbC4MhytzwTv2TTuoqoHvmUIzwFqE6BjjFGsHbZhYNYZg/YJbOa4kUMSSg==", "sha512": "77RzjJe9nGn7wTOQvEFQZRdkQjETrbC4MhytzwTv2TTuoqoHvmUIzwFqE6BjjFGsHbZhYNYZg/YJbOa4kUMSSg==",
"type": "package", "type": "package",
@@ -5034,37 +4825,6 @@
"microsoft.sharepoint.client.nuspec" "microsoft.sharepoint.client.nuspec"
] ]
}, },
"Microsoft.SharePoint.Client.Online.CSOM/15.0.4919.1000": {
"sha512": "kwIePwIWVPOMwqoKco4if9ShzljUMFNVnAwqUw0uwCinIfinwLGuqoQIOWhKdnNdRBsTgaRkng7W8KLKFl/7/w==",
"type": "package",
"path": "microsoft.sharepoint.client.online.csom/15.0.4919.1000",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net40-full/Microsoft.Online.SharePoint.Client.Tenant.dll",
"lib/net40-full/Microsoft.SharePoint.ApplicationPages.Administration.dll",
"lib/net40-full/Microsoft.SharePoint.ApplicationPages.dll",
"lib/net40-full/Microsoft.SharePoint.Client.DocumentManagement.dll",
"lib/net40-full/Microsoft.SharePoint.Client.Publishing.dll",
"lib/net40-full/Microsoft.SharePoint.Client.Runtime.dll",
"lib/net40-full/Microsoft.SharePoint.Client.Search.Applications.dll",
"lib/net40-full/Microsoft.SharePoint.Client.Search.dll",
"lib/net40-full/Microsoft.SharePoint.Client.ServerRuntime.dll",
"lib/net40-full/Microsoft.SharePoint.Client.Taxonomy.dll",
"lib/net40-full/Microsoft.SharePoint.Client.UserProfiles.dll",
"lib/net40-full/Microsoft.SharePoint.Client.WorkflowServices.dll",
"lib/net40-full/Microsoft.SharePoint.Client.dll",
"lib/net40-full/Microsoft.SharePoint.DesignTime.Activities.dll",
"lib/net40-full/Microsoft.SharePoint.Portal.dll",
"lib/net40-full/Microsoft.SharePoint.Publishing.dll",
"lib/net40-full/Microsoft.SharePoint.Security.dll",
"lib/net40-full/Microsoft.SharePoint.Taxonomy.dll",
"lib/net40-full/Microsoft.SharePoint.dll",
"lib/net40-full/Microsoft.Sharepoint.WorkflowActions.dll",
"microsoft.sharepoint.client.online.csom.15.0.4919.1000.nupkg.sha512",
"microsoft.sharepoint.client.online.csom.nuspec"
]
},
"Microsoft.SharePointOnline.CSOM/16.1.22615.12000": { "Microsoft.SharePointOnline.CSOM/16.1.22615.12000": {
"sha512": "AJiI7ApweC1HYmlJiMvB3tIjtK0kCZnDLbQk66JqqUERTTIaZdIk/wyzGmyACZ8ox1zhxkDy2IbLOoAi8K7n3g==", "sha512": "AJiI7ApweC1HYmlJiMvB3tIjtK0kCZnDLbQk66JqqUERTTIaZdIk/wyzGmyACZ8ox1zhxkDy2IbLOoAi8K7n3g==",
"type": "package", "type": "package",
@@ -5570,26 +5330,6 @@
"runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
] ]
}, },
"SharePoint.Client.Office.Tools/15.0.4907.1000": {
"sha512": "hqCDW9ObVOG+UTlLejHOiU3u/qA+gLI5egKHIPEvvinfwlyWy5NupqHCQne1WRFaZVxFGoW1QxkXh23mQ5KEXg==",
"type": "package",
"path": "sharepoint.client.office.tools/15.0.4907.1000",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net40-full/Microsoft.Office.Client.Education.dll",
"lib/net40-full/Microsoft.Office.Client.Policy.dll",
"lib/net40-full/Microsoft.Office.Client.TranslationServices.dll",
"lib/net40-full/Microsoft.Office.DocumentManagement.dll",
"lib/net40-full/Microsoft.Office.Policy.dll",
"lib/net40-full/Microsoft.Office.Server.Search.dll",
"lib/net40-full/Microsoft.Office.Server.UserProfiles.dll",
"lib/net40-full/Microsoft.Office.Server.dll",
"lib/net40-full/Microsoft.Office.SharePoint.Tools.dll",
"sharepoint.client.office.tools.15.0.4907.1000.nupkg.sha512",
"sharepoint.client.office.tools.nuspec"
]
},
"SharePointPnP.IdentityModel.Extensions/1.2.4": { "SharePointPnP.IdentityModel.Extensions/1.2.4": {
"sha512": "/kFtJWkTXxlwNapdNGuvflYTcB3ODFUzt/PVDTNQQyfl7V7mnB+HrTuvlKfrWDHscx21Qavac9xVogG9nAptWA==", "sha512": "/kFtJWkTXxlwNapdNGuvflYTcB3ODFUzt/PVDTNQQyfl7V7mnB+HrTuvlKfrWDHscx21Qavac9xVogG9nAptWA==",
"type": "package", "type": "package",
@@ -9982,13 +9722,11 @@
}, },
"projectFileDependencyGroups": { "projectFileDependencyGroups": {
"net6.0": [ "net6.0": [
"Hangfire.Core >= 1.7.31",
"Microsoft.AspNetCore.Components.WebAssembly.Authentication >= 6.0.8", "Microsoft.AspNetCore.Components.WebAssembly.Authentication >= 6.0.8",
"Microsoft.Extensions.Hosting >= 6.0.1", "Microsoft.Extensions.Hosting >= 6.0.1",
"Microsoft.Extensions.Hosting.Abstractions >= 6.0.0", "Microsoft.Extensions.Hosting.Abstractions >= 6.0.0",
"Microsoft.PowerPlatform.Dataverse.Client >= 1.0.9", "Microsoft.PowerPlatform.Dataverse.Client >= 1.0.9",
"Microsoft.SharePoint.Client >= 14.0.4762.1000", "Microsoft.SharePoint.Client >= 14.0.4762.1000",
"Microsoft.SharePoint.Client.Online.CSOM >= 15.0.4919.1000",
"Microsoft.SharePointOnline.CSOM >= 16.1.22615.12000", "Microsoft.SharePointOnline.CSOM >= 16.1.22615.12000",
"PnP.Core >= 1.7.0", "PnP.Core >= 1.7.0",
"PnP.Core.Admin >= 1.7.0", "PnP.Core.Admin >= 1.7.0",
@@ -10005,11 +9743,11 @@
"project": { "project": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Sources\\VS\\console_spo_utils\\console_spo_utils\\console_spo_utils.csproj", "projectUniqueName": "C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\library_spo_utils.csproj",
"projectName": "console_spo_utils", "projectName": "library_spo_utils",
"projectPath": "C:\\Sources\\VS\\console_spo_utils\\console_spo_utils\\console_spo_utils.csproj", "projectPath": "C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\library_spo_utils.csproj",
"packagesPath": "C:\\Users\\cbo\\.nuget\\packages\\", "packagesPath": "C:\\Users\\cbo\\.nuget\\packages\\",
"outputPath": "C:\\Sources\\VS\\console_spo_utils\\console_spo_utils\\obj\\", "outputPath": "C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files\\DevExpress 22.1\\Components\\Offline Packages", "C:\\Program Files\\DevExpress 22.1\\Components\\Offline Packages",
@@ -10046,10 +9784,6 @@
"net6.0": { "net6.0": {
"targetAlias": "net6.0", "targetAlias": "net6.0",
"dependencies": { "dependencies": {
"Hangfire.Core": {
"target": "Package",
"version": "[1.7.31, )"
},
"Microsoft.AspNetCore.Components.WebAssembly.Authentication": { "Microsoft.AspNetCore.Components.WebAssembly.Authentication": {
"target": "Package", "target": "Package",
"version": "[6.0.8, )" "version": "[6.0.8, )"
@@ -10070,10 +9804,6 @@
"target": "Package", "target": "Package",
"version": "[14.0.4762.1000, )" "version": "[14.0.4762.1000, )"
}, },
"Microsoft.SharePoint.Client.Online.CSOM": {
"target": "Package",
"version": "[15.0.4919.1000, )"
},
"Microsoft.SharePointOnline.CSOM": { "Microsoft.SharePointOnline.CSOM": {
"target": "Package", "target": "Package",
"version": "[16.1.22615.12000, )" "version": "[16.1.22615.12000, )"
@@ -10220,26 +9950,6 @@
"net6.0" "net6.0"
] ]
}, },
{
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
"message": "Il pacchetto 'Microsoft.SharePoint.Client.Online.CSOM 15.0.4919.1000' è stato ripristinato mediante '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' e non mediante il framework di destinazione del progetto 'net6.0'. Questo pacchetto potrebbe non essere completamente compatibile con il progetto.",
"libraryId": "Microsoft.SharePoint.Client.Online.CSOM",
"targetGraphs": [
"net6.0"
]
},
{
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
"message": "Il pacchetto 'SharePoint.Client.Office.Tools 15.0.4907.1000' è stato ripristinato mediante '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' e non mediante il framework di destinazione del progetto 'net6.0'. Questo pacchetto potrebbe non essere completamente compatibile con il progetto.",
"libraryId": "SharePoint.Client.Office.Tools",
"targetGraphs": [
"net6.0"
]
},
{ {
"code": "NU1701", "code": "NU1701",
"level": "Warning", "level": "Warning",