From f258a284d621bb3298acd69e81bdbf70ca6d5e50 Mon Sep 17 00:00:00 2001 From: Kalarumeth <70245579+Kalarumeth@users.noreply.github.com> Date: Thu, 29 Sep 2022 08:33:32 +0200 Subject: [PATCH] update directory name and access visibility --- ...ole_spo_utils.sln => library_spo_utils.sln | 2 +- .../Constants/Fields.cs | 20 +- .../Constants/Folders.cs | 14 +- .../Enums/FieldType.cs | 2 +- .../FakeNonComplianceSettingsRepository.cs | 0 .../FakeProjectSettingsRepository.cs | 0 .../FakeQuotationSettingRepository.cs | 0 .../Repositories/FakeSubProjectRepository.cs | 0 .../Repositories/INonComplianceRepository.cs | 0 .../IProjectSettingsRepository.cs | 0 .../Repositories/IQuotationRepository.cs | 0 .../Repositories/ISubProjectRepository.cs | 0 .../Services/INonComplianceBuildService.cs | 2 +- .../INonComplianceDocLibraryService.cs | 2 +- .../Services/INonComplianceDocSetService.cs | 2 +- .../Interfaces/Services/IOneNoteService.cs | 2 +- .../Services/IProjectDocLibraryService.cs | 2 +- .../Services/IProjectQuickMenuService.cs | 2 +- .../Interfaces/Services/IProjectService.cs | 2 +- .../Services/IProjectYearService.cs | 2 +- .../Services/IQuotationBuildService.cs | 2 +- .../Services/IQuotationDocLibraryService.cs | 2 +- .../Services/IQuotationDocSetService.cs | 2 +- .../Interfaces/Services/IRightsService.cs | 2 +- .../ISharePointAuthenticationManager.cs | 2 +- .../Services/ISharePointCustomOperation.cs | 2 +- .../Services/ISharePointStructureBuilder.cs | 0 .../Interfaces/Services/ISiteOptions.cs | 2 +- .../Interfaces/Services/ISiteService.cs | 2 +- .../Services/ISubProjectBuilderService.cs | 2 +- .../Interfaces/Services/ISubSiteService.cs | 2 +- .../Interfaces/Services/ITenantService.cs | 2 +- .../Interfaces/Services/IWebpartService.cs | 2 +- .../Model/ParentProj.cs | 2 +- .../Model/SubProj.cs | 2 +- .../Model/TokenWaitInfo.cs | 2 +- .../Program.cs | 0 .../Services/AutenticationManager.cs | 2 +- .../Services/NonComplianceBuildService.cs | 2 +- .../NonComplianceDocLibraryService.cs | 2 +- .../Services/NonComplianceDocSetService.cs | 2 +- .../Services/OneNoteService.cs | 2 +- .../Services/ProjectDocLibraryService.cs | 2 +- .../Services/ProjectQuickMenuService.cs | 2 +- .../Services/ProjectService.cs | 2 +- .../Services/ProjectYearService.cs | 2 +- .../Services/QuotationBuildService.cs | 2 +- .../Services/QuotationDocLibraryService.cs | 2 +- .../Services/QuotationDocSetService.cs | 2 +- .../Services/RightsService.cs | 2 +- .../Services/SharePointCustomOperation.cs | 2 +- .../SharePointStructureBuilderService.cs | 2 +- .../Services/SiteOptions.cs | 1 - .../Services/SiteService.cs | 2 +- .../Services/SubProjectBuilderService.cs | 2 +- .../Services/SubSiteService.cs | 2 +- .../Services/TenantService.cs | 2 +- .../Services/WebpartService.cs | 2 +- .../Workers/MainWorker.cs | 0 .../Debug/net6.0/console_spo_utils.deps.json | 0 .../console_spo_utils.runtimeconfig.json | 0 .../library_spo_utils.csproj | 4 - ...CoreApp,Version=v6.0.AssemblyAttributes.cs | 0 .../obj/Debug/net6.0/_IsIncrementalBuild | 0 .../net6.0/console_spo_utils.AssemblyInfo.cs | 0 ....GeneratedMSBuildEditorConfig.editorconfig | 0 .../console_spo_utils.GlobalUsings.g.cs | 0 ...le_spo_utils.csproj.BuildWithSkipAnalyzers | 0 .../console_spo_utils.csproj.CopyComplete | 0 ...sole_spo_utils.csproj.FileListAbsolute.txt | 0 .../net6.0/console_spoutils.AssemblyInfo.cs | 0 ....GeneratedMSBuildEditorConfig.editorconfig | 0 .../net6.0/console_spoutils.GlobalUsings.g.cs | 0 .../net6.0/library_spo_utils.AssemblyInfo.cs | 23 ++ ....GeneratedMSBuildEditorConfig.editorconfig | 10 + .../library_spo_utils.GlobalUsings.g.cs | 8 + ...console_spo_utils.csproj.nuget.dgspec.json | 0 .../console_spo_utils.csproj.nuget.g.props | 0 .../console_spo_utils.csproj.nuget.g.targets | 0 .../console_spoutils.csproj.nuget.dgspec.json | 0 .../obj/console_spoutils.csproj.nuget.g.props | 0 .../console_spoutils.csproj.nuget.g.targets | 0 ...library_spo_utils.csproj.nuget.dgspec.json | 117 +++++++ .../library_spo_utils.csproj.nuget.g.props | 21 ++ .../library_spo_utils.csproj.nuget.g.targets | 8 + .../obj/project.assets.json | 298 +----------------- 86 files changed, 253 insertions(+), 361 deletions(-) rename console_spo_utils.sln => library_spo_utils.sln (88%) rename {console_spo_utils => library_spo_utils}/Constants/Fields.cs (92%) rename {console_spo_utils => library_spo_utils}/Constants/Folders.cs (85%) rename {console_spo_utils => library_spo_utils}/Enums/FieldType.cs (78%) rename {console_spo_utils => library_spo_utils}/Fakes/Repositories/FakeNonComplianceSettingsRepository.cs (100%) rename {console_spo_utils => library_spo_utils}/Fakes/Repositories/FakeProjectSettingsRepository.cs (100%) rename {console_spo_utils => library_spo_utils}/Fakes/Repositories/FakeQuotationSettingRepository.cs (100%) rename {console_spo_utils => library_spo_utils}/Fakes/Repositories/FakeSubProjectRepository.cs (100%) rename {console_spo_utils => library_spo_utils}/Interfaces/Repositories/INonComplianceRepository.cs (100%) rename {console_spo_utils => library_spo_utils}/Interfaces/Repositories/IProjectSettingsRepository.cs (100%) rename {console_spo_utils => library_spo_utils}/Interfaces/Repositories/IQuotationRepository.cs (100%) rename {console_spo_utils => library_spo_utils}/Interfaces/Repositories/ISubProjectRepository.cs (100%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/INonComplianceBuildService.cs (71%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/INonComplianceDocLibraryService.cs (74%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/INonComplianceDocSetService.cs (81%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IOneNoteService.cs (91%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IProjectDocLibraryService.cs (77%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IProjectQuickMenuService.cs (79%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IProjectService.cs (72%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IProjectYearService.cs (83%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IQuotationBuildService.cs (71%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IQuotationDocLibraryService.cs (76%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IQuotationDocSetService.cs (82%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IRightsService.cs (84%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/ISharePointAuthenticationManager.cs (83%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/ISharePointCustomOperation.cs (92%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/ISharePointStructureBuilder.cs (100%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/ISiteOptions.cs (95%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/ISiteService.cs (90%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/ISubProjectBuilderService.cs (78%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/ISubSiteService.cs (86%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/ITenantService.cs (86%) rename {console_spo_utils => library_spo_utils}/Interfaces/Services/IWebpartService.cs (88%) rename {console_spo_utils => library_spo_utils}/Model/ParentProj.cs (90%) rename {console_spo_utils => library_spo_utils}/Model/SubProj.cs (94%) rename {console_spo_utils => library_spo_utils}/Model/TokenWaitInfo.cs (61%) rename {console_spo_utils => library_spo_utils}/Program.cs (100%) rename {console_spo_utils => library_spo_utils}/Services/AutenticationManager.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/NonComplianceBuildService.cs (96%) rename {console_spo_utils => library_spo_utils}/Services/NonComplianceDocLibraryService.cs (97%) rename {console_spo_utils => library_spo_utils}/Services/NonComplianceDocSetService.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/OneNoteService.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/ProjectDocLibraryService.cs (97%) rename {console_spo_utils => library_spo_utils}/Services/ProjectQuickMenuService.cs (97%) rename {console_spo_utils => library_spo_utils}/Services/ProjectService.cs (99%) rename {console_spo_utils => library_spo_utils}/Services/ProjectYearService.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/QuotationBuildService.cs (97%) rename {console_spo_utils => library_spo_utils}/Services/QuotationDocLibraryService.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/QuotationDocSetService.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/RightsService.cs (99%) rename {console_spo_utils => library_spo_utils}/Services/SharePointCustomOperation.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/SharePointStructureBuilderService.cs (97%) rename {console_spo_utils => library_spo_utils}/Services/SiteOptions.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/SiteService.cs (99%) rename {console_spo_utils => library_spo_utils}/Services/SubProjectBuilderService.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/SubSiteService.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/TenantService.cs (98%) rename {console_spo_utils => library_spo_utils}/Services/WebpartService.cs (95%) rename {console_spo_utils => library_spo_utils}/Workers/MainWorker.cs (100%) rename {console_spo_utils => library_spo_utils}/bin/Debug/net6.0/console_spo_utils.deps.json (100%) rename {console_spo_utils => library_spo_utils}/bin/Debug/net6.0/console_spo_utils.runtimeconfig.json (100%) rename console_spo_utils/console_spo_utils.csproj => library_spo_utils/library_spo_utils.csproj (83%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/_IsIncrementalBuild (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spo_utils.AssemblyInfo.cs (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spo_utils.GeneratedMSBuildEditorConfig.editorconfig (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spo_utils.GlobalUsings.g.cs (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spo_utils.csproj.BuildWithSkipAnalyzers (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spo_utils.csproj.CopyComplete (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spoutils.AssemblyInfo.cs (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spoutils.GeneratedMSBuildEditorConfig.editorconfig (100%) rename {console_spo_utils => library_spo_utils}/obj/Debug/net6.0/console_spoutils.GlobalUsings.g.cs (100%) create mode 100644 library_spo_utils/obj/Debug/net6.0/library_spo_utils.AssemblyInfo.cs create mode 100644 library_spo_utils/obj/Debug/net6.0/library_spo_utils.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 library_spo_utils/obj/Debug/net6.0/library_spo_utils.GlobalUsings.g.cs rename {console_spo_utils => library_spo_utils}/obj/console_spo_utils.csproj.nuget.dgspec.json (100%) rename {console_spo_utils => library_spo_utils}/obj/console_spo_utils.csproj.nuget.g.props (100%) rename {console_spo_utils => library_spo_utils}/obj/console_spo_utils.csproj.nuget.g.targets (100%) rename {console_spo_utils => library_spo_utils}/obj/console_spoutils.csproj.nuget.dgspec.json (100%) rename {console_spo_utils => library_spo_utils}/obj/console_spoutils.csproj.nuget.g.props (100%) rename {console_spo_utils => library_spo_utils}/obj/console_spoutils.csproj.nuget.g.targets (100%) create mode 100644 library_spo_utils/obj/library_spo_utils.csproj.nuget.dgspec.json create mode 100644 library_spo_utils/obj/library_spo_utils.csproj.nuget.g.props create mode 100644 library_spo_utils/obj/library_spo_utils.csproj.nuget.g.targets rename {console_spo_utils => library_spo_utils}/obj/project.assets.json (96%) diff --git a/console_spo_utils.sln b/library_spo_utils.sln similarity index 88% rename from console_spo_utils.sln rename to library_spo_utils.sln index 80b8db9..da5f4b9 100644 --- a/console_spo_utils.sln +++ b/library_spo_utils.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.2.32616.157 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 Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/console_spo_utils/Constants/Fields.cs b/library_spo_utils/Constants/Fields.cs similarity index 92% rename from console_spo_utils/Constants/Fields.cs rename to library_spo_utils/Constants/Fields.cs index 95bd456..d30503b 100644 --- a/console_spo_utils/Constants/Fields.cs +++ b/library_spo_utils/Constants/Fields.cs @@ -2,9 +2,9 @@ namespace console_spo_utils.Constants; -public static class Fields +internal static class Fields { - public static string[] SiteFields + internal static string[] SiteFields { get { @@ -17,7 +17,7 @@ public static class Fields } } - public static string[] SubSiteProject + internal static string[] SubSiteProject { get { @@ -31,7 +31,7 @@ public static class Fields } } - public static string[] SubProject + internal static string[] SubProject { get { @@ -51,7 +51,7 @@ public static class Fields } } - public static string[] QuotationView + internal static string[] QuotationView { get { @@ -67,7 +67,7 @@ public static class Fields } } - public static Dictionary SyntheticProjList + internal static Dictionary SyntheticProjList { get { @@ -81,7 +81,7 @@ public static class Fields } } - public static string[] SynthticProjTitle + internal static string[] SynthticProjTitle { get { @@ -94,7 +94,7 @@ public static class Fields } } - public static Dictionary ProjectCustomFields + internal static Dictionary ProjectCustomFields { get { @@ -111,7 +111,7 @@ public static class Fields } } - public static Dictionary QuotationCustomFields + internal static Dictionary QuotationCustomFields { get { @@ -125,7 +125,7 @@ public static class Fields } } - public static Dictionary NonComplianceCustomFields + internal static Dictionary NonComplianceCustomFields { get { diff --git a/console_spo_utils/Constants/Folders.cs b/library_spo_utils/Constants/Folders.cs similarity index 85% rename from console_spo_utils/Constants/Folders.cs rename to library_spo_utils/Constants/Folders.cs index 8ea66e3..60e6e19 100644 --- a/console_spo_utils/Constants/Folders.cs +++ b/library_spo_utils/Constants/Folders.cs @@ -3,9 +3,9 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Constants; -public static class Folders +internal static class Folders { - public static Dictionary GetProjectFolders(string projName) + internal static Dictionary GetProjectFolders(string projName) { var folderName = new Dictionary { @@ -20,7 +20,7 @@ public static class Folders }; return folderName; } - public static Dictionary GetProjectQuickMenu(string projName, string subSiteUrl) + internal static Dictionary GetProjectQuickMenu(string projName, string subSiteUrl) { var itemQuickMenu = new Dictionary { @@ -31,7 +31,7 @@ public static class Folders }; return itemQuickMenu; } - public static Dictionary GetProjectDocLib(string ssProjectTitle) + internal static Dictionary GetProjectDocLib(string ssProjectTitle) { var docLibNames = new Dictionary { @@ -43,7 +43,7 @@ public static class Folders return docLibNames; } - public static IEnumerable SubProjectDocSet + internal static IEnumerable SubProjectDocSet { get { @@ -57,8 +57,8 @@ public static class Folders }; } } - - public static IEnumerable OfferDocSet + + internal static IEnumerable OfferDocSet { get { diff --git a/console_spo_utils/Enums/FieldType.cs b/library_spo_utils/Enums/FieldType.cs similarity index 78% rename from console_spo_utils/Enums/FieldType.cs rename to library_spo_utils/Enums/FieldType.cs index ca4ce54..b23e7c7 100644 --- a/console_spo_utils/Enums/FieldType.cs +++ b/library_spo_utils/Enums/FieldType.cs @@ -1,6 +1,6 @@ namespace console_spo_utils.Enums { - public enum PalFieldType + internal enum PalFieldType { Project, Quotation, diff --git a/console_spo_utils/Fakes/Repositories/FakeNonComplianceSettingsRepository.cs b/library_spo_utils/Fakes/Repositories/FakeNonComplianceSettingsRepository.cs similarity index 100% rename from console_spo_utils/Fakes/Repositories/FakeNonComplianceSettingsRepository.cs rename to library_spo_utils/Fakes/Repositories/FakeNonComplianceSettingsRepository.cs diff --git a/console_spo_utils/Fakes/Repositories/FakeProjectSettingsRepository.cs b/library_spo_utils/Fakes/Repositories/FakeProjectSettingsRepository.cs similarity index 100% rename from console_spo_utils/Fakes/Repositories/FakeProjectSettingsRepository.cs rename to library_spo_utils/Fakes/Repositories/FakeProjectSettingsRepository.cs diff --git a/console_spo_utils/Fakes/Repositories/FakeQuotationSettingRepository.cs b/library_spo_utils/Fakes/Repositories/FakeQuotationSettingRepository.cs similarity index 100% rename from console_spo_utils/Fakes/Repositories/FakeQuotationSettingRepository.cs rename to library_spo_utils/Fakes/Repositories/FakeQuotationSettingRepository.cs diff --git a/console_spo_utils/Fakes/Repositories/FakeSubProjectRepository.cs b/library_spo_utils/Fakes/Repositories/FakeSubProjectRepository.cs similarity index 100% rename from console_spo_utils/Fakes/Repositories/FakeSubProjectRepository.cs rename to library_spo_utils/Fakes/Repositories/FakeSubProjectRepository.cs diff --git a/console_spo_utils/Interfaces/Repositories/INonComplianceRepository.cs b/library_spo_utils/Interfaces/Repositories/INonComplianceRepository.cs similarity index 100% rename from console_spo_utils/Interfaces/Repositories/INonComplianceRepository.cs rename to library_spo_utils/Interfaces/Repositories/INonComplianceRepository.cs diff --git a/console_spo_utils/Interfaces/Repositories/IProjectSettingsRepository.cs b/library_spo_utils/Interfaces/Repositories/IProjectSettingsRepository.cs similarity index 100% rename from console_spo_utils/Interfaces/Repositories/IProjectSettingsRepository.cs rename to library_spo_utils/Interfaces/Repositories/IProjectSettingsRepository.cs diff --git a/console_spo_utils/Interfaces/Repositories/IQuotationRepository.cs b/library_spo_utils/Interfaces/Repositories/IQuotationRepository.cs similarity index 100% rename from console_spo_utils/Interfaces/Repositories/IQuotationRepository.cs rename to library_spo_utils/Interfaces/Repositories/IQuotationRepository.cs diff --git a/console_spo_utils/Interfaces/Repositories/ISubProjectRepository.cs b/library_spo_utils/Interfaces/Repositories/ISubProjectRepository.cs similarity index 100% rename from console_spo_utils/Interfaces/Repositories/ISubProjectRepository.cs rename to library_spo_utils/Interfaces/Repositories/ISubProjectRepository.cs diff --git a/console_spo_utils/Interfaces/Services/INonComplianceBuildService.cs b/library_spo_utils/Interfaces/Services/INonComplianceBuildService.cs similarity index 71% rename from console_spo_utils/Interfaces/Services/INonComplianceBuildService.cs rename to library_spo_utils/Interfaces/Services/INonComplianceBuildService.cs index 9528af2..9d23af3 100644 --- a/console_spo_utils/Interfaces/Services/INonComplianceBuildService.cs +++ b/library_spo_utils/Interfaces/Services/INonComplianceBuildService.cs @@ -1,6 +1,6 @@ namespace console_spo_utils.Interfaces.Services; -public interface INonComplianceBuildService +internal interface INonComplianceBuildService { public void CreateIfNotExists(string nonComplianceName); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/INonComplianceDocLibraryService.cs b/library_spo_utils/Interfaces/Services/INonComplianceDocLibraryService.cs similarity index 74% rename from console_spo_utils/Interfaces/Services/INonComplianceDocLibraryService.cs rename to library_spo_utils/Interfaces/Services/INonComplianceDocLibraryService.cs index 3eb083a..df6ac5a 100644 --- a/console_spo_utils/Interfaces/Services/INonComplianceDocLibraryService.cs +++ b/library_spo_utils/Interfaces/Services/INonComplianceDocLibraryService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface INonComplianceDocLibraryService +internal interface INonComplianceDocLibraryService { public void Create(string libName, ClientContext ctx); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/INonComplianceDocSetService.cs b/library_spo_utils/Interfaces/Services/INonComplianceDocSetService.cs similarity index 81% rename from console_spo_utils/Interfaces/Services/INonComplianceDocSetService.cs rename to library_spo_utils/Interfaces/Services/INonComplianceDocSetService.cs index 54da872..28c90c1 100644 --- a/console_spo_utils/Interfaces/Services/INonComplianceDocSetService.cs +++ b/library_spo_utils/Interfaces/Services/INonComplianceDocSetService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface INonComplianceDocSetService +internal interface INonComplianceDocSetService { public void Create(string nonComplianceName, string docLibraryName, string tenantName, ClientContext ctx); diff --git a/console_spo_utils/Interfaces/Services/IOneNoteService.cs b/library_spo_utils/Interfaces/Services/IOneNoteService.cs similarity index 91% rename from console_spo_utils/Interfaces/Services/IOneNoteService.cs rename to library_spo_utils/Interfaces/Services/IOneNoteService.cs index f4a09d2..adc118a 100644 --- a/console_spo_utils/Interfaces/Services/IOneNoteService.cs +++ b/library_spo_utils/Interfaces/Services/IOneNoteService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface IOneNoteService +internal interface IOneNoteService { public bool CreateFolderInsideProject(string projName, ClientContext ctx); public bool CreateFolderInsideQuotation(string quotationName, ClientContext ctx); diff --git a/console_spo_utils/Interfaces/Services/IProjectDocLibraryService.cs b/library_spo_utils/Interfaces/Services/IProjectDocLibraryService.cs similarity index 77% rename from console_spo_utils/Interfaces/Services/IProjectDocLibraryService.cs rename to library_spo_utils/Interfaces/Services/IProjectDocLibraryService.cs index dd22222..a675d30 100644 --- a/console_spo_utils/Interfaces/Services/IProjectDocLibraryService.cs +++ b/library_spo_utils/Interfaces/Services/IProjectDocLibraryService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface IProjectDocLibraryService +internal interface IProjectDocLibraryService { void Create(string projName, ClientContext subSiteContext); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/IProjectQuickMenuService.cs b/library_spo_utils/Interfaces/Services/IProjectQuickMenuService.cs similarity index 79% rename from console_spo_utils/Interfaces/Services/IProjectQuickMenuService.cs rename to library_spo_utils/Interfaces/Services/IProjectQuickMenuService.cs index 68ede0b..59337e8 100644 --- a/console_spo_utils/Interfaces/Services/IProjectQuickMenuService.cs +++ b/library_spo_utils/Interfaces/Services/IProjectQuickMenuService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface IProjectQuickMenuService +internal interface IProjectQuickMenuService { void CreateForProject(string projNames, ClientContext subSiteContext); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/IProjectService.cs b/library_spo_utils/Interfaces/Services/IProjectService.cs similarity index 72% rename from console_spo_utils/Interfaces/Services/IProjectService.cs rename to library_spo_utils/Interfaces/Services/IProjectService.cs index 366c6bc..4e38822 100644 --- a/console_spo_utils/Interfaces/Services/IProjectService.cs +++ b/library_spo_utils/Interfaces/Services/IProjectService.cs @@ -1,6 +1,6 @@ namespace console_spo_utils.Interfaces.Services; -public interface IProjectService +internal interface IProjectService { public void BuildWebParts(); diff --git a/console_spo_utils/Interfaces/Services/IProjectYearService.cs b/library_spo_utils/Interfaces/Services/IProjectYearService.cs similarity index 83% rename from console_spo_utils/Interfaces/Services/IProjectYearService.cs rename to library_spo_utils/Interfaces/Services/IProjectYearService.cs index a745dec..9147348 100644 --- a/console_spo_utils/Interfaces/Services/IProjectYearService.cs +++ b/library_spo_utils/Interfaces/Services/IProjectYearService.cs @@ -3,7 +3,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Interfaces.Services; -public interface IProjectYearService +internal interface IProjectYearService { public void CreateList(string listTitle, ClientContext ctx); diff --git a/console_spo_utils/Interfaces/Services/IQuotationBuildService.cs b/library_spo_utils/Interfaces/Services/IQuotationBuildService.cs similarity index 71% rename from console_spo_utils/Interfaces/Services/IQuotationBuildService.cs rename to library_spo_utils/Interfaces/Services/IQuotationBuildService.cs index 2c35474..36741ba 100644 --- a/console_spo_utils/Interfaces/Services/IQuotationBuildService.cs +++ b/library_spo_utils/Interfaces/Services/IQuotationBuildService.cs @@ -1,6 +1,6 @@ namespace console_spo_utils.Interfaces.Services; -public interface IQuotationBuildService +internal interface IQuotationBuildService { void CreateIfNotExists(string quotationName); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/IQuotationDocLibraryService.cs b/library_spo_utils/Interfaces/Services/IQuotationDocLibraryService.cs similarity index 76% rename from console_spo_utils/Interfaces/Services/IQuotationDocLibraryService.cs rename to library_spo_utils/Interfaces/Services/IQuotationDocLibraryService.cs index 5f385df..31ae395 100644 --- a/console_spo_utils/Interfaces/Services/IQuotationDocLibraryService.cs +++ b/library_spo_utils/Interfaces/Services/IQuotationDocLibraryService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface IQuotationDocLibraryService +internal interface IQuotationDocLibraryService { public void Create(string libName, ClientContext ctx); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/IQuotationDocSetService.cs b/library_spo_utils/Interfaces/Services/IQuotationDocSetService.cs similarity index 82% rename from console_spo_utils/Interfaces/Services/IQuotationDocSetService.cs rename to library_spo_utils/Interfaces/Services/IQuotationDocSetService.cs index 003a7ee..99a457a 100644 --- a/console_spo_utils/Interfaces/Services/IQuotationDocSetService.cs +++ b/library_spo_utils/Interfaces/Services/IQuotationDocSetService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface IQuotationDocSetService +internal interface IQuotationDocSetService { public void Create(string quotationName, string docLibraryName, string tenantName, ClientContext ctx); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/IRightsService.cs b/library_spo_utils/Interfaces/Services/IRightsService.cs similarity index 84% rename from console_spo_utils/Interfaces/Services/IRightsService.cs rename to library_spo_utils/Interfaces/Services/IRightsService.cs index f8731b9..b69ba19 100644 --- a/console_spo_utils/Interfaces/Services/IRightsService.cs +++ b/library_spo_utils/Interfaces/Services/IRightsService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface IRightsService +internal interface IRightsService { void DomainGroupRights(ClientContext ctx, string tenantName, string docLibName = ""); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/ISharePointAuthenticationManager.cs b/library_spo_utils/Interfaces/Services/ISharePointAuthenticationManager.cs similarity index 83% rename from console_spo_utils/Interfaces/Services/ISharePointAuthenticationManager.cs rename to library_spo_utils/Interfaces/Services/ISharePointAuthenticationManager.cs index 64aa96d..5c0bd30 100644 --- a/console_spo_utils/Interfaces/Services/ISharePointAuthenticationManager.cs +++ b/library_spo_utils/Interfaces/Services/ISharePointAuthenticationManager.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface ISharePointAuthenticationManager +internal interface ISharePointAuthenticationManager { ClientContext GetContext(Uri web); Task EnsureAccessTokenAsync(Uri resourceUri, string userPrincipalName, string userPassword); diff --git a/console_spo_utils/Interfaces/Services/ISharePointCustomOperation.cs b/library_spo_utils/Interfaces/Services/ISharePointCustomOperation.cs similarity index 92% rename from console_spo_utils/Interfaces/Services/ISharePointCustomOperation.cs rename to library_spo_utils/Interfaces/Services/ISharePointCustomOperation.cs index 49b85bd..edd04b7 100644 --- a/console_spo_utils/Interfaces/Services/ISharePointCustomOperation.cs +++ b/library_spo_utils/Interfaces/Services/ISharePointCustomOperation.cs @@ -3,7 +3,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Interfaces.Services; -public interface ISharePointCustomOperation +internal interface ISharePointCustomOperation { bool SiteExist(ClientContext ctx); bool ListExist(ClientContext ctx, string listTitle); diff --git a/console_spo_utils/Interfaces/Services/ISharePointStructureBuilder.cs b/library_spo_utils/Interfaces/Services/ISharePointStructureBuilder.cs similarity index 100% rename from console_spo_utils/Interfaces/Services/ISharePointStructureBuilder.cs rename to library_spo_utils/Interfaces/Services/ISharePointStructureBuilder.cs diff --git a/console_spo_utils/Interfaces/Services/ISiteOptions.cs b/library_spo_utils/Interfaces/Services/ISiteOptions.cs similarity index 95% rename from console_spo_utils/Interfaces/Services/ISiteOptions.cs rename to library_spo_utils/Interfaces/Services/ISiteOptions.cs index b396ff9..1fee0fd 100644 --- a/console_spo_utils/Interfaces/Services/ISiteOptions.cs +++ b/library_spo_utils/Interfaces/Services/ISiteOptions.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface ISiteOptions +internal interface ISiteOptions { public string TokenEndpoint { get; } public string DefaultAadAppId { get; } diff --git a/console_spo_utils/Interfaces/Services/ISiteService.cs b/library_spo_utils/Interfaces/Services/ISiteService.cs similarity index 90% rename from console_spo_utils/Interfaces/Services/ISiteService.cs rename to library_spo_utils/Interfaces/Services/ISiteService.cs index 672f9ab..d115c2b 100644 --- a/console_spo_utils/Interfaces/Services/ISiteService.cs +++ b/library_spo_utils/Interfaces/Services/ISiteService.cs @@ -1,6 +1,6 @@ namespace console_spo_utils.Interfaces.Services; -public interface ISiteService +internal interface ISiteService { public bool CreateProjectSiteIfNotExists(); public bool CreateSubSiteIfNotExists(string projName); diff --git a/console_spo_utils/Interfaces/Services/ISubProjectBuilderService.cs b/library_spo_utils/Interfaces/Services/ISubProjectBuilderService.cs similarity index 78% rename from console_spo_utils/Interfaces/Services/ISubProjectBuilderService.cs rename to library_spo_utils/Interfaces/Services/ISubProjectBuilderService.cs index 7495735..ff4d472 100644 --- a/console_spo_utils/Interfaces/Services/ISubProjectBuilderService.cs +++ b/library_spo_utils/Interfaces/Services/ISubProjectBuilderService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface ISubProjectBuilderService +internal interface ISubProjectBuilderService { bool SubProjectDocSet(string projName, List subProjTitle); } \ No newline at end of file diff --git a/console_spo_utils/Interfaces/Services/ISubSiteService.cs b/library_spo_utils/Interfaces/Services/ISubSiteService.cs similarity index 86% rename from console_spo_utils/Interfaces/Services/ISubSiteService.cs rename to library_spo_utils/Interfaces/Services/ISubSiteService.cs index 2c88e34..c5b60c6 100644 --- a/console_spo_utils/Interfaces/Services/ISubSiteService.cs +++ b/library_spo_utils/Interfaces/Services/ISubSiteService.cs @@ -2,7 +2,7 @@ namespace console_spo_utils.Interfaces.Services; -public interface ISubSiteService +internal interface ISubSiteService { bool Create(string projName, ClientContext siteContext); void AddColumnsToListView(string projName, ClientContext subSiteContext); diff --git a/console_spo_utils/Interfaces/Services/ITenantService.cs b/library_spo_utils/Interfaces/Services/ITenantService.cs similarity index 86% rename from console_spo_utils/Interfaces/Services/ITenantService.cs rename to library_spo_utils/Interfaces/Services/ITenantService.cs index 453153c..97b5a87 100644 --- a/console_spo_utils/Interfaces/Services/ITenantService.cs +++ b/library_spo_utils/Interfaces/Services/ITenantService.cs @@ -3,7 +3,7 @@ using System.Security; namespace console_spo_utils.Interfaces.Services; -public interface ITenantService +internal interface ITenantService { public void CreateForProject(); public void CreateForQuotation(); diff --git a/console_spo_utils/Interfaces/Services/IWebpartService.cs b/library_spo_utils/Interfaces/Services/IWebpartService.cs similarity index 88% rename from console_spo_utils/Interfaces/Services/IWebpartService.cs rename to library_spo_utils/Interfaces/Services/IWebpartService.cs index 5b31e29..9c41553 100644 --- a/console_spo_utils/Interfaces/Services/IWebpartService.cs +++ b/library_spo_utils/Interfaces/Services/IWebpartService.cs @@ -3,7 +3,7 @@ using Microsoft.SharePoint.Client.WebParts; 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); } \ No newline at end of file diff --git a/console_spo_utils/Model/ParentProj.cs b/library_spo_utils/Model/ParentProj.cs similarity index 90% rename from console_spo_utils/Model/ParentProj.cs rename to library_spo_utils/Model/ParentProj.cs index e9a503d..63d6799 100644 --- a/console_spo_utils/Model/ParentProj.cs +++ b/library_spo_utils/Model/ParentProj.cs @@ -1,6 +1,6 @@ namespace console_spo_utils.Model { - public class ParentProj + internal class ParentProj { public string ProjId { get; set; } public string Description { get; set; } diff --git a/console_spo_utils/Model/SubProj.cs b/library_spo_utils/Model/SubProj.cs similarity index 94% rename from console_spo_utils/Model/SubProj.cs rename to library_spo_utils/Model/SubProj.cs index 6da8c97..a33846f 100644 --- a/console_spo_utils/Model/SubProj.cs +++ b/library_spo_utils/Model/SubProj.cs @@ -1,6 +1,6 @@ namespace console_spo_utils.Model { - public class SubProj + internal class SubProj { public string ProjId { get; set; } public string Description { get; set; } diff --git a/console_spo_utils/Model/TokenWaitInfo.cs b/library_spo_utils/Model/TokenWaitInfo.cs similarity index 61% rename from console_spo_utils/Model/TokenWaitInfo.cs rename to library_spo_utils/Model/TokenWaitInfo.cs index 80000d7..dd6469a 100644 --- a/console_spo_utils/Model/TokenWaitInfo.cs +++ b/library_spo_utils/Model/TokenWaitInfo.cs @@ -2,6 +2,6 @@ { internal class TokenWaitInfo { - public RegisteredWaitHandle Handle = null; + internal RegisteredWaitHandle Handle = null; } } diff --git a/console_spo_utils/Program.cs b/library_spo_utils/Program.cs similarity index 100% rename from console_spo_utils/Program.cs rename to library_spo_utils/Program.cs diff --git a/console_spo_utils/Services/AutenticationManager.cs b/library_spo_utils/Services/AutenticationManager.cs similarity index 98% rename from console_spo_utils/Services/AutenticationManager.cs rename to library_spo_utils/Services/AutenticationManager.cs index 0fa599a..3b07d1b 100644 --- a/console_spo_utils/Services/AutenticationManager.cs +++ b/library_spo_utils/Services/AutenticationManager.cs @@ -9,7 +9,7 @@ using console_spo_utils.Interfaces.Services; namespace console_spo_utils.Services { - public sealed class SharePointAuthenticationManager : IDisposable, ISharePointAuthenticationManager + internal sealed class SharePointAuthenticationManager : IDisposable, ISharePointAuthenticationManager { private readonly ILogger logger; private readonly ISiteOptions siteOptions; diff --git a/console_spo_utils/Services/NonComplianceBuildService.cs b/library_spo_utils/Services/NonComplianceBuildService.cs similarity index 96% rename from console_spo_utils/Services/NonComplianceBuildService.cs rename to library_spo_utils/Services/NonComplianceBuildService.cs index 8d5da57..9299811 100644 --- a/console_spo_utils/Services/NonComplianceBuildService.cs +++ b/library_spo_utils/Services/NonComplianceBuildService.cs @@ -3,7 +3,7 @@ using Microsoft.Extensions.Logging; namespace console_spo_utils.Services; -public class NonComplianceBuildService : INonComplianceBuildService +internal class NonComplianceBuildService : INonComplianceBuildService { private readonly ISiteOptions siteOptions; private readonly ISharePointAuthenticationManager sharePointAuthenticationManager; diff --git a/console_spo_utils/Services/NonComplianceDocLibraryService.cs b/library_spo_utils/Services/NonComplianceDocLibraryService.cs similarity index 97% rename from console_spo_utils/Services/NonComplianceDocLibraryService.cs rename to library_spo_utils/Services/NonComplianceDocLibraryService.cs index 4d8c68e..f57be68 100644 --- a/console_spo_utils/Services/NonComplianceDocLibraryService.cs +++ b/library_spo_utils/Services/NonComplianceDocLibraryService.cs @@ -4,7 +4,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services; -public class NonComplianceDocLibraryService : INonComplianceDocLibraryService +internal class NonComplianceDocLibraryService : INonComplianceDocLibraryService { private readonly ILogger logger; diff --git a/console_spo_utils/Services/NonComplianceDocSetService.cs b/library_spo_utils/Services/NonComplianceDocSetService.cs similarity index 98% rename from console_spo_utils/Services/NonComplianceDocSetService.cs rename to library_spo_utils/Services/NonComplianceDocSetService.cs index c5ac6fa..8f3e97a 100644 --- a/console_spo_utils/Services/NonComplianceDocSetService.cs +++ b/library_spo_utils/Services/NonComplianceDocSetService.cs @@ -7,7 +7,7 @@ using Microsoft.SharePoint.Client.DocumentSet; namespace console_spo_utils.Services; -public class NonComplianceDocSetService : INonComplianceDocSetService +internal class NonComplianceDocSetService : INonComplianceDocSetService { private readonly ISharePointCustomOperation cpt; private readonly IOneNoteService oneNoteService; diff --git a/console_spo_utils/Services/OneNoteService.cs b/library_spo_utils/Services/OneNoteService.cs similarity index 98% rename from console_spo_utils/Services/OneNoteService.cs rename to library_spo_utils/Services/OneNoteService.cs index 629b9ab..cd6ce66 100644 --- a/console_spo_utils/Services/OneNoteService.cs +++ b/library_spo_utils/Services/OneNoteService.cs @@ -4,7 +4,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services; -public class OneNoteService : IOneNoteService +internal class OneNoteService : IOneNoteService { private readonly ILogger logger; private readonly ISiteOptions siteOptions; diff --git a/console_spo_utils/Services/ProjectDocLibraryService.cs b/library_spo_utils/Services/ProjectDocLibraryService.cs similarity index 97% rename from console_spo_utils/Services/ProjectDocLibraryService.cs rename to library_spo_utils/Services/ProjectDocLibraryService.cs index dbe747a..42a825f 100644 --- a/console_spo_utils/Services/ProjectDocLibraryService.cs +++ b/library_spo_utils/Services/ProjectDocLibraryService.cs @@ -5,7 +5,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services; -public class ProjectDocLibraryService : IProjectDocLibraryService +internal class ProjectDocLibraryService : IProjectDocLibraryService { private readonly ILogger logger; private readonly IRightsService rightsService; diff --git a/console_spo_utils/Services/ProjectQuickMenuService.cs b/library_spo_utils/Services/ProjectQuickMenuService.cs similarity index 97% rename from console_spo_utils/Services/ProjectQuickMenuService.cs rename to library_spo_utils/Services/ProjectQuickMenuService.cs index 80786f2..b710165 100644 --- a/console_spo_utils/Services/ProjectQuickMenuService.cs +++ b/library_spo_utils/Services/ProjectQuickMenuService.cs @@ -6,7 +6,7 @@ using Microsoft.SharePoint.Navigation; namespace console_spo_utils.Services; -public class ProjectQuickMenuService : IProjectQuickMenuService +internal class ProjectQuickMenuService : IProjectQuickMenuService { private readonly ILogger logger; private readonly ISiteOptions siteOptions; diff --git a/console_spo_utils/Services/ProjectService.cs b/library_spo_utils/Services/ProjectService.cs similarity index 99% rename from console_spo_utils/Services/ProjectService.cs rename to library_spo_utils/Services/ProjectService.cs index 83b14c5..c71a043 100644 --- a/console_spo_utils/Services/ProjectService.cs +++ b/library_spo_utils/Services/ProjectService.cs @@ -6,7 +6,7 @@ using Microsoft.SharePoint.Client.WebParts; namespace console_spo_utils.Services; -public class ProjectService : IProjectService +internal class ProjectService : IProjectService { private readonly ISiteOptions siteOptions; private readonly ISharePointAuthenticationManager sharePointAuthenticationManager; diff --git a/console_spo_utils/Services/ProjectYearService.cs b/library_spo_utils/Services/ProjectYearService.cs similarity index 98% rename from console_spo_utils/Services/ProjectYearService.cs rename to library_spo_utils/Services/ProjectYearService.cs index 543b018..22fe94e 100644 --- a/console_spo_utils/Services/ProjectYearService.cs +++ b/library_spo_utils/Services/ProjectYearService.cs @@ -5,7 +5,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services; -public class ProjectYearService : IProjectYearService +internal class ProjectYearService : IProjectYearService { private readonly ILogger logger; private readonly IProjectService projectService; diff --git a/console_spo_utils/Services/QuotationBuildService.cs b/library_spo_utils/Services/QuotationBuildService.cs similarity index 97% rename from console_spo_utils/Services/QuotationBuildService.cs rename to library_spo_utils/Services/QuotationBuildService.cs index 0a14f9b..b3ee490 100644 --- a/console_spo_utils/Services/QuotationBuildService.cs +++ b/library_spo_utils/Services/QuotationBuildService.cs @@ -3,7 +3,7 @@ using Microsoft.Extensions.Logging; namespace console_spo_utils.Services; -public class QuotationBuildService : IQuotationBuildService +internal class QuotationBuildService : IQuotationBuildService { private readonly ISiteOptions siteOptions; private readonly ISharePointAuthenticationManager sharePointAuthenticationManager; diff --git a/console_spo_utils/Services/QuotationDocLibraryService.cs b/library_spo_utils/Services/QuotationDocLibraryService.cs similarity index 98% rename from console_spo_utils/Services/QuotationDocLibraryService.cs rename to library_spo_utils/Services/QuotationDocLibraryService.cs index 5cf7760..ff11c0b 100644 --- a/console_spo_utils/Services/QuotationDocLibraryService.cs +++ b/library_spo_utils/Services/QuotationDocLibraryService.cs @@ -4,7 +4,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services; -public class QuotationDocLibraryService : IQuotationDocLibraryService +internal class QuotationDocLibraryService : IQuotationDocLibraryService { private readonly ILogger logger; diff --git a/console_spo_utils/Services/QuotationDocSetService.cs b/library_spo_utils/Services/QuotationDocSetService.cs similarity index 98% rename from console_spo_utils/Services/QuotationDocSetService.cs rename to library_spo_utils/Services/QuotationDocSetService.cs index 2c213fd..c77910d 100644 --- a/console_spo_utils/Services/QuotationDocSetService.cs +++ b/library_spo_utils/Services/QuotationDocSetService.cs @@ -7,7 +7,7 @@ using Microsoft.SharePoint.Client.DocumentSet; namespace console_spo_utils.Services; -public class QuotationDocSetService : IQuotationDocSetService +internal class QuotationDocSetService : IQuotationDocSetService { private readonly ISharePointCustomOperation cpt; private readonly ILogger logger; diff --git a/console_spo_utils/Services/RightsService.cs b/library_spo_utils/Services/RightsService.cs similarity index 99% rename from console_spo_utils/Services/RightsService.cs rename to library_spo_utils/Services/RightsService.cs index d9bbff9..1f84772 100644 --- a/console_spo_utils/Services/RightsService.cs +++ b/library_spo_utils/Services/RightsService.cs @@ -4,7 +4,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services { - public class RightsService : IRightsService + internal class RightsService : IRightsService { private readonly ILogger logger; diff --git a/console_spo_utils/Services/SharePointCustomOperation.cs b/library_spo_utils/Services/SharePointCustomOperation.cs similarity index 98% rename from console_spo_utils/Services/SharePointCustomOperation.cs rename to library_spo_utils/Services/SharePointCustomOperation.cs index cece9dd..7013901 100644 --- a/console_spo_utils/Services/SharePointCustomOperation.cs +++ b/library_spo_utils/Services/SharePointCustomOperation.cs @@ -9,7 +9,7 @@ using console_spo_utils.Constants; namespace console_spo_utils.Services { - public class SharePointCustomOperation : ISharePointCustomOperation + internal class SharePointCustomOperation : ISharePointCustomOperation { private readonly ILogger logger; private readonly IRightsService rightsService; diff --git a/console_spo_utils/Services/SharePointStructureBuilderService.cs b/library_spo_utils/Services/SharePointStructureBuilderService.cs similarity index 97% rename from console_spo_utils/Services/SharePointStructureBuilderService.cs rename to library_spo_utils/Services/SharePointStructureBuilderService.cs index 433698f..853ccde 100644 --- a/console_spo_utils/Services/SharePointStructureBuilderService.cs +++ b/library_spo_utils/Services/SharePointStructureBuilderService.cs @@ -4,7 +4,7 @@ using console_spo_utils.Interfaces.Services; namespace console_spo_utils.Services; -public class SharePointStructureBuilderService : ISharePointStructureBuilder +internal class SharePointStructureBuilderService : ISharePointStructureBuilder { private readonly ISiteService siteService; private readonly ISubProjectRepository subProjectRepository; diff --git a/console_spo_utils/Services/SiteOptions.cs b/library_spo_utils/Services/SiteOptions.cs similarity index 98% rename from console_spo_utils/Services/SiteOptions.cs rename to library_spo_utils/Services/SiteOptions.cs index 9a35a5a..ae9d4ee 100644 --- a/console_spo_utils/Services/SiteOptions.cs +++ b/library_spo_utils/Services/SiteOptions.cs @@ -1,7 +1,6 @@ using System.Net; using System.Security; using console_spo_utils.Interfaces.Services; -using Microsoft.Crm.Sdk.Messages; namespace console_spo_utils.Services; diff --git a/console_spo_utils/Services/SiteService.cs b/library_spo_utils/Services/SiteService.cs similarity index 99% rename from console_spo_utils/Services/SiteService.cs rename to library_spo_utils/Services/SiteService.cs index 168a44b..c3627cf 100644 --- a/console_spo_utils/Services/SiteService.cs +++ b/library_spo_utils/Services/SiteService.cs @@ -6,7 +6,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services; -public class SiteService : ISiteService +internal class SiteService : ISiteService { private readonly ILogger logger; private readonly ISharePointAuthenticationManager authMgr; diff --git a/console_spo_utils/Services/SubProjectBuilderService.cs b/library_spo_utils/Services/SubProjectBuilderService.cs similarity index 98% rename from console_spo_utils/Services/SubProjectBuilderService.cs rename to library_spo_utils/Services/SubProjectBuilderService.cs index 05c3222..8c1497d 100644 --- a/console_spo_utils/Services/SubProjectBuilderService.cs +++ b/library_spo_utils/Services/SubProjectBuilderService.cs @@ -7,7 +7,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services; -public class SubProjectBuilderService : ISubProjectBuilderService +internal class SubProjectBuilderService : ISubProjectBuilderService { private readonly ISiteOptions siteOptions; private readonly ISharePointCustomOperation cpt; diff --git a/console_spo_utils/Services/SubSiteService.cs b/library_spo_utils/Services/SubSiteService.cs similarity index 98% rename from console_spo_utils/Services/SubSiteService.cs rename to library_spo_utils/Services/SubSiteService.cs index b950066..f325bbf 100644 --- a/console_spo_utils/Services/SubSiteService.cs +++ b/library_spo_utils/Services/SubSiteService.cs @@ -5,7 +5,7 @@ using Microsoft.SharePoint.Client; namespace console_spo_utils.Services; -public class SubSiteService : ISubSiteService +internal class SubSiteService : ISubSiteService { private readonly ILogger logger; private readonly IProjectQuickMenuService projectQuickMenuService; diff --git a/console_spo_utils/Services/TenantService.cs b/library_spo_utils/Services/TenantService.cs similarity index 98% rename from console_spo_utils/Services/TenantService.cs rename to library_spo_utils/Services/TenantService.cs index e933d75..a0427cc 100644 --- a/console_spo_utils/Services/TenantService.cs +++ b/library_spo_utils/Services/TenantService.cs @@ -5,7 +5,7 @@ using console_spo_utils.Enums; namespace console_spo_utils.Services; -public class TenantService : ITenantService +internal class TenantService : ITenantService { private readonly ISharePointAuthenticationManager authMgr; private readonly ISharePointCustomOperation cpt; diff --git a/console_spo_utils/Services/WebpartService.cs b/library_spo_utils/Services/WebpartService.cs similarity index 95% rename from console_spo_utils/Services/WebpartService.cs rename to library_spo_utils/Services/WebpartService.cs index b827912..c768ab1 100644 --- a/console_spo_utils/Services/WebpartService.cs +++ b/library_spo_utils/Services/WebpartService.cs @@ -6,7 +6,7 @@ using Microsoft.SharePoint.Client.WebParts; namespace console_spo_utils.Services { - public class WebpartService : IWebpartService + internal class WebpartService : IWebpartService { private readonly ILogger logger; private readonly ISharePointAuthenticationManager authMgr; diff --git a/console_spo_utils/Workers/MainWorker.cs b/library_spo_utils/Workers/MainWorker.cs similarity index 100% rename from console_spo_utils/Workers/MainWorker.cs rename to library_spo_utils/Workers/MainWorker.cs diff --git a/console_spo_utils/bin/Debug/net6.0/console_spo_utils.deps.json b/library_spo_utils/bin/Debug/net6.0/console_spo_utils.deps.json similarity index 100% rename from console_spo_utils/bin/Debug/net6.0/console_spo_utils.deps.json rename to library_spo_utils/bin/Debug/net6.0/console_spo_utils.deps.json diff --git a/console_spo_utils/bin/Debug/net6.0/console_spo_utils.runtimeconfig.json b/library_spo_utils/bin/Debug/net6.0/console_spo_utils.runtimeconfig.json similarity index 100% rename from console_spo_utils/bin/Debug/net6.0/console_spo_utils.runtimeconfig.json rename to library_spo_utils/bin/Debug/net6.0/console_spo_utils.runtimeconfig.json diff --git a/console_spo_utils/console_spo_utils.csproj b/library_spo_utils/library_spo_utils.csproj similarity index 83% rename from console_spo_utils/console_spo_utils.csproj rename to library_spo_utils/library_spo_utils.csproj index d5560b0..37da5e1 100644 --- a/console_spo_utils/console_spo_utils.csproj +++ b/library_spo_utils/library_spo_utils.csproj @@ -8,13 +8,11 @@ - - @@ -25,8 +23,6 @@ - - diff --git a/console_spo_utils/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/library_spo_utils/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs rename to library_spo_utils/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs diff --git a/console_spo_utils/obj/Debug/net6.0/_IsIncrementalBuild b/library_spo_utils/obj/Debug/net6.0/_IsIncrementalBuild similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/_IsIncrementalBuild rename to library_spo_utils/obj/Debug/net6.0/_IsIncrementalBuild diff --git a/console_spo_utils/obj/Debug/net6.0/console_spo_utils.AssemblyInfo.cs b/library_spo_utils/obj/Debug/net6.0/console_spo_utils.AssemblyInfo.cs similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spo_utils.AssemblyInfo.cs rename to library_spo_utils/obj/Debug/net6.0/console_spo_utils.AssemblyInfo.cs diff --git a/console_spo_utils/obj/Debug/net6.0/console_spo_utils.GeneratedMSBuildEditorConfig.editorconfig b/library_spo_utils/obj/Debug/net6.0/console_spo_utils.GeneratedMSBuildEditorConfig.editorconfig similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spo_utils.GeneratedMSBuildEditorConfig.editorconfig rename to library_spo_utils/obj/Debug/net6.0/console_spo_utils.GeneratedMSBuildEditorConfig.editorconfig diff --git a/console_spo_utils/obj/Debug/net6.0/console_spo_utils.GlobalUsings.g.cs b/library_spo_utils/obj/Debug/net6.0/console_spo_utils.GlobalUsings.g.cs similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spo_utils.GlobalUsings.g.cs rename to library_spo_utils/obj/Debug/net6.0/console_spo_utils.GlobalUsings.g.cs diff --git a/console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.BuildWithSkipAnalyzers b/library_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.BuildWithSkipAnalyzers similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.BuildWithSkipAnalyzers rename to library_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.BuildWithSkipAnalyzers diff --git a/console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.CopyComplete b/library_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.CopyComplete similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.CopyComplete rename to library_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.CopyComplete diff --git a/console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt b/library_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt rename to library_spo_utils/obj/Debug/net6.0/console_spo_utils.csproj.FileListAbsolute.txt diff --git a/console_spo_utils/obj/Debug/net6.0/console_spoutils.AssemblyInfo.cs b/library_spo_utils/obj/Debug/net6.0/console_spoutils.AssemblyInfo.cs similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spoutils.AssemblyInfo.cs rename to library_spo_utils/obj/Debug/net6.0/console_spoutils.AssemblyInfo.cs diff --git a/console_spo_utils/obj/Debug/net6.0/console_spoutils.GeneratedMSBuildEditorConfig.editorconfig b/library_spo_utils/obj/Debug/net6.0/console_spoutils.GeneratedMSBuildEditorConfig.editorconfig similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spoutils.GeneratedMSBuildEditorConfig.editorconfig rename to library_spo_utils/obj/Debug/net6.0/console_spoutils.GeneratedMSBuildEditorConfig.editorconfig diff --git a/console_spo_utils/obj/Debug/net6.0/console_spoutils.GlobalUsings.g.cs b/library_spo_utils/obj/Debug/net6.0/console_spoutils.GlobalUsings.g.cs similarity index 100% rename from console_spo_utils/obj/Debug/net6.0/console_spoutils.GlobalUsings.g.cs rename to library_spo_utils/obj/Debug/net6.0/console_spoutils.GlobalUsings.g.cs diff --git a/library_spo_utils/obj/Debug/net6.0/library_spo_utils.AssemblyInfo.cs b/library_spo_utils/obj/Debug/net6.0/library_spo_utils.AssemblyInfo.cs new file mode 100644 index 0000000..a536357 --- /dev/null +++ b/library_spo_utils/obj/Debug/net6.0/library_spo_utils.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/library_spo_utils/obj/Debug/net6.0/library_spo_utils.GeneratedMSBuildEditorConfig.editorconfig b/library_spo_utils/obj/Debug/net6.0/library_spo_utils.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..51dddd8 --- /dev/null +++ b/library_spo_utils/obj/Debug/net6.0/library_spo_utils.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/library_spo_utils/obj/Debug/net6.0/library_spo_utils.GlobalUsings.g.cs b/library_spo_utils/obj/Debug/net6.0/library_spo_utils.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/library_spo_utils/obj/Debug/net6.0/library_spo_utils.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/console_spo_utils/obj/console_spo_utils.csproj.nuget.dgspec.json b/library_spo_utils/obj/console_spo_utils.csproj.nuget.dgspec.json similarity index 100% rename from console_spo_utils/obj/console_spo_utils.csproj.nuget.dgspec.json rename to library_spo_utils/obj/console_spo_utils.csproj.nuget.dgspec.json diff --git a/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.props b/library_spo_utils/obj/console_spo_utils.csproj.nuget.g.props similarity index 100% rename from console_spo_utils/obj/console_spo_utils.csproj.nuget.g.props rename to library_spo_utils/obj/console_spo_utils.csproj.nuget.g.props diff --git a/console_spo_utils/obj/console_spo_utils.csproj.nuget.g.targets b/library_spo_utils/obj/console_spo_utils.csproj.nuget.g.targets similarity index 100% rename from console_spo_utils/obj/console_spo_utils.csproj.nuget.g.targets rename to library_spo_utils/obj/console_spo_utils.csproj.nuget.g.targets diff --git a/console_spo_utils/obj/console_spoutils.csproj.nuget.dgspec.json b/library_spo_utils/obj/console_spoutils.csproj.nuget.dgspec.json similarity index 100% rename from console_spo_utils/obj/console_spoutils.csproj.nuget.dgspec.json rename to library_spo_utils/obj/console_spoutils.csproj.nuget.dgspec.json diff --git a/console_spo_utils/obj/console_spoutils.csproj.nuget.g.props b/library_spo_utils/obj/console_spoutils.csproj.nuget.g.props similarity index 100% rename from console_spo_utils/obj/console_spoutils.csproj.nuget.g.props rename to library_spo_utils/obj/console_spoutils.csproj.nuget.g.props diff --git a/console_spo_utils/obj/console_spoutils.csproj.nuget.g.targets b/library_spo_utils/obj/console_spoutils.csproj.nuget.g.targets similarity index 100% rename from console_spo_utils/obj/console_spoutils.csproj.nuget.g.targets rename to library_spo_utils/obj/console_spoutils.csproj.nuget.g.targets diff --git a/library_spo_utils/obj/library_spo_utils.csproj.nuget.dgspec.json b/library_spo_utils/obj/library_spo_utils.csproj.nuget.dgspec.json new file mode 100644 index 0000000..32c1b0e --- /dev/null +++ b/library_spo_utils/obj/library_spo_utils.csproj.nuget.dgspec.json @@ -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" + } + } + } + } +} \ No newline at end of file diff --git a/library_spo_utils/obj/library_spo_utils.csproj.nuget.g.props b/library_spo_utils/obj/library_spo_utils.csproj.nuget.g.props new file mode 100644 index 0000000..6da8d3f --- /dev/null +++ b/library_spo_utils/obj/library_spo_utils.csproj.nuget.g.props @@ -0,0 +1,21 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + 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.3.0 + + + + + + + + + + + \ No newline at end of file diff --git a/library_spo_utils/obj/library_spo_utils.csproj.nuget.g.targets b/library_spo_utils/obj/library_spo_utils.csproj.nuget.g.targets new file mode 100644 index 0000000..73b4c7c --- /dev/null +++ b/library_spo_utils/obj/library_spo_utils.csproj.nuget.g.targets @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/console_spo_utils/obj/project.assets.json b/library_spo_utils/obj/project.assets.json similarity index 96% rename from console_spo_utils/obj/project.assets.json rename to library_spo_utils/obj/project.assets.json index 1b7cf39..e11c095 100644 --- a/console_spo_utils/obj/project.assets.json +++ b/library_spo_utils/obj/project.assets.json @@ -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": { "type": "package", "dependencies": { @@ -1268,56 +1211,6 @@ "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": { "type": "package", "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": { "type": "package", "dependencies": { @@ -3511,83 +3379,6 @@ "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": { "sha512": "77RzjJe9nGn7wTOQvEFQZRdkQjETrbC4MhytzwTv2TTuoqoHvmUIzwFqE6BjjFGsHbZhYNYZg/YJbOa4kUMSSg==", "type": "package", @@ -5034,37 +4825,6 @@ "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": { "sha512": "AJiI7ApweC1HYmlJiMvB3tIjtK0kCZnDLbQk66JqqUERTTIaZdIk/wyzGmyACZ8ox1zhxkDy2IbLOoAi8K7n3g==", "type": "package", @@ -5570,26 +5330,6 @@ "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": { "sha512": "/kFtJWkTXxlwNapdNGuvflYTcB3ODFUzt/PVDTNQQyfl7V7mnB+HrTuvlKfrWDHscx21Qavac9xVogG9nAptWA==", "type": "package", @@ -9982,13 +9722,11 @@ }, "projectFileDependencyGroups": { "net6.0": [ - "Hangfire.Core >= 1.7.31", "Microsoft.AspNetCore.Components.WebAssembly.Authentication >= 6.0.8", "Microsoft.Extensions.Hosting >= 6.0.1", "Microsoft.Extensions.Hosting.Abstractions >= 6.0.0", "Microsoft.PowerPlatform.Dataverse.Client >= 1.0.9", "Microsoft.SharePoint.Client >= 14.0.4762.1000", - "Microsoft.SharePoint.Client.Online.CSOM >= 15.0.4919.1000", "Microsoft.SharePointOnline.CSOM >= 16.1.22615.12000", "PnP.Core >= 1.7.0", "PnP.Core.Admin >= 1.7.0", @@ -10005,11 +9743,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Sources\\VS\\console_spo_utils\\console_spo_utils\\console_spo_utils.csproj", - "projectName": "console_spo_utils", - "projectPath": "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": "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\\console_spo_utils\\obj\\", + "outputPath": "C:\\Sources\\VS\\console_spo_utils\\library_spo_utils\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files\\DevExpress 22.1\\Components\\Offline Packages", @@ -10046,10 +9784,6 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { - "Hangfire.Core": { - "target": "Package", - "version": "[1.7.31, )" - }, "Microsoft.AspNetCore.Components.WebAssembly.Authentication": { "target": "Package", "version": "[6.0.8, )" @@ -10070,10 +9804,6 @@ "target": "Package", "version": "[14.0.4762.1000, )" }, - "Microsoft.SharePoint.Client.Online.CSOM": { - "target": "Package", - "version": "[15.0.4919.1000, )" - }, "Microsoft.SharePointOnline.CSOM": { "target": "Package", "version": "[16.1.22615.12000, )" @@ -10220,26 +9950,6 @@ "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", "level": "Warning",