├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── lockdown.yml ├── .gitignore ├── Binaries ├── SharePointPnP.Modernization.Framework.dll ├── SharePointPnP.Modernization.Framework.xml ├── readme.md └── release │ ├── SharePointPnP.Modernization.Framework.dll │ └── SharePointPnP.Modernization.Framework.xml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Commands ├── Admin │ ├── AddHubSiteAssociation.cs │ ├── AddMicrosoft365GroupToSite.cs │ ├── AddOrgAssetsLibrary.cs │ ├── AddOrgNewsSite.cs │ ├── AddSiteCollectionAppCatalog.cs │ ├── AddTenantCdnOrigin.cs │ ├── AddTenantTheme.cs │ ├── ClearTenantAppCatalogUrl.cs │ ├── GetHideDefaultThemes.cs │ ├── GetHomeSite.cs │ ├── GetHubSite.cs │ ├── GetHubSiteChild.cs │ ├── GetKnowledgeHubSite.cs │ ├── GetOrgAssetsLibrary.cs │ ├── GetOrgNewsSite.cs │ ├── GetStorageEntity.cs │ ├── GetTenant.cs │ ├── GetTenantAppCatalogUrl.cs │ ├── GetTenantCdnEnabled.cs │ ├── GetTenantCdnOrigin.cs │ ├── GetTenantCdnPolicies.cs │ ├── GetTenantId.cs │ ├── GetTenantSite.cs │ ├── GetTenantSyncClientRestriction.cs │ ├── GetTenantTheme.cs │ ├── GetTimeZoneId.cs │ ├── GetWebTemplates.cs │ ├── GrantHubSiteRights.cs │ ├── NewSite.cs │ ├── NewTenantSite.cs │ ├── RegisterAppCatalogSite.cs │ ├── RegisterHubSite.cs │ ├── RemoveHomeSite.cs │ ├── RemoveHubSiteAssociation.cs │ ├── RemoveKnowledgeHubSite.cs │ ├── RemoveOrgAssetsLibrary.cs │ ├── RemoveOrgNewsSite.cs │ ├── RemoveSiteCollectionAppCatalog.cs │ ├── RemoveStorageEntity.cs │ ├── RemoveTenantCdnOrigin.cs │ ├── RemoveTenantSite.cs │ ├── RemoveTenantTheme.cs │ ├── RevokeHubSiteRights.cs │ ├── SetHideDefaultThemes.cs │ ├── SetHomeSite.cs │ ├── SetHubSite.cs │ ├── SetKnowledgeHubSite.cs │ ├── SetStorageEntity.cs │ ├── SetTenant.cs │ ├── SetTenantAppCatalogUrl.cs │ ├── SetTenantCdnEnabled.cs │ ├── SetTenantCdnPolicy.cs │ ├── SetTenantSite.cs │ ├── SetTenantSyncClientRestriction.cs │ └── UnregisterHubSite.cs ├── Apps │ ├── AddApp.cs │ ├── AddApplicationCustomizer.cs │ ├── ApproveTenantServicePrincipalPermissionRequest.cs │ ├── DenyTenantServicePrincipalPermissionRequest.cs │ ├── DisableTenantServicePrincipal.cs │ ├── EnableTenantServicePrincipal.cs │ ├── GetApp.cs │ ├── GetAppInstance.cs │ ├── GetApplicationCustomizer.cs │ ├── GetTenantServicePrincipal.cs │ ├── GetTenantServicePrincipalPermissionGrants.cs │ ├── GetTenantServicePrincipalPermissionRequests.cs │ ├── GrantTenantServicePrincipalPermission.cs │ ├── ImportAppPackage.cs │ ├── InstallApp.cs │ ├── PublishApp.cs │ ├── RemoveApp.cs │ ├── RemoveApplicationCustomizer.cs │ ├── RevokeTenantServicePrincipalPermission.cs │ ├── SetApplicationCustomizer.cs │ ├── SyncAppToTeams.cs │ ├── UninstallApp.cs │ ├── UninstallAppInstance.cs │ ├── UnpublishApp.cs │ └── UpdateApp.cs ├── Base │ ├── AddStoredCredential.cs │ ├── BasePSCmdlet.cs │ ├── ConnectOnline.cs │ ├── Constants.cs │ ├── DisablePowerShellTelemetry.cs │ ├── DisconnectOnline.cs │ ├── EnablePowerShellTelemetry.cs │ ├── GetAccessToken.cs │ ├── GetAppAuthAccessToken.cs │ ├── GetAuthenticationRealm.cs │ ├── GetAzureCertificate.cs │ ├── GetConnection.cs │ ├── GetContext.cs │ ├── GetException.cs │ ├── GetHealthScore.cs │ ├── GetPowerShellTelemetryEnabled.cs │ ├── GetProperty.cs │ ├── GetStoredCredential.cs │ ├── InitializePowerShellAuthentication.cs │ ├── InvokeQuery.cs │ ├── InvokeSPRestMethod.cs │ ├── NewAzureCertificate.cs │ ├── PipeBinds │ │ ├── AlertPipeBind.cs │ │ ├── AppMetadataPipeBind.cs │ │ ├── AppPipeBind.cs │ │ ├── ApplyConfigurationPipeBind.cs │ │ ├── ClientSideComponentPipeBind.cs │ │ ├── ClientSidePagePipeBind.cs │ │ ├── ClientSideWebPartPipeBind.cs │ │ ├── ContentTypePipeBind.cs │ │ ├── CredentialPipeBind.cs │ │ ├── DiagnosticEndpointPipeBind.cs │ │ ├── DocumentSetPipeBind.cs │ │ ├── EventReceiverPipeBind.cs │ │ ├── ExtractConfigurationPipeBind.cs │ │ ├── FeaturePipeBind.cs │ │ ├── FieldPipeBind.cs │ │ ├── FileVersionPipeBind.cs │ │ ├── FolderPipeBind.cs │ │ ├── GenericObjectNameIdPipeBind.cs │ │ ├── GenericPropertiesPipeBind.cs │ │ ├── GraphSubscriptionPipeBind.cs │ │ ├── GroupPipeBind.cs │ │ ├── GuidPipeBind.cs │ │ ├── HubSitePipeBind.cs │ │ ├── ImageRenditionPipeBind.cs │ │ ├── ListItemPipeBind.cs │ │ ├── ListPipeBind.cs │ │ ├── Microsoft365GroupPipeBind.cs │ │ ├── NavigationNodePipeBind.cs │ │ ├── PagePipeBind.cs │ │ ├── ProvisioningHierarchyPipeBind.cs │ │ ├── ProvisioningSequencePipebind.cs │ │ ├── ProvisioningSitePipeBind.cs │ │ ├── ProvisioningTemplatePipeBind.cs │ │ ├── RecycleBinItemPipeBind.cs │ │ ├── RoleDefinitionPipeBind.cs │ │ ├── SitePipeBind.cs │ │ ├── TaxonomyItemPipeBind.cs │ │ ├── TeamsAppPipeBind.cs │ │ ├── TeamsChannelPipeBind.cs │ │ ├── TeamsTabPipeBind.cs │ │ ├── TeamsTeamPipeBind.cs │ │ ├── TenantSiteDesignPipeBind.cs │ │ ├── TenantSiteDesignTaskPipeBind.cs │ │ ├── TenantSiteScriptPipeBind.cs │ │ ├── TermGroupPipeBind.cs │ │ ├── ThemePalettePipeBind.cs │ │ ├── ThemePipeBind.cs │ │ ├── UserCustomActionPipeBind.cs │ │ ├── UserPipeBind.cs │ │ ├── ViewPipeBind.cs │ │ ├── WebPartPipeBind.cs │ │ ├── WebPipeBind.cs │ │ ├── WebhookSubscriptionPipeBind.cs │ │ ├── WorkflowDefinitionPipeBind.cs │ │ ├── WorkflowInstancePipeBind.cs │ │ └── WorkflowSubscriptionPipeBind.cs │ ├── PnPAdminCmdlet.cs │ ├── PnPAzureADConnection.cs │ ├── PnPConnectedCmdlet.cs │ ├── PnPConnection.cs │ ├── PnPConnectionHelper.cs │ ├── PnPGraphCmdlet.cs │ ├── PnPOfficeManagementApiCmdlet.cs │ ├── PnPRetrievalsCmdlet.cs │ ├── PnPSharePointCmdlet.cs │ ├── PnPWebCmdlet.cs │ ├── PnPWebRetrievalsCmdlet.cs │ ├── PropertyLoadingAttribute.cs │ ├── RegisterPnPManagementShellAccess.cs │ ├── RemoveStoredCredential.cs │ ├── RequestAccessToken.cs │ ├── SetContext.cs │ ├── SetTraceLog.cs │ └── TokenHandling.cs ├── Branding │ ├── AddCustomAction.cs │ ├── AddJavaScriptBlock.cs │ ├── AddJavaScriptLink.cs │ ├── DisableResponsiveUI.cs │ ├── EnableResponsiveUI.cs │ ├── GetCustomAction.cs │ ├── GetFooter.cs │ ├── GetHomepage.cs │ ├── GetJavaScriptLink.cs │ ├── GetMasterPage.cs │ ├── GetTheme.cs │ ├── RemoveCustomAction.cs │ ├── RemoveJavaScriptLink.cs │ ├── SetFooter.cs │ ├── SetHomepage.cs │ ├── SetMasterPage.cs │ ├── SetMinimalDownloadStrategy.cs │ ├── SetTheme.cs │ └── SetWebTheme.cs ├── ClientSidePages │ ├── AddClientSidePage.cs │ ├── AddClientSidePageSection.cs │ ├── AddClientSideText.cs │ ├── ClientSidePageTransformatorLogType.cs │ ├── ClientSidePageUtilities.cs │ ├── ConvertToClientSidePage.cs │ ├── ExportClientSidePage.cs │ ├── ExportClientSidePageMapping.cs │ ├── GetAvailableClientSideComponents.cs │ ├── GetClientSideComponent.cs │ ├── GetClientSidePage.cs │ ├── MoveClientSideComponent.cs │ ├── RemoveClientSideComponent.cs │ ├── RemoveClientSidePage.cs │ ├── SaveClientSidePageConversionLog.cs │ ├── SetClientSidePage.cs │ ├── SetClientSideText.cs │ └── SetClientSideWebPart.cs ├── ContentTypes │ ├── AddContentType.cs │ ├── AddContentTypeToList.cs │ ├── AddFieldToContentType.cs │ ├── GetContentType.cs │ ├── GetContentTypePublishingHubUrl.cs │ ├── RemoveContentType.cs │ ├── RemoveContentTypeFromList.cs │ ├── RemoveFieldFromContentType.cs │ └── SetDefaultContentTypeToList.cs ├── Diagnostic │ ├── FolderStatistics.cs │ ├── ListStatistics.cs │ ├── MeasurePnPList.cs │ ├── MeasurePnPWeb.cs │ ├── MeasureResponseTime.cs │ ├── MeasureResponseTimeMode.cs │ ├── ResponseTimeStatistics.cs │ └── WebStatistics.cs ├── DocumentSets │ ├── AddContentTypeToDocumentSet.cs │ ├── AddDocumentSet.cs │ ├── GetDocumentSetTemplate.cs │ ├── RemoveContentTypeFromDocumentSet.cs │ └── SetDocumentSetField.cs ├── Enums │ ├── AlertFilter.cs │ ├── AssociatedGroupType.cs │ ├── AuditContentType.cs │ ├── CdnType.cs │ ├── ClientSidePagePromoteType.cs │ ├── ConnectionType.cs │ ├── CredentialType.cs │ ├── CustomActionScope.cs │ ├── DocumentSetFieldScope.cs │ ├── Encoding.cs │ ├── FeatureScope.cs │ ├── GrooveBlockOption.cs │ ├── HttpRequestMethod.cs │ ├── InitializationType.cs │ ├── ListItemUpdateType.cs │ ├── NavigationNodeTypeEnum.cs │ ├── Office365Workload.cs │ ├── SearchBoxInNavBar.cs │ ├── SearchConfigurationScope.cs │ ├── SearchSettingsScope.cs │ ├── SiteType.cs │ ├── SiteWebTemplate.cs │ ├── StorageEntityScope.cs │ ├── TargetScope.cs │ └── TokenAudience.cs ├── Events │ ├── AddEventReceiver.cs │ ├── GetEventReceiver.cs │ └── RemoveEventReceiver.cs ├── Extensibility │ └── NewExtensibilityHandlerObject.cs ├── Extensions │ ├── ClientExtensions.cs │ ├── ClientObjectExtensions.cs │ └── WebExtensions.cs ├── Features │ ├── DisableFeature.cs │ ├── EnableFeature.cs │ └── GetFeature.cs ├── Fields │ ├── AddField.cs │ ├── AddFieldFromXml.cs │ ├── AddTaxonomyField.cs │ ├── GetField.cs │ ├── RemoveField.cs │ └── SetField.cs ├── Files │ ├── AddFile.cs │ ├── AddFolder.cs │ ├── CopyFile.cs │ ├── FindFile.cs │ ├── GetFile.cs │ ├── GetFileVersion.cs │ ├── GetFolder.cs │ ├── GetFolderItem.cs │ ├── MoveFile.cs │ ├── MoveFolder.cs │ ├── RemoveFile.cs │ ├── RemoveFileVersion.cs │ ├── RemoveFolder.cs │ ├── RenameFile.cs │ ├── RenameFolder.cs │ ├── ResetFileVersion.cs │ ├── ResolveFolder.cs │ ├── RestoreFileVersion.cs │ ├── SetFileCheckedIn.cs │ ├── SetFileCheckedOut.cs │ └── SetFolderPermission.cs ├── Graph │ ├── AddMicrosoft365GroupMember.cs │ ├── AddMicrosoft365GroupOwner.cs │ ├── AddSiteClassification.cs │ ├── ClearMicrosoft365GroupMember.cs │ ├── ClearMicrosoft365GroupOwner.cs │ ├── DisableSiteClassification.cs │ ├── EnableSiteClassification.cs │ ├── GetAADUser.cs │ ├── GetDeletedMicrosoft365Group.cs │ ├── GetGraphAccessToken.cs │ ├── GetGraphSubscription.cs │ ├── GetMicrosoft365Group.cs │ ├── GetMicrosoft365GroupMembers.cs │ ├── GetMicrosoft365GroupOwners.cs │ ├── GetSiteClassification.cs │ ├── NewGraphSubscription.cs │ ├── NewMicrosoft365Group.cs │ ├── RemoveDeletedMicrosoft365Group.cs │ ├── RemoveGraphSubscription.cs │ ├── RemoveMicrosoft365Group.cs │ ├── RemoveMicrosoft365GroupMember.cs │ ├── RemoveMicrosoft365GroupOwner.cs │ ├── RemoveSiteClassification.cs │ ├── ResetMicrosoft365GroupExpiration.cs │ ├── RestoreDeletedMicrosoft365Group.cs │ ├── SetGraphSubscription.cs │ ├── SetMicrosoft365Group.cs │ └── UpdateSiteClassification.cs ├── InformationManagement │ ├── ClosureState.cs │ ├── GetLabel.cs │ ├── GetListInformationRightsManagement.cs │ ├── GetSiteClosure.cs │ ├── GetSitePolicy.cs │ ├── ResetLabel.cs │ ├── SetLabel.cs │ ├── SetListInformationRightsManagement.cs │ ├── SetSiteClosure.cs │ └── SetSitePolicy.cs ├── InvokeAction │ ├── InvokeWebAction.cs │ ├── InvokeWebActionParameter.cs │ └── InvokeWebActionResult.cs ├── Lists │ ├── AddListItem.cs │ ├── AddView.cs │ ├── ClearDefaultColumnValues.cs │ ├── GetDefaultColumnValues.cs │ ├── GetList.cs │ ├── GetListItem.cs │ ├── GetView.cs │ ├── MoveListItemToRecycleBin.cs │ ├── NewList.cs │ ├── RemoveList.cs │ ├── RemoveListItem.cs │ ├── RemoveView.cs │ ├── RequestReIndexList.cs │ ├── SetDefaultColumnValues.cs │ ├── SetList.cs │ ├── SetListItem.cs │ ├── SetListItemPermission.cs │ ├── SetListPermission.cs │ └── SetView.cs ├── ManagementApi │ ├── GetManagementApiAccessToken.cs │ ├── GetOffice365CurrentServiceStatus.cs │ ├── GetOffice365HistoricalServiceStatus.cs │ ├── GetOffice365ServiceMessage.cs │ ├── GetOffice365Services.cs │ ├── GetOfficeManagementApiAccessToken.cs │ └── GetUnifiedAuditLog.cs ├── Model │ ├── AzureApp.cs │ ├── ConnectionMethod.cs │ ├── GenericToken.cs │ ├── GraphToken.cs │ ├── ManagementApiFeature.cs │ ├── ManagementApiFeatureStatus.cs │ ├── ManagementApiService.cs │ ├── ManagementApiServiceMessage.cs │ ├── ManagementApiServiceMessageText.cs │ ├── ManagementApiServiceStatus.cs │ ├── ManagementApiSubscription.cs │ ├── ManagementApiSubscriptionContent.cs │ ├── ManagementApiUnifiedLogRecord.cs │ ├── ManagementApiUnifiedLogRecordKeyValuePair.cs │ ├── OfficeManagementApiToken.cs │ ├── PnPException.cs │ ├── ProvisionedSite.cs │ ├── SPOPublicCdnOrigin.cs │ ├── SPOTenant.cs │ ├── SPOTenantSyncClientRestriction.cs │ ├── SPOTheme.cs │ ├── ServicePrincipalPermissionGrant.cs │ ├── SharePointToken.cs │ └── Teams │ │ ├── GraphException.cs │ │ ├── Group.cs │ │ ├── Team.cs │ │ ├── TeamApp.cs │ │ ├── TeamAppInstance.cs │ │ ├── TeamChannel.cs │ │ ├── TeamChannelMember.cs │ │ ├── TeamChannelMessage.cs │ │ ├── TeamChannelType.cs │ │ ├── TeamDiscoverySettings.cs │ │ ├── TeamFunSettings.cs │ │ ├── TeamGuestSettings.cs │ │ ├── TeamMemberSettings.cs │ │ ├── TeamMessagingSettings.cs │ │ ├── TeamSecurity.cs │ │ ├── TeamSecurityUser.cs │ │ ├── TeamSettings.cs │ │ ├── TeamTab.cs │ │ ├── TeamTabConfiguration.cs │ │ ├── TeamTabResource.cs │ │ ├── TeamTabType.cs │ │ └── User.cs ├── ModuleFiles │ ├── PnP.PowerShell.2013.Commands.Format.ps1xml │ ├── PnP.PowerShell.2016.Commands.Format.ps1xml │ ├── PnP.PowerShell.2019.Commands.Format.ps1xml │ ├── PnP.PowerShell.Core.Format.ps1xml │ └── PnP.PowerShell.Online.Commands.Format.ps1xml ├── Navigation │ ├── AddNavigationNode.cs │ ├── GetNavigationNode.cs │ └── RemoveNavigationNode.cs ├── PnP.PowerShell.Commands.csproj ├── PnP.PowerShell.Core.csproj ├── Principals │ ├── AddAlert.cs │ ├── AddUserToGroup.cs │ ├── GetAlert.cs │ ├── GetGroup.cs │ ├── GetGroupMembers.cs │ ├── GetGroupPermissions.cs │ ├── GetUser.cs │ ├── NewGroup.cs │ ├── NewUser.cs │ ├── RemoveAlert.cs │ ├── RemoveGroup.cs │ ├── RemoveUser.cs │ ├── RemoveUserFromGroup.cs │ ├── SetGroup.cs │ └── SetGroupPermissions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Provider │ ├── Parameters │ │ ├── SPOChildItemsParameters.cs │ │ ├── SPOContentParameters.cs │ │ └── SPODriveParameters.cs │ ├── SPOContentReaderWriter.cs │ ├── SPODriveCacheItem.cs │ ├── SPODriveCacheWeb.cs │ ├── SPODriveInfo.cs │ ├── SPOProvider.cs │ └── SPOProxy │ │ ├── SPOProxyCmdletBase.cs │ │ ├── SPOProxyCopyItem.cs │ │ ├── SPOProxyImplementation.cs │ │ └── SPOProxyMoveItem.cs ├── Provisioning │ ├── Site │ │ ├── AddDataRowsToProvisioningTemplate.cs │ │ ├── AddFileToProvisioningTemplate.cs │ │ ├── AddListFoldersToProvisioningTemplate.cs │ │ ├── ApplyProvisioningTemplate.cs │ │ ├── ConvertFolderToProvisioningTemplate.cs │ │ ├── ConvertProvisioningTemplate.cs │ │ ├── ExportListToProvisioningTemplate.cs │ │ ├── GetProvisioningTemplate.cs │ │ ├── NewProvisioningTemplate.cs │ │ ├── NewProvisioningTemplateFromFolder.cs │ │ ├── ReadProvisioningTemplate.cs │ │ ├── RemoveFileFromProvisioningTemplate.cs │ │ ├── SaveProvisioningTemplate.cs │ │ └── SetProvisioningTemplateMetadata.cs │ └── Tenant │ │ ├── AddProvisioningTemplate.cs │ │ ├── AddTenantSequence.cs │ │ ├── AddTenantSequenceSite.cs │ │ ├── AddTenantSequenceSubSite.cs │ │ ├── ApplyTenantTemplate.cs │ │ ├── GetTenantSequence.cs │ │ ├── GetTenantSequenceSite.cs │ │ ├── GetTenantTemplate.cs │ │ ├── NewTenantSequence.cs │ │ ├── NewTenantSequenceCommunicationSite.cs │ │ ├── NewTenantSequenceTeamNoGroupSite.cs │ │ ├── NewTenantSequenceTeamNoGroupSubSite.cs │ │ ├── NewTenantSequenceTeamSite.cs │ │ ├── NewTenantTemplate.cs │ │ ├── ReadTenantTemplate.cs │ │ ├── SaveTenantTemplate.cs │ │ └── TestTenantTemplate.cs ├── Publishing │ ├── AddHtmlPublishingPageLayout.cs │ ├── AddMasterPage.cs │ ├── AddPublishingImageRendition.cs │ ├── AddPublishingPage.cs │ ├── AddPublishingPageLayout.cs │ ├── AddWikiPage.cs │ ├── GetPublishingImageRendition.cs │ ├── GetWikiPageContent.cs │ ├── RemovePublishingImageRendition.cs │ ├── RemoveWikiPage.cs │ ├── SetAvailablePageLayouts.cs │ ├── SetDefaultPageLayout.cs │ └── SetWikiPageContent.cs ├── RecordsManagement │ ├── ClearListItemAsRecord.cs │ ├── DisableInPlaceRecordsManagementForSite.cs │ ├── EnableInPlaceRecordsManagementForSite.cs │ ├── GetInPlaceRecordsManagement.cs │ ├── GetListManualRecordDeclaration.cs │ ├── SetInPlaceRecordsManagement.cs │ ├── SetListItemAsRecord.cs │ ├── SetListRecordDeclaration.cs │ └── TestListItemIsRecord.cs ├── RecycleBin │ ├── ClearRecycleBinItem.cs │ ├── ClearTenantRecycleBinItem.cs │ ├── GetRecycleBinItem.cs │ ├── GetTenantRecycleBinItem.cs │ ├── MoveRecycleBinItem.cs │ ├── RestoreRecycleBinItem.cs │ └── RestoreTenantRecycleBinItem.cs ├── Resources │ └── pnp.ico ├── Samples │ ├── Connections.ps1 │ ├── GetContext.ps1 │ └── ProvisionSite.ps1 ├── Search │ ├── GetSearchConfiguration.cs │ ├── GetSearchCrawlLog.cs │ ├── GetSearchSettings.cs │ ├── GetSiteSearchQueryResults.cs │ ├── PnPResultTable.cs │ ├── PnPResultTableCollection.cs │ ├── RemoveSearchConfiguration.cs │ ├── SetSearchConfiguration.cs │ ├── SetSearchSettings.cs │ └── SubmitSearchQuery.cs ├── SharePointPnP.PowerShell.Commands.csproj.DotSettings ├── Site │ ├── AddRoleDefinition.cs │ ├── AddSiteCollectionAdmin.cs │ ├── AddTeamsTeam.cs │ ├── DisableSharingForNonOwnersOfSite.cs │ ├── EnableCommSite.cs │ ├── GetAuditing.cs │ ├── GetIsSiteAliasAvailable.cs │ ├── GetRoleDefinition.cs │ ├── GetSharingForNonOwnersOfSite.cs │ ├── GetSite.cs │ ├── GetSiteCollectionAdmin.cs │ ├── InstallSolution.cs │ ├── RemoveRoleDefinition.cs │ ├── RemoveSiteCollectionAdmin.cs │ ├── SetAppSideLoading.cs │ ├── SetAuditing.cs │ ├── SetSite.cs │ ├── SetTeamifyPromptHidden.cs │ ├── TestOffice365GroupAliasIsUsed.cs │ └── UninstallSolution.cs ├── SiteDesigns │ ├── AddSiteDesign.cs │ ├── AddSiteDesignTask.cs │ ├── AddSiteScript.cs │ ├── GetSiteDesign.cs │ ├── GetSiteDesignRights.cs │ ├── GetSiteDesignRun.cs │ ├── GetSiteDesignRunStatus.cs │ ├── GetSiteDesignTask.cs │ ├── GetSiteScript.cs │ ├── GetSiteScriptFromList.cs │ ├── GetSiteScriptFromWeb.cs │ ├── GrantSiteDesignRights.cs │ ├── InvokeSiteDesign.cs │ ├── RemoveSiteDesign.cs │ ├── RemoveSiteDesignTask.cs │ ├── RemoveSiteScript.cs │ ├── RevokeSiteDesignRights.cs │ ├── SetSiteDesign.cs │ └── SetSiteScript.cs ├── Taxonomy │ ├── ExportTaxonomy.cs │ ├── ExportTermGroupToXml.cs │ ├── GetSiteCollectionTermStore.cs │ ├── GetTaxonomyItem.cs │ ├── GetTaxonomySession.cs │ ├── GetTerm.cs │ ├── GetTermGroup.cs │ ├── GetTermSet.cs │ ├── ImportTaxonomy.cs │ ├── ImportTermGroupFromXml.cs │ ├── ImportTermSet.cs │ ├── NewTerm.cs │ ├── NewTermGroup.cs │ ├── NewTermLabel.cs │ ├── NewTermSet.cs │ ├── RemoveTaxonomyItem.cs │ ├── RemoveTermGroup.cs │ ├── SetTaxonomyFieldValue.cs │ ├── SetTermGroup.cs │ └── SetTermSet.cs ├── Teams │ ├── AddTeamsChannel.cs │ ├── AddTeamsTab.cs │ ├── AddTeamsUser.cs │ ├── GetTeamsApp.cs │ ├── GetTeamsChannel.cs │ ├── GetTeamsChannelMessage.cs │ ├── GetTeamsTab.cs │ ├── GetTeamsTeam.cs │ ├── GetTeamsUser.cs │ ├── NewTeamsApp.cs │ ├── NewTeamsTeam.cs │ ├── RemoveTeamsApp.cs │ ├── RemoveTeamsChannel.cs │ ├── RemoveTeamsTab.cs │ ├── RemoveTeamsTeam.cs │ ├── RemoveTeamsUser.cs │ ├── SetTeamsChannel .cs │ ├── SetTeamsTab.cs │ ├── SetTeamsTeam.cs │ ├── SetTeamsTeamArchivedState.cs │ ├── SetTeamsTeamPicture.cs │ ├── SubmitTeamsChannelMessage.cs │ └── UpdateTeamsApp.cs ├── UserProfiles │ ├── GetUPABulkImportStatus.cs │ ├── GetUserOneDriveQuota.cs │ ├── GetUserProfileProperty.cs │ ├── NewPersonalSite.cs │ ├── NewUPABulkImportJob.cs │ ├── ResetUserOneDriveQuotaToDefault.cs │ ├── SetUserOneDriveQuota.cs │ └── SetUserProfileProperty.cs ├── Utilities │ ├── AzureAuthHelper.cs │ ├── BrowserHelper.cs │ ├── CertificateCrypto.cs │ ├── CertificateHelper.cs │ ├── CredentialManager.cs │ ├── DynamicLinq.cs │ ├── FileUtilities.cs │ ├── IsolatedStorage.cs │ ├── JwtUtility.cs │ ├── LinqExtensions.cs │ ├── ListItemHelper.cs │ ├── OperatingSystem.cs │ ├── ProvisioningHelper.cs │ ├── REST │ │ ├── GraphCollection.cs │ │ ├── GraphHelper.cs │ │ ├── MetadataType.cs │ │ ├── RestHelper.cs │ │ └── RestRequest.cs │ ├── SendMail.cs │ ├── Shell.cs │ ├── StringExtensions.cs │ ├── TeamsUtility.cs │ └── UrlUtilities.cs ├── Web │ ├── AddIndexedProperty.cs │ ├── GetAvailableLanguage.cs │ ├── GetIndexedPropertyKeys.cs │ ├── GetPropertyBag.cs │ ├── GetRequestAccessEmails.cs │ ├── GetSubwebs.cs │ ├── GetWeb.cs │ ├── InvokeWebAction.cs │ ├── NewWeb.cs │ ├── RemovePropertyBagValue.cs │ ├── RemoveWeb.cs │ ├── RemovedIndexedProperty.cs │ ├── RequestReIndexWeb.cs │ ├── SetIndexedProperties.cs │ ├── SetPropertyBagValue.cs │ ├── SetRequestAccessEmails.cs │ ├── SetWeb.cs │ └── SetWebPermission.cs ├── WebParts │ ├── AddClientSideWebPart.cs │ ├── AddWebPartToWebPartPage.cs │ ├── AddWebPartToWikiPage.cs │ ├── GetWebPart.cs │ ├── GetWebPartProperty.cs │ ├── GetWebPartXml.cs │ ├── RemoveWebPart.cs │ └── SetWebPartProperty.cs ├── Webhooks │ ├── AddWebhookSubscription.cs │ ├── GetWebhookSubscriptions.cs │ ├── RemoveWebhookSubscription.cs │ └── SetWebhookSubscription.cs ├── Workflows │ ├── AddWorkflowDefinition.cs │ ├── AddWorkflowSubscription.cs │ ├── GetWorkflowDefinition.cs │ ├── GetWorkflowInstances.cs │ ├── GetWorkflowSubscription.cs │ ├── RemoveWorkflowDefinition.cs │ ├── RemoveWorkflowSubscription.cs │ ├── ResumeWorkflowInstance.cs │ ├── StartWorkflowInstance.cs │ └── StopWorkflowInstance.cs ├── app.config └── packages.config ├── Documentation └── readme.md ├── HelpAttributes ├── CmdletAdditionalParameterAttribute.cs ├── CmdletApiPermissionBase.cs ├── CmdletExampleAttribute.cs ├── CmdletHelpAttribute.cs ├── CmdletHelpCategory.cs ├── CmdletMicrosoftGraphApiPermission.cs ├── CmdletOfficeManagementApiPermission.cs ├── CmdletPipeLineAttribute.cs ├── CmdletRelatedLinkAttribute.cs ├── CmdletSupportedPlatform.cs ├── CmdletTokenTypeAttribute.cs ├── PnP.PowerShell.CmdletHelpAttributes.csproj ├── PnP.PowerShell.Core.Attributes.csproj ├── PnPParameterAttribute.cs └── Properties │ └── AssemblyInfo.cs ├── Install.ps1 ├── LICENSE ├── ModuleFilesGenerator ├── AdditionalParameterComparer.cs ├── CmdletsAnalyzer.cs ├── DiffMatchPatch.cs ├── GenerateModuleFiles.cs ├── HelpFileGenerator.cs ├── Model │ ├── CmdletInfo.cs │ ├── CmdletParameterInfo.cs │ └── CmdletSyntax.cs ├── ModuleManifestGenerator.cs ├── ParameterComparer.cs ├── PnP.PowerShell.Core.ModuleFilesGenerator.csproj ├── PnP.PowerShell.ModuleFilesGenerator.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json ├── app.config └── packages.config ├── PnP.PowerShell.Core.sln ├── PnP.PowerShell.sln ├── PnP_PowerShell_Roadmap.png ├── PostBuild.ps1 ├── README.md ├── Resources └── PnPTestList.xml.pnp ├── Samples ├── Audiences.Retrieve │ ├── GetWebPartsAudience.ps1 │ └── ReadMe.md ├── Connect.AzureAutomation │ ├── Deploy-AzureAppOnly.ps1 │ ├── Deploy-AzureAutomation.ps1 │ ├── Deploy-FullAutomation.ps1 │ ├── Readme.md │ └── test-connection-runbook.ps1 ├── Deactivate.Feature │ ├── Deactivate-MobileBrowerView.ps1 │ └── ReadMe.md ├── FindLinksInCanvas │ ├── OutputLinksFromPages.ps1 │ ├── input │ │ └── sites.csv │ └── readme.md ├── Graph.ConnectUsingAppPermissions │ ├── Consent.png │ ├── CreateApp-1.png │ ├── CreateApp-2.png │ └── ReadMe.md ├── Modules.Install │ ├── Install-PowerShellPackageMangement.ps1 │ ├── Install-SharePointPnPPowerShell.ps1 │ └── Install-SharePointPnPPowerShellHelperModule.ps1 ├── Provisioning.CreateSitesFromCsv │ ├── CreateSites.csv │ ├── CreateSites.ps1 │ └── README.md ├── Provisioning.CreateWithEngine │ ├── CustomizationXmlFragment.xml │ ├── DevRampUp-Demo-PnP-ProvisioningEngine.ps1 │ └── ReadMe.md ├── Provisioning.CreateWithPowerShell │ ├── DevRampUp-Demo-PnP-PSProvisioning.ps1 │ └── ReadMe.md ├── Provisioning.ModernListLibraryWebPartsFromXlsx │ ├── ModernPagesConfig.xlsx │ ├── ProvisionModernPagesAndWebParts.ps1 │ └── ReadMe.md ├── Provisioning.SelfHostedWithAzureWebJob │ ├── .gitignore │ ├── Engine │ │ ├── governance-daily.cmd │ │ ├── mrgovernance.ps1 │ │ ├── mrprovision.ps1 │ │ ├── nuget.config │ │ ├── nuget.exe │ │ ├── provisioning.cmd │ │ ├── resources │ │ │ ├── fail-mail-en.txt │ │ │ └── welcome-mail-en.txt │ │ ├── runjob.cmd │ │ └── shared.ps1 │ ├── Package-WebJobs.ps1 │ ├── ReadMe.md │ ├── Templates │ │ ├── Pictures │ │ │ └── pictures.xml │ │ ├── SiteDirectory │ │ │ ├── Assets │ │ │ │ └── sp_logo.png │ │ │ ├── Objects │ │ │ │ ├── ContentTypes.xml │ │ │ │ ├── Lists.xml │ │ │ │ └── SiteFields.xml │ │ │ ├── sitedirectory.en-US.resx │ │ │ └── sitedirectory.xml │ │ ├── TeamSite │ │ │ ├── SiteAssets │ │ │ │ └── sp_logo.png │ │ │ └── teamsite.xml │ │ ├── pictures.pnp │ │ └── teamsite.pnp │ └── azure-webjob.png ├── README.md ├── SharePoint.ConnectUsingAppPermissions │ ├── Fig-01-Azure-AD-Button.png │ ├── Fig-02-Azure-AD-Main-Page.png │ ├── Fig-03-Azure-AD-Add-Application-Step-01.png │ ├── Fig-04-Azure-AD-Add-Application-Step-02.png │ ├── Fig-06-Azure-AD-App-Config-02.png │ ├── Fig-07-Azure-AD-App-Config-03.png │ ├── Fig-08-Azure-AD-App-Config-04.png │ └── ReadMe.md └── Tenant.Migration │ ├── ApplySolution.ps1 │ ├── CollectSolution.ps1 │ ├── CopySolution.ps1 │ ├── Documentation │ ├── config.md │ ├── readme.md │ └── scripts.md │ ├── Modules │ ├── 2017 │ │ ├── February │ │ │ └── SharePointPnPPowerShellOnline │ │ │ │ └── Modules │ │ │ │ └── readme.md │ │ └── March │ │ │ ├── SharePointPnPPowerShell2013 │ │ │ └── Modules │ │ │ │ ├── SharePointPnPPowerShell2013 │ │ │ │ ├── Microsoft.Graph.Core.dll │ │ │ │ ├── Microsoft.Graph.dll │ │ │ │ ├── Microsoft.Identity.Client.Platform.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll │ │ │ │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ │ │ │ ├── Microsoft.Office.Client.Policy.dll │ │ │ │ ├── Microsoft.Office.Client.TranslationServices.dll │ │ │ │ ├── Microsoft.Online.SharePoint.Client.Tenant.dll │ │ │ │ ├── Microsoft.SharePoint.Client.DocumentManagement.dll │ │ │ │ ├── Microsoft.SharePoint.Client.Publishing.dll │ │ │ │ ├── Microsoft.SharePoint.Client.Runtime.dll │ │ │ │ ├── Microsoft.SharePoint.Client.Search.Applications.dll │ │ │ │ ├── Microsoft.SharePoint.Client.Search.dll │ │ │ │ ├── Microsoft.SharePoint.Client.Taxonomy.dll │ │ │ │ ├── Microsoft.SharePoint.Client.UserProfiles.dll │ │ │ │ ├── Microsoft.SharePoint.Client.WorkflowServices.dll │ │ │ │ ├── Microsoft.SharePoint.Client.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── OfficeDevPnP.Core.dll │ │ │ │ ├── SharePointPnP.PowerShell.2013.Commands.Format.ps1xml │ │ │ │ ├── SharePointPnP.PowerShell.2013.Commands.dll │ │ │ │ ├── SharePointPnP.PowerShell.2013.Commands.dll-help.xml │ │ │ │ ├── SharePointPnP.PowerShell.CmdletHelpAttributes.dll │ │ │ │ ├── SharePointPnPPowerShell2013.psd1 │ │ │ │ ├── SharePointPnPPowerShell2013.psm1 │ │ │ │ ├── pnp.ico │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ │ └── SharePointPnPPowerShellOnline │ │ │ └── Modules │ │ │ └── SharePointPnPPowerShellOnline │ │ │ ├── Microsoft.Data.Edm.dll │ │ │ ├── Microsoft.Data.OData.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.Extensions.WebEncoders.dll │ │ │ ├── Microsoft.Graph.Core.dll │ │ │ ├── Microsoft.Graph.dll │ │ │ ├── Microsoft.Identity.Client.Platform.dll │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll │ │ │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ │ │ ├── Microsoft.IdentityModel.dll │ │ │ ├── Microsoft.Office.Client.Policy.dll │ │ │ ├── Microsoft.Office.Client.TranslationServices.dll │ │ │ ├── Microsoft.Online.SharePoint.Client.Tenant.dll │ │ │ ├── Microsoft.SharePoint.Client.DocumentManagement.dll │ │ │ ├── Microsoft.SharePoint.Client.Publishing.dll │ │ │ ├── Microsoft.SharePoint.Client.Runtime.dll │ │ │ ├── Microsoft.SharePoint.Client.Search.Applications.dll │ │ │ ├── Microsoft.SharePoint.Client.Search.dll │ │ │ ├── Microsoft.SharePoint.Client.Taxonomy.dll │ │ │ ├── Microsoft.SharePoint.Client.UserProfiles.dll │ │ │ ├── Microsoft.SharePoint.Client.WorkflowServices.dll │ │ │ ├── Microsoft.SharePoint.Client.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── OfficeDevPnP.Core.dll │ │ │ ├── SharePointPnP.IdentityModel.Extensions.dll │ │ │ ├── SharePointPnP.PowerShell.CmdletHelpAttributes.dll │ │ │ ├── SharePointPnP.PowerShell.Online.Commands.Format.ps1xml │ │ │ ├── SharePointPnP.PowerShell.Online.Commands.dll │ │ │ ├── SharePointPnP.PowerShell.Online.Commands.dll-help.xml │ │ │ ├── SharePointPnPPowerShellOnline.psd1 │ │ │ ├── SharePointPnPPowerShellOnlineAliases.psm1 │ │ │ ├── System.Net.Http.Formatting.dll │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ ├── System.Web.Http.dll │ │ │ └── pnp.ico │ └── Triadmodules │ │ └── Modules │ │ ├── Triad.PowerShell.PnPTemplates │ │ ├── Triad.PowerShell.PnPTemplates.psd1 │ │ └── Triad.PowerShell.PnPTemplates.psm1 │ │ └── Triad.PowerShell.Utilities │ │ ├── Triad.PowerShell.Utilities.psd1 │ │ └── Triad.PowerShell.Utilities.psm1 │ ├── Templates │ └── readme.md │ ├── config.dtd │ ├── config.xml.sample │ ├── config.xsd │ └── readme.md ├── SharePointPnP.PowerShell.Core ├── Class1.cs └── SharePointPnP.PowerShell.Core.csproj ├── Tests ├── Admin │ ├── AddPnPHubSiteAssociationTests.cs │ ├── AddPnPOffice365GroupToSiteTests.cs │ ├── AddPnPOrgAssetsLibraryTests.cs │ ├── AddPnPOrgNewsSiteTests.cs │ ├── AddPnPSiteCollectionAppCatalogTests.cs │ ├── AddPnPTenantCdnOriginTests.cs │ ├── AddPnPTenantThemeTests.cs │ ├── ClearPnPTenantAppCatalogUrlTests.cs │ ├── GetPnPHideDefaultThemesTests.cs │ ├── GetPnPHomeSiteTests.cs │ ├── GetPnPHubSiteChildTests.cs │ ├── GetPnPHubSiteTests.cs │ ├── GetPnPKnowledgeHubSiteTests.cs │ ├── GetPnPOrgAssetsLibraryTests.cs │ ├── GetPnPOrgNewsSiteTests.cs │ ├── GetPnPStorageEntityTests.cs │ ├── GetPnPTenantAppCatalogUrlTests.cs │ ├── GetPnPTenantCdnEnabledTests.cs │ ├── GetPnPTenantCdnOriginTests.cs │ ├── GetPnPTenantCdnPoliciesTests.cs │ ├── GetPnPTenantIdTests.cs │ ├── GetPnPTenantSiteTests.cs │ ├── GetPnPTenantSyncClientRestrictionTests.cs │ ├── GetPnPTenantTests.cs │ ├── GetPnPTenantThemeTests.cs │ ├── GetPnPTimeZoneIdTests.cs │ ├── GrantPnPHubSiteRightsTests.cs │ ├── InvokePnPSPRestMethodTests.cs │ ├── NewPnPTenantSiteTests.cs │ ├── RegisterPnPHubSiteTests.cs │ ├── RemovePnPHomeSiteTests.cs │ ├── RemovePnPHubSiteAssociationTests.cs │ ├── RemovePnPKnowledgeHubSiteTests.cs │ ├── RemovePnPOrgAssetsLibraryTests.cs │ ├── RemovePnPOrgNewsSiteTests.cs │ ├── RemovePnPSiteCollectionAppCatalogTests.cs │ ├── RemovePnPStorageEntityTests.cs │ ├── RemovePnPTenantCdnOriginTests.cs │ ├── RemovePnPTenantSiteTests.cs │ ├── RemovePnPTenantThemeTests.cs │ ├── RevokePnPHubSiteRightsTests.cs │ ├── SetPnPHideDefaultThemesTests.cs │ ├── SetPnPHomeSiteTests.cs │ ├── SetPnPHubSiteTests.cs │ ├── SetPnPKnowledgeHubSiteTests.cs │ ├── SetPnPStorageEntityTests.cs │ ├── SetPnPTenantAppCatalogUrlTests.cs │ ├── SetPnPTenantCdnEnabledTests.cs │ ├── SetPnPTenantCdnPolicyTests.cs │ ├── SetPnPTenantSiteTests.cs │ ├── SetPnPTenantSyncClientRestrictionTests.cs │ ├── SetPnPTenantTests.cs │ └── UnregisterPnPHubSiteTests.cs ├── App.config.sample ├── Apps │ ├── AddPnPAppTests.cs │ ├── ApprovePnPTenantServicePrincipalPermissionRequestTests.cs │ ├── DenyPnPTenantServicePrincipalPermissionRequestTests.cs │ ├── DisablePnPTenantServicePrincipalTests.cs │ ├── EnablePnPTenantServicePrincipalTests.cs │ ├── GetPnPAppInstanceTests.cs │ ├── GetPnPAppTests.cs │ ├── GetPnPTenantServicePrincipalPermissionGrantsTests.cs │ ├── GetPnPTenantServicePrincipalPermissionRequestsTests.cs │ ├── GetPnPTenantServicePrincipalTests.cs │ ├── GrantPnPTenantServicePrincipalPermissionTests.cs │ ├── ImportPnPAppPackageTests.cs │ ├── InstallPnPAppTests.cs │ ├── PublishPnPAppTests.cs │ ├── RegisterPnPAppCatalogSiteTests.cs │ ├── RemovePnPAppTests.cs │ ├── RevokePnPTenantServicePrincipalPermissionTests.cs │ ├── SyncPnPAppToTeamsTests.cs │ ├── UninstallPnPAppInstanceTests.cs │ ├── UninstallPnPAppTests.cs │ ├── UnpublishPnPAppTests.cs │ └── UpdatePnPAppTests.cs ├── Base │ ├── AddPnPStoredCredentialTests.cs │ ├── ConnectPnPOnlineTests.cs │ ├── DisablePnPPowerShellTelemetryTests.cs │ ├── DisconnectPnPOnlineTests.cs │ ├── EnablePnPPowerShellTelemetryTests.cs │ ├── GetPnPAccessTokenTests.cs │ ├── GetPnPAppAuthAccessTokenTests.cs │ ├── GetPnPAuthenticationRealmTests.cs │ ├── GetPnPAzureCertificateTests.cs │ ├── GetPnPConnectionTests.cs │ ├── GetPnPContextTests.cs │ ├── GetPnPExceptionTests.cs │ ├── GetPnPGraphAccessTokenTests.cs │ ├── GetPnPHealthScoreTests.cs │ ├── GetPnPPowerShellTelemetryEnabledTests.cs │ ├── GetPnPPropertyTests.cs │ ├── GetPnPStoredCredentialTests.cs │ ├── InitializePnPPowerShellAuthenticationTests.cs │ ├── InvokePnPQueryTests.cs │ ├── NewPnPAzureCertificateTests.cs │ ├── RemovePnPStoredCredentialTests.cs │ ├── RequestPnPAccessTokenTests.cs │ ├── SetPnPContextTests.cs │ └── SetPnPTraceLogTests.cs ├── Branding │ ├── AddPnPApplicationCustomizerTests.cs │ ├── AddPnPCustomActionTests.cs │ ├── AddPnPJavaScriptBlockTests.cs │ ├── AddPnPJavaScriptLinkTests.cs │ ├── AddPnPNavigationNodeTests.cs │ ├── DisablePnPResponsiveUITests.cs │ ├── EnablePnPResponsiveUITests.cs │ ├── GetPnPApplicationCustomizerTests.cs │ ├── GetPnPCustomActionTests.cs │ ├── GetPnPFooterTests.cs │ ├── GetPnPHomePageTests.cs │ ├── GetPnPJavaScriptLinkTests.cs │ ├── GetPnPMasterPageTests.cs │ ├── GetPnPNavigationNodeTests.cs │ ├── GetPnPThemeTests.cs │ ├── RemovePnPApplicationCustomizerTests.cs │ ├── RemovePnPCustomActionTests.cs │ ├── RemovePnPJavaScriptLinkTests.cs │ ├── RemovePnPNavigationNodeTests.cs │ ├── SetPnPApplicationCustomizerTests.cs │ ├── SetPnPFooterTests.cs │ ├── SetPnPHomePageTests.cs │ ├── SetPnPMasterPageTests.cs │ ├── SetPnPMinimalDownloadStrategyTests.cs │ ├── SetPnPThemeTests.cs │ └── SetPnPWebThemeTests.cs ├── ClientSidePages │ ├── AddPnPClientSidePageSectionTests.cs │ ├── AddPnPClientSidePageTests.cs │ ├── AddPnPClientSideTextTests.cs │ ├── ConvertToPnPClientSidePageTests.cs │ ├── ExportPnPClientSidePageMappingTests.cs │ ├── GetPnPAvailableClientSideComponentsTests.cs │ ├── GetPnPClientSideComponentTests.cs │ ├── GetPnPClientSidePageTests.cs │ ├── MovePnPClientSideComponentTests.cs │ ├── RemovePnPClientSideComponentTests.cs │ ├── RemovePnPClientSidePageTests.cs │ ├── SavePnPClientSidePageConversionLogTests.cs │ ├── SetPnPClientSidePageTests.cs │ ├── SetPnPClientSideTextTests.cs │ └── SetPnPClientSideWebPartTests.cs ├── ContentTypes │ ├── AddPnPContentTypeTests.cs │ ├── AddPnPContentTypeToListTests.cs │ ├── AddPnPFieldToContentTypeTests.cs │ ├── GetPnPContentTypePublishingHubUrlTests.cs │ ├── GetPnPContentTypeTests.cs │ ├── RemovePnPContentTypeFromListTests.cs │ ├── RemovePnPContentTypeTests.cs │ ├── RemovePnPFieldFromContentTypeTests.cs │ └── SetPnPDefaultContentTypeToListTests.cs ├── Diagnostic │ ├── MeasurePnPListTests.cs │ ├── MeasurePnPResponseTimeTests.cs │ └── MeasurePnPWebTests.cs ├── DocumentSets │ ├── AddPnPContentTypeToDocumentSetTests.cs │ ├── AddPnPDocumentSetTests.cs │ ├── GetPnPDocumentSetTemplateTests.cs │ ├── RemovePnPContentTypeFromDocumentSetTests.cs │ └── SetPnPDocumentSetFieldTests.cs ├── Events │ ├── AddPnPEventReceiverTests.cs │ ├── GetPnPEventReceiverTests.cs │ └── RemovePnPEventReceiverTests.cs ├── Extensibility │ └── NewPnPExtensibilityHandlerObjectTests.cs ├── Features │ ├── DisablePnPFeatureTests.cs │ ├── EnablePnPFeatureTests.cs │ └── GetPnPFeatureTests.cs ├── Fields │ ├── AddPnPFieldFromXmlTests.cs │ ├── AddPnPFieldTests.cs │ ├── AddPnPTaxonomyFieldTests.cs │ ├── GetPnPFieldTests.cs │ ├── RemovePnPFieldTests.cs │ ├── SetPnPFieldTests.cs │ └── SetPnPViewTests.cs ├── Files │ ├── AddPnPFileTests.cs │ ├── AddPnPFolderTests.cs │ ├── CopyPnPFileTests.cs │ ├── FindPnPFileTests.cs │ ├── GetPnPFileTests.cs │ ├── GetPnPFolderItemTests.cs │ ├── GetPnPFolderTests.cs │ ├── MovePnPFileTests.cs │ ├── MovePnPFolderTests.cs │ ├── RemovePnPFileTests.cs │ ├── RemovePnPFolderTests.cs │ ├── RenamePnPFileTests.cs │ ├── RenamePnPFolderTests.cs │ ├── ResetPnPFileVersionTests.cs │ ├── ResolvePnPFolderTests.cs │ ├── SetPnPFileCheckedInTests.cs │ ├── SetPnPFileCheckedOutTests.cs │ └── SetPnPFolderPermissionTests.cs ├── Graph │ ├── AddPnPSiteClassificationTests.cs │ ├── DisablePnPSiteClassificationTests.cs │ ├── EnablePnPSiteClassificationTests.cs │ ├── GetPnPAADUserTests.cs │ ├── GetPnPDeletedUnifiedGroupTests.cs │ ├── GetPnPGraphSubscriptionTests.cs │ ├── GetPnPSiteClassificationTests.cs │ ├── GetPnPUnifiedGroupMembersTests.cs │ ├── GetPnPUnifiedGroupOwnersTests.cs │ ├── GetPnPUnifiedGroupTests.cs │ ├── NewPnPGraphSubscriptionTests.cs │ ├── NewPnPUnifiedGroupTests.cs │ ├── RemovePnPDeletedUnifiedGroupTests.cs │ ├── RemovePnPGraphSubscriptionTests.cs │ ├── RemovePnPSiteClassificationTests.cs │ ├── RemovePnPUnifiedGroupTests.cs │ ├── ResetPnPUnifiedGroupExpirationTests.cs │ ├── RestorePnPDeletedUnifiedGroupTests.cs │ ├── SetPnPGraphSubscriptionTests.cs │ ├── SetPnPUnifiedGroupTests.cs │ └── UpdatePnPSiteClassificationTests.cs ├── InformationManagement │ ├── GetPnPLabelTests.cs │ ├── GetPnPListInformationRightsManagementTests.cs │ ├── GetPnPSiteClosureTests.cs │ ├── GetPnPSitePolicyTests.cs │ ├── ResetPnPLabelTests.cs │ ├── SetPnPLabelTests.cs │ ├── SetPnPListInformationRightsManagementTests.cs │ ├── SetPnPSiteClosureTests.cs │ └── SetPnPSitePolicyTests.cs ├── Lists │ ├── AddPnPListItemTests.cs │ ├── AddPnPViewTests.cs │ ├── ClearPnPDefaultColumnValuesTests.cs │ ├── GetPnPDefaultColumnValuesTests.cs │ ├── GetPnPListItemTests.cs │ ├── GetPnPListTests.cs │ ├── GetPnPViewTests.cs │ ├── MovePnPListItemToRecycleBinTests.cs │ ├── NewPnPListTests.cs │ ├── RemovePnPListItemTests.cs │ ├── RemovePnPListTests.cs │ ├── RemovePnPViewTests.cs │ ├── RequestPnPReIndexListTests.cs │ ├── SetPnPDefaultColumnValuesTests.cs │ ├── SetPnPListItemPermissionTests.cs │ ├── SetPnPListItemTests.cs │ ├── SetPnPListPermissionTests.cs │ └── SetPnPListTests.cs ├── ManagementApi │ ├── GetPnPManagementApiAccessTokenTests.cs │ ├── GetPnPOffice365CurrentServiceStatusTests.cs │ ├── GetPnPOffice365HistoricalServiceStatusTests.cs │ ├── GetPnPOffice365ServiceMessageTests.cs │ ├── GetPnPOffice365ServicesTests.cs │ ├── GetPnPOfficeManagementApiAccessTokenTests.cs │ └── GetPnPUnifiedAuditLogTests.cs ├── OriginalTests │ ├── AdminTests.cs │ ├── BaseTests.cs │ ├── BrandingTests.cs │ ├── ClientSidePagesTests.cs │ ├── ContentTypeTests.cs │ ├── DiagnosticTests.cs │ ├── EventReceiverTests.cs │ ├── FeatureTests.cs │ ├── FieldsTests.cs │ ├── FilesTest.cs │ ├── GraphTests.cs │ ├── InvokeWebActionTest.cs │ ├── ListDataRowProvisioningTemplate.cs │ ├── ListsTests.cs │ ├── PrincipalsTests.cs │ ├── ProvisioningTemplateFromFolderTest.cs │ ├── ProvisioningTemplateTests.cs │ ├── WebPartsTests.cs │ ├── WebTests.cs │ └── WebhookSubscriptionsTests.cs ├── PSTestScope.cs ├── PnP.PowerShell.Tests.csproj ├── Principals │ ├── AddPnPAlertTests.cs │ ├── AddPnPUserToGroupTests.cs │ ├── GetPnPAlertTests.cs │ ├── GetPnPGroupMembersTests.cs │ ├── GetPnPGroupPermissionsTests.cs │ ├── GetPnPGroupTests.cs │ ├── GetPnPUserTests.cs │ ├── NewPnPGroupTests.cs │ ├── NewPnPUserTests.cs │ ├── RemovePnPAlertTests.cs │ ├── RemovePnPGroupTests.cs │ ├── RemovePnPUserFromGroupTests.cs │ ├── RemovePnPUserTests.cs │ ├── SetPnPGroupPermissionsTests.cs │ └── SetPnPGroupTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Provisioning.Site │ ├── AddPnPDataRowsToProvisioningTemplateTests.cs │ ├── AddPnPFileToProvisioningTemplateTests.cs │ ├── AddPnPListFoldersToProvisioningTemplateTests.cs │ ├── ApplyPnPProvisioningTemplateTests.cs │ ├── ExportPnPListToProvisioningTemplateTests.cs │ ├── GetPnPProvisioningTemplateTests.cs │ ├── GetPnPTenantTemplateTests.cs │ ├── RemovePnPFileFromProvisioningTemplateTests.cs │ └── SetPnPProvisioningTemplateMetadataTests.cs ├── Provisioning.Tenant │ ├── AddPnPProvisioningTemplateTests.cs │ ├── AddPnPTenantSequenceSiteTests.cs │ ├── AddPnPTenantSequenceSubSiteTests.cs │ ├── AddPnPTenantSequenceTests.cs │ ├── ApplyPnPTenantTemplateTests.cs │ ├── ExportPnPClientSidePageTests.cs │ ├── GetPnPTenantSequenceSiteTests.cs │ ├── GetPnPTenantSequenceTests.cs │ ├── NewPnPTenantSequenceCommunicationSiteTests.cs │ ├── NewPnPTenantSequenceTeamNoGroupSiteTests.cs │ ├── NewPnPTenantSequenceTeamNoGroupSubSiteTests.cs │ ├── NewPnPTenantSequenceTeamSiteTests.cs │ ├── NewPnPTenantSequenceTests.cs │ ├── NewPnPTenantTemplateTests.cs │ ├── ReadPnPTenantTemplateTests.cs │ ├── SavePnPTenantTemplateTests.cs │ └── TestPnPTenantTemplateTests.cs ├── Publishing │ ├── AddPnPHtmlPublishingPageLayoutTests.cs │ ├── AddPnPMasterPageTests.cs │ ├── AddPnPPublishingImageRenditionTests.cs │ ├── AddPnPPublishingPageLayoutTests.cs │ ├── AddPnPPublishingPageTests.cs │ ├── AddPnPWikiPageTests.cs │ ├── GetPnPPublishingImageRenditionTests.cs │ ├── GetPnPWikiPageContentTests.cs │ ├── RemovePnPPublishingImageRenditionTests.cs │ ├── RemovePnPWikiPageTests.cs │ ├── SetPnPAvailablePageLayoutsTests.cs │ ├── SetPnPDefaultPageLayoutTests.cs │ └── SetPnPWikiPageContentTests.cs ├── RecordsManagement │ ├── ClearPnPListItemAsRecordTests.cs │ ├── DisablePnPInPlaceRecordsManagementForSiteTests.cs │ ├── EnablePnPInPlaceRecordsManagementForSiteTests.cs │ ├── GetPnPInPlaceRecordsManagementTests.cs │ ├── GetPnPListRecordDeclarationTests.cs │ ├── SetPnPInPlaceRecordsManagementTests.cs │ ├── SetPnPListItemAsRecordTests.cs │ ├── SetPnPListRecordDeclarationTests.cs │ └── TestPnPListItemIsRecordTests.cs ├── RecycleBin │ ├── ClearPnPRecycleBinItemTests.cs │ ├── ClearPnPTenantRecycleBinItemTests.cs │ ├── GetPnPRecycleBinItemTests.cs │ ├── GetPnPTenantRecycleBinItemTests.cs │ ├── MovePnPRecycleBinItemTests.cs │ ├── RestorePnPRecycleBinItemTests.cs │ └── RestorePnPTenantRecycleBinItemTests.cs ├── Resources │ ├── PnPTestList.xml │ ├── template.xml │ └── webpart.xml ├── Search │ ├── GetPnPSearchConfigurationTests.cs │ ├── GetPnPSearchCrawlLogTests.cs │ ├── GetPnPSearchSettingsTests.cs │ ├── GetPnPSiteSearchQueryResultsTests.cs │ ├── RemovePnPSearchConfigurationTests.cs │ ├── SetPnPSearchConfigurationTests.cs │ ├── SetPnPSearchSettingsTests.cs │ └── SubmitPnPSearchQueryTests.cs ├── Site │ ├── AddPnPRoleDefinitionTests.cs │ ├── AddPnPSiteCollectionAdminTests.cs │ ├── AddPnPTeamsTeamTests.cs │ ├── DisablePnPSharingForNonOwnersOfSiteTests.cs │ ├── EnablePnPCommSiteTests.cs │ ├── GetPnPAuditingTests.cs │ ├── GetPnPIsSiteAliasAvailableTests.cs │ ├── GetPnPRoleDefinitionTests.cs │ ├── GetPnPSharingForNonOwnersOfSiteTests.cs │ ├── GetPnPSiteCollectionAdminTests.cs │ ├── GetPnPSiteTests.cs │ ├── InstallPnPSolutionTests.cs │ ├── NewPnPSiteTests.cs │ ├── RemovePnPRoleDefinitionTests.cs │ ├── RemovePnPSiteCollectionAdminTests.cs │ ├── SetPnPAppSideLoadingTests.cs │ ├── SetPnPAuditingTests.cs │ ├── SetPnPSiteTests.cs │ ├── TestPnPOffice365GroupAliasIsUsedTests.cs │ └── UninstallPnPSolutionTests.cs ├── SiteDesigns │ ├── AddPnPSiteDesignTaskTests.cs │ ├── AddPnPSiteDesignTests.cs │ ├── AddPnPSiteScriptTests.cs │ ├── GetPnPSiteDesignRightsTests.cs │ ├── GetPnPSiteDesignRunStatusTests.cs │ ├── GetPnPSiteDesignRunTests.cs │ ├── GetPnPSiteDesignTaskTests.cs │ ├── GetPnPSiteDesignTests.cs │ ├── GetPnPSiteScriptFromListTests.cs │ ├── GetPnPSiteScriptFromWebTests.cs │ ├── GetPnPSiteScriptTests.cs │ ├── GrantPnPSiteDesignRightsTests.cs │ ├── InvokePnPSiteDesignTests.cs │ ├── RemovePnPSiteDesignTaskTests.cs │ ├── RemovePnPSiteDesignTests.cs │ ├── RemovePnPSiteScriptTests.cs │ ├── RevokePnPSiteDesignRightsTests.cs │ ├── SetPnPSiteDesignTests.cs │ └── SetPnPSiteScriptTests.cs ├── Taxonomy │ ├── ExportPnPTaxonomyTests.cs │ ├── ExportPnPTermGroupToXmlTests.cs │ ├── GetPnPSiteCollectionTermStoreTests.cs │ ├── GetPnPTaxonomyItemTests.cs │ ├── GetPnPTaxonomySessionTests.cs │ ├── GetPnPTermGroupTests.cs │ ├── GetPnPTermSetTests.cs │ ├── GetPnPTermTests.cs │ ├── ImportPnPTaxonomyTests.cs │ ├── ImportPnPTermGroupFromXmlTests.cs │ ├── ImportPnPTermSetTests.cs │ ├── NewPnPTermGroupTests.cs │ ├── NewPnPTermLabelTests.cs │ ├── NewPnPTermSetTests.cs │ ├── NewPnPTermTests.cs │ ├── RemovePnPTaxonomyItemTests.cs │ ├── RemovePnPTermGroupTests.cs │ └── SetPnPTaxonomyFieldValueTests.cs ├── TestCommon.cs ├── UnitTests-Readme.md ├── UserProfiles │ ├── GetPnPUPABulkImportStatusTests.cs │ ├── GetPnPUserOneDriveQuotaTests.cs │ ├── GetPnPUserProfilePropertyTests.cs │ ├── NewPnPPersonalSiteTests.cs │ ├── NewPnPUPABulkImportJobTests.cs │ ├── ResetPnPUserOneDriveQuotaToDefaultTests.cs │ ├── SetPnPUserOneDriveQuotaTests.cs │ └── SetPnPUserProfilePropertyTests.cs ├── Utilities │ └── SendPnPMailTests.cs ├── WebParts │ ├── AddPnPClientSideWebPartTests.cs │ ├── AddPnPWebPartToWebPartPageTests.cs │ ├── AddPnPWebPartToWikiPageTests.cs │ ├── GetPnPWebPartPropertyTests.cs │ ├── GetPnPWebPartTests.cs │ ├── GetPnPWebPartXmlTests.cs │ ├── RemovePnPWebPartTests.cs │ └── SetPnPWebPartPropertyTests.cs ├── Webhooks │ ├── AddPnPWebhookSubscriptionTests.cs │ ├── GetPnPWebhookSubscriptionsTests.cs │ ├── RemovePnPWebhookSubscriptionTests.cs │ └── SetPnPWebhookSubscriptionTests.cs ├── Webs │ ├── AddPnPIndexedPropertyTests.cs │ ├── GetPnPAvailableLanguageTests.cs │ ├── GetPnPIndexedPropertyKeysTests.cs │ ├── GetPnPPropertyBagTests.cs │ ├── GetPnPRequestAccessEmailsTests.cs │ ├── GetPnPSubWebsTests.cs │ ├── GetPnPWebTemplatesTests.cs │ ├── GetPnPWebTests.cs │ ├── InvokePnPWebActionTests.cs │ ├── NewPnPWebTests.cs │ ├── RemovePnPIndexedPropertyTests.cs │ ├── RemovePnPPropertyBagValueTests.cs │ ├── RemovePnPWebTests.cs │ ├── RequestPnPReIndexWebTests.cs │ ├── SetPnPIndexedPropertiesTests.cs │ ├── SetPnPPropertyBagValueTests.cs │ ├── SetPnPRequestAccessEmailsTests.cs │ ├── SetPnPWebPermissionTests.cs │ └── SetPnPWebTests.cs └── Workflows │ ├── AddPnPWorkflowDefinitionTests.cs │ ├── AddPnPWorkflowSubscriptionTests.cs │ ├── GetPnPWorkflowDefinitionTests.cs │ ├── GetPnPWorkflowInstanceTests.cs │ ├── GetPnPWorkflowSubscriptionTests.cs │ ├── RemovePnPWorkflowDefinitionTests.cs │ ├── RemovePnPWorkflowSubscriptionTests.cs │ ├── ResumePnPWorkflowInstanceTests.cs │ ├── StartPnPWorkflowInstanceTests.cs │ └── StopPnPWorkflowInstanceTests.cs └── version.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/lockdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/.github/workflows/lockdown.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Binaries/readme.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Commands/Admin/AddHubSiteAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/AddHubSiteAssociation.cs -------------------------------------------------------------------------------- /Commands/Admin/AddMicrosoft365GroupToSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/AddMicrosoft365GroupToSite.cs -------------------------------------------------------------------------------- /Commands/Admin/AddOrgAssetsLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/AddOrgAssetsLibrary.cs -------------------------------------------------------------------------------- /Commands/Admin/AddOrgNewsSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/AddOrgNewsSite.cs -------------------------------------------------------------------------------- /Commands/Admin/AddSiteCollectionAppCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/AddSiteCollectionAppCatalog.cs -------------------------------------------------------------------------------- /Commands/Admin/AddTenantCdnOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/AddTenantCdnOrigin.cs -------------------------------------------------------------------------------- /Commands/Admin/AddTenantTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/AddTenantTheme.cs -------------------------------------------------------------------------------- /Commands/Admin/ClearTenantAppCatalogUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/ClearTenantAppCatalogUrl.cs -------------------------------------------------------------------------------- /Commands/Admin/GetHideDefaultThemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetHideDefaultThemes.cs -------------------------------------------------------------------------------- /Commands/Admin/GetHomeSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetHomeSite.cs -------------------------------------------------------------------------------- /Commands/Admin/GetHubSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetHubSite.cs -------------------------------------------------------------------------------- /Commands/Admin/GetHubSiteChild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetHubSiteChild.cs -------------------------------------------------------------------------------- /Commands/Admin/GetKnowledgeHubSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetKnowledgeHubSite.cs -------------------------------------------------------------------------------- /Commands/Admin/GetOrgAssetsLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetOrgAssetsLibrary.cs -------------------------------------------------------------------------------- /Commands/Admin/GetOrgNewsSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetOrgNewsSite.cs -------------------------------------------------------------------------------- /Commands/Admin/GetStorageEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetStorageEntity.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTenant.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTenantAppCatalogUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTenantAppCatalogUrl.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTenantCdnEnabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTenantCdnEnabled.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTenantCdnOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTenantCdnOrigin.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTenantCdnPolicies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTenantCdnPolicies.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTenantId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTenantId.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTenantSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTenantSite.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTenantTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTenantTheme.cs -------------------------------------------------------------------------------- /Commands/Admin/GetTimeZoneId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetTimeZoneId.cs -------------------------------------------------------------------------------- /Commands/Admin/GetWebTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GetWebTemplates.cs -------------------------------------------------------------------------------- /Commands/Admin/GrantHubSiteRights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/GrantHubSiteRights.cs -------------------------------------------------------------------------------- /Commands/Admin/NewSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/NewSite.cs -------------------------------------------------------------------------------- /Commands/Admin/NewTenantSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/NewTenantSite.cs -------------------------------------------------------------------------------- /Commands/Admin/RegisterAppCatalogSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RegisterAppCatalogSite.cs -------------------------------------------------------------------------------- /Commands/Admin/RegisterHubSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RegisterHubSite.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveHomeSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveHomeSite.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveHubSiteAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveHubSiteAssociation.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveKnowledgeHubSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveKnowledgeHubSite.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveOrgAssetsLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveOrgAssetsLibrary.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveOrgNewsSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveOrgNewsSite.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveStorageEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveStorageEntity.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveTenantCdnOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveTenantCdnOrigin.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveTenantSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveTenantSite.cs -------------------------------------------------------------------------------- /Commands/Admin/RemoveTenantTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RemoveTenantTheme.cs -------------------------------------------------------------------------------- /Commands/Admin/RevokeHubSiteRights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/RevokeHubSiteRights.cs -------------------------------------------------------------------------------- /Commands/Admin/SetHideDefaultThemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetHideDefaultThemes.cs -------------------------------------------------------------------------------- /Commands/Admin/SetHomeSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetHomeSite.cs -------------------------------------------------------------------------------- /Commands/Admin/SetHubSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetHubSite.cs -------------------------------------------------------------------------------- /Commands/Admin/SetKnowledgeHubSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetKnowledgeHubSite.cs -------------------------------------------------------------------------------- /Commands/Admin/SetStorageEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetStorageEntity.cs -------------------------------------------------------------------------------- /Commands/Admin/SetTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetTenant.cs -------------------------------------------------------------------------------- /Commands/Admin/SetTenantAppCatalogUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetTenantAppCatalogUrl.cs -------------------------------------------------------------------------------- /Commands/Admin/SetTenantCdnEnabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetTenantCdnEnabled.cs -------------------------------------------------------------------------------- /Commands/Admin/SetTenantCdnPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetTenantCdnPolicy.cs -------------------------------------------------------------------------------- /Commands/Admin/SetTenantSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/SetTenantSite.cs -------------------------------------------------------------------------------- /Commands/Admin/UnregisterHubSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Admin/UnregisterHubSite.cs -------------------------------------------------------------------------------- /Commands/Apps/AddApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/AddApp.cs -------------------------------------------------------------------------------- /Commands/Apps/AddApplicationCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/AddApplicationCustomizer.cs -------------------------------------------------------------------------------- /Commands/Apps/DisableTenantServicePrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/DisableTenantServicePrincipal.cs -------------------------------------------------------------------------------- /Commands/Apps/EnableTenantServicePrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/EnableTenantServicePrincipal.cs -------------------------------------------------------------------------------- /Commands/Apps/GetApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/GetApp.cs -------------------------------------------------------------------------------- /Commands/Apps/GetAppInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/GetAppInstance.cs -------------------------------------------------------------------------------- /Commands/Apps/GetApplicationCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/GetApplicationCustomizer.cs -------------------------------------------------------------------------------- /Commands/Apps/GetTenantServicePrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/GetTenantServicePrincipal.cs -------------------------------------------------------------------------------- /Commands/Apps/ImportAppPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/ImportAppPackage.cs -------------------------------------------------------------------------------- /Commands/Apps/InstallApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/InstallApp.cs -------------------------------------------------------------------------------- /Commands/Apps/PublishApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/PublishApp.cs -------------------------------------------------------------------------------- /Commands/Apps/RemoveApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/RemoveApp.cs -------------------------------------------------------------------------------- /Commands/Apps/RemoveApplicationCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/RemoveApplicationCustomizer.cs -------------------------------------------------------------------------------- /Commands/Apps/SetApplicationCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/SetApplicationCustomizer.cs -------------------------------------------------------------------------------- /Commands/Apps/SyncAppToTeams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/SyncAppToTeams.cs -------------------------------------------------------------------------------- /Commands/Apps/UninstallApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/UninstallApp.cs -------------------------------------------------------------------------------- /Commands/Apps/UninstallAppInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/UninstallAppInstance.cs -------------------------------------------------------------------------------- /Commands/Apps/UnpublishApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/UnpublishApp.cs -------------------------------------------------------------------------------- /Commands/Apps/UpdateApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Apps/UpdateApp.cs -------------------------------------------------------------------------------- /Commands/Base/AddStoredCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/AddStoredCredential.cs -------------------------------------------------------------------------------- /Commands/Base/BasePSCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/BasePSCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/ConnectOnline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/ConnectOnline.cs -------------------------------------------------------------------------------- /Commands/Base/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/Constants.cs -------------------------------------------------------------------------------- /Commands/Base/DisablePowerShellTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/DisablePowerShellTelemetry.cs -------------------------------------------------------------------------------- /Commands/Base/DisconnectOnline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/DisconnectOnline.cs -------------------------------------------------------------------------------- /Commands/Base/EnablePowerShellTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/EnablePowerShellTelemetry.cs -------------------------------------------------------------------------------- /Commands/Base/GetAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetAccessToken.cs -------------------------------------------------------------------------------- /Commands/Base/GetAppAuthAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetAppAuthAccessToken.cs -------------------------------------------------------------------------------- /Commands/Base/GetAuthenticationRealm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetAuthenticationRealm.cs -------------------------------------------------------------------------------- /Commands/Base/GetAzureCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetAzureCertificate.cs -------------------------------------------------------------------------------- /Commands/Base/GetConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetConnection.cs -------------------------------------------------------------------------------- /Commands/Base/GetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetContext.cs -------------------------------------------------------------------------------- /Commands/Base/GetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetException.cs -------------------------------------------------------------------------------- /Commands/Base/GetHealthScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetHealthScore.cs -------------------------------------------------------------------------------- /Commands/Base/GetPowerShellTelemetryEnabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetPowerShellTelemetryEnabled.cs -------------------------------------------------------------------------------- /Commands/Base/GetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetProperty.cs -------------------------------------------------------------------------------- /Commands/Base/GetStoredCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/GetStoredCredential.cs -------------------------------------------------------------------------------- /Commands/Base/InvokeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/InvokeQuery.cs -------------------------------------------------------------------------------- /Commands/Base/InvokeSPRestMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/InvokeSPRestMethod.cs -------------------------------------------------------------------------------- /Commands/Base/NewAzureCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/NewAzureCertificate.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/AlertPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/AlertPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/AppMetadataPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/AppMetadataPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/AppPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/AppPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/ContentTypePipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/ContentTypePipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/CredentialPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/CredentialPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/DocumentSetPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/DocumentSetPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/FeaturePipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/FeaturePipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/FieldPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/FieldPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/FileVersionPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/FileVersionPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/FolderPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/FolderPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/GroupPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/GroupPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/GuidPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/GuidPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/HubSitePipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/HubSitePipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/ListItemPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/ListItemPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/ListPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/ListPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/PagePipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/PagePipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/SitePipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/SitePipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/TaxonomyItemPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/TaxonomyItemPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/TeamsAppPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/TeamsAppPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/TeamsChannelPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/TeamsChannelPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/TeamsTabPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/TeamsTabPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/TeamsTeamPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/TeamsTeamPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/TermGroupPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/TermGroupPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/ThemePalettePipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/ThemePalettePipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/ThemePipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/ThemePipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/UserPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/UserPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/ViewPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/ViewPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/WebPartPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/WebPartPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PipeBinds/WebPipeBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PipeBinds/WebPipeBind.cs -------------------------------------------------------------------------------- /Commands/Base/PnPAdminCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPAdminCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/PnPAzureADConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPAzureADConnection.cs -------------------------------------------------------------------------------- /Commands/Base/PnPConnectedCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPConnectedCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/PnPConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPConnection.cs -------------------------------------------------------------------------------- /Commands/Base/PnPConnectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPConnectionHelper.cs -------------------------------------------------------------------------------- /Commands/Base/PnPGraphCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPGraphCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/PnPOfficeManagementApiCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPOfficeManagementApiCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/PnPRetrievalsCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPRetrievalsCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/PnPSharePointCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPSharePointCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/PnPWebCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPWebCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/PnPWebRetrievalsCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PnPWebRetrievalsCmdlet.cs -------------------------------------------------------------------------------- /Commands/Base/PropertyLoadingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/PropertyLoadingAttribute.cs -------------------------------------------------------------------------------- /Commands/Base/RemoveStoredCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/RemoveStoredCredential.cs -------------------------------------------------------------------------------- /Commands/Base/RequestAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/RequestAccessToken.cs -------------------------------------------------------------------------------- /Commands/Base/SetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/SetContext.cs -------------------------------------------------------------------------------- /Commands/Base/SetTraceLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/SetTraceLog.cs -------------------------------------------------------------------------------- /Commands/Base/TokenHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Base/TokenHandling.cs -------------------------------------------------------------------------------- /Commands/Branding/AddCustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/AddCustomAction.cs -------------------------------------------------------------------------------- /Commands/Branding/AddJavaScriptBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/AddJavaScriptBlock.cs -------------------------------------------------------------------------------- /Commands/Branding/AddJavaScriptLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/AddJavaScriptLink.cs -------------------------------------------------------------------------------- /Commands/Branding/DisableResponsiveUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/DisableResponsiveUI.cs -------------------------------------------------------------------------------- /Commands/Branding/EnableResponsiveUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/EnableResponsiveUI.cs -------------------------------------------------------------------------------- /Commands/Branding/GetCustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/GetCustomAction.cs -------------------------------------------------------------------------------- /Commands/Branding/GetFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/GetFooter.cs -------------------------------------------------------------------------------- /Commands/Branding/GetHomepage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/GetHomepage.cs -------------------------------------------------------------------------------- /Commands/Branding/GetJavaScriptLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/GetJavaScriptLink.cs -------------------------------------------------------------------------------- /Commands/Branding/GetMasterPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/GetMasterPage.cs -------------------------------------------------------------------------------- /Commands/Branding/GetTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/GetTheme.cs -------------------------------------------------------------------------------- /Commands/Branding/RemoveCustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/RemoveCustomAction.cs -------------------------------------------------------------------------------- /Commands/Branding/RemoveJavaScriptLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/RemoveJavaScriptLink.cs -------------------------------------------------------------------------------- /Commands/Branding/SetFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/SetFooter.cs -------------------------------------------------------------------------------- /Commands/Branding/SetHomepage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/SetHomepage.cs -------------------------------------------------------------------------------- /Commands/Branding/SetMasterPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/SetMasterPage.cs -------------------------------------------------------------------------------- /Commands/Branding/SetMinimalDownloadStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/SetMinimalDownloadStrategy.cs -------------------------------------------------------------------------------- /Commands/Branding/SetTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/SetTheme.cs -------------------------------------------------------------------------------- /Commands/Branding/SetWebTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Branding/SetWebTheme.cs -------------------------------------------------------------------------------- /Commands/ClientSidePages/AddClientSidePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ClientSidePages/AddClientSidePage.cs -------------------------------------------------------------------------------- /Commands/ClientSidePages/AddClientSideText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ClientSidePages/AddClientSideText.cs -------------------------------------------------------------------------------- /Commands/ClientSidePages/GetClientSidePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ClientSidePages/GetClientSidePage.cs -------------------------------------------------------------------------------- /Commands/ClientSidePages/SetClientSidePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ClientSidePages/SetClientSidePage.cs -------------------------------------------------------------------------------- /Commands/ClientSidePages/SetClientSideText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ClientSidePages/SetClientSideText.cs -------------------------------------------------------------------------------- /Commands/ContentTypes/AddContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ContentTypes/AddContentType.cs -------------------------------------------------------------------------------- /Commands/ContentTypes/AddContentTypeToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ContentTypes/AddContentTypeToList.cs -------------------------------------------------------------------------------- /Commands/ContentTypes/AddFieldToContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ContentTypes/AddFieldToContentType.cs -------------------------------------------------------------------------------- /Commands/ContentTypes/GetContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ContentTypes/GetContentType.cs -------------------------------------------------------------------------------- /Commands/ContentTypes/RemoveContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ContentTypes/RemoveContentType.cs -------------------------------------------------------------------------------- /Commands/Diagnostic/FolderStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Diagnostic/FolderStatistics.cs -------------------------------------------------------------------------------- /Commands/Diagnostic/ListStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Diagnostic/ListStatistics.cs -------------------------------------------------------------------------------- /Commands/Diagnostic/MeasurePnPList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Diagnostic/MeasurePnPList.cs -------------------------------------------------------------------------------- /Commands/Diagnostic/MeasurePnPWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Diagnostic/MeasurePnPWeb.cs -------------------------------------------------------------------------------- /Commands/Diagnostic/MeasureResponseTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Diagnostic/MeasureResponseTime.cs -------------------------------------------------------------------------------- /Commands/Diagnostic/MeasureResponseTimeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Diagnostic/MeasureResponseTimeMode.cs -------------------------------------------------------------------------------- /Commands/Diagnostic/ResponseTimeStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Diagnostic/ResponseTimeStatistics.cs -------------------------------------------------------------------------------- /Commands/Diagnostic/WebStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Diagnostic/WebStatistics.cs -------------------------------------------------------------------------------- /Commands/DocumentSets/AddDocumentSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/DocumentSets/AddDocumentSet.cs -------------------------------------------------------------------------------- /Commands/DocumentSets/GetDocumentSetTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/DocumentSets/GetDocumentSetTemplate.cs -------------------------------------------------------------------------------- /Commands/DocumentSets/SetDocumentSetField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/DocumentSets/SetDocumentSetField.cs -------------------------------------------------------------------------------- /Commands/Enums/AlertFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/AlertFilter.cs -------------------------------------------------------------------------------- /Commands/Enums/AssociatedGroupType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/AssociatedGroupType.cs -------------------------------------------------------------------------------- /Commands/Enums/AuditContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/AuditContentType.cs -------------------------------------------------------------------------------- /Commands/Enums/CdnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/CdnType.cs -------------------------------------------------------------------------------- /Commands/Enums/ClientSidePagePromoteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/ClientSidePagePromoteType.cs -------------------------------------------------------------------------------- /Commands/Enums/ConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/ConnectionType.cs -------------------------------------------------------------------------------- /Commands/Enums/CredentialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/CredentialType.cs -------------------------------------------------------------------------------- /Commands/Enums/CustomActionScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/CustomActionScope.cs -------------------------------------------------------------------------------- /Commands/Enums/DocumentSetFieldScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/DocumentSetFieldScope.cs -------------------------------------------------------------------------------- /Commands/Enums/Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/Encoding.cs -------------------------------------------------------------------------------- /Commands/Enums/FeatureScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/FeatureScope.cs -------------------------------------------------------------------------------- /Commands/Enums/GrooveBlockOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/GrooveBlockOption.cs -------------------------------------------------------------------------------- /Commands/Enums/HttpRequestMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/HttpRequestMethod.cs -------------------------------------------------------------------------------- /Commands/Enums/InitializationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/InitializationType.cs -------------------------------------------------------------------------------- /Commands/Enums/ListItemUpdateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/ListItemUpdateType.cs -------------------------------------------------------------------------------- /Commands/Enums/NavigationNodeTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/NavigationNodeTypeEnum.cs -------------------------------------------------------------------------------- /Commands/Enums/Office365Workload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/Office365Workload.cs -------------------------------------------------------------------------------- /Commands/Enums/SearchBoxInNavBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/SearchBoxInNavBar.cs -------------------------------------------------------------------------------- /Commands/Enums/SearchConfigurationScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/SearchConfigurationScope.cs -------------------------------------------------------------------------------- /Commands/Enums/SearchSettingsScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/SearchSettingsScope.cs -------------------------------------------------------------------------------- /Commands/Enums/SiteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/SiteType.cs -------------------------------------------------------------------------------- /Commands/Enums/SiteWebTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/SiteWebTemplate.cs -------------------------------------------------------------------------------- /Commands/Enums/StorageEntityScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/StorageEntityScope.cs -------------------------------------------------------------------------------- /Commands/Enums/TargetScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/TargetScope.cs -------------------------------------------------------------------------------- /Commands/Enums/TokenAudience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Enums/TokenAudience.cs -------------------------------------------------------------------------------- /Commands/Events/AddEventReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Events/AddEventReceiver.cs -------------------------------------------------------------------------------- /Commands/Events/GetEventReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Events/GetEventReceiver.cs -------------------------------------------------------------------------------- /Commands/Events/RemoveEventReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Events/RemoveEventReceiver.cs -------------------------------------------------------------------------------- /Commands/Extensions/ClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Extensions/ClientExtensions.cs -------------------------------------------------------------------------------- /Commands/Extensions/ClientObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Extensions/ClientObjectExtensions.cs -------------------------------------------------------------------------------- /Commands/Extensions/WebExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Extensions/WebExtensions.cs -------------------------------------------------------------------------------- /Commands/Features/DisableFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Features/DisableFeature.cs -------------------------------------------------------------------------------- /Commands/Features/EnableFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Features/EnableFeature.cs -------------------------------------------------------------------------------- /Commands/Features/GetFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Features/GetFeature.cs -------------------------------------------------------------------------------- /Commands/Fields/AddField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Fields/AddField.cs -------------------------------------------------------------------------------- /Commands/Fields/AddFieldFromXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Fields/AddFieldFromXml.cs -------------------------------------------------------------------------------- /Commands/Fields/AddTaxonomyField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Fields/AddTaxonomyField.cs -------------------------------------------------------------------------------- /Commands/Fields/GetField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Fields/GetField.cs -------------------------------------------------------------------------------- /Commands/Fields/RemoveField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Fields/RemoveField.cs -------------------------------------------------------------------------------- /Commands/Fields/SetField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Fields/SetField.cs -------------------------------------------------------------------------------- /Commands/Files/AddFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/AddFile.cs -------------------------------------------------------------------------------- /Commands/Files/AddFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/AddFolder.cs -------------------------------------------------------------------------------- /Commands/Files/CopyFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/CopyFile.cs -------------------------------------------------------------------------------- /Commands/Files/FindFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/FindFile.cs -------------------------------------------------------------------------------- /Commands/Files/GetFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/GetFile.cs -------------------------------------------------------------------------------- /Commands/Files/GetFileVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/GetFileVersion.cs -------------------------------------------------------------------------------- /Commands/Files/GetFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/GetFolder.cs -------------------------------------------------------------------------------- /Commands/Files/GetFolderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/GetFolderItem.cs -------------------------------------------------------------------------------- /Commands/Files/MoveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/MoveFile.cs -------------------------------------------------------------------------------- /Commands/Files/MoveFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/MoveFolder.cs -------------------------------------------------------------------------------- /Commands/Files/RemoveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/RemoveFile.cs -------------------------------------------------------------------------------- /Commands/Files/RemoveFileVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/RemoveFileVersion.cs -------------------------------------------------------------------------------- /Commands/Files/RemoveFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/RemoveFolder.cs -------------------------------------------------------------------------------- /Commands/Files/RenameFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/RenameFile.cs -------------------------------------------------------------------------------- /Commands/Files/RenameFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/RenameFolder.cs -------------------------------------------------------------------------------- /Commands/Files/ResetFileVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/ResetFileVersion.cs -------------------------------------------------------------------------------- /Commands/Files/ResolveFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/ResolveFolder.cs -------------------------------------------------------------------------------- /Commands/Files/RestoreFileVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/RestoreFileVersion.cs -------------------------------------------------------------------------------- /Commands/Files/SetFileCheckedIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/SetFileCheckedIn.cs -------------------------------------------------------------------------------- /Commands/Files/SetFileCheckedOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/SetFileCheckedOut.cs -------------------------------------------------------------------------------- /Commands/Files/SetFolderPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Files/SetFolderPermission.cs -------------------------------------------------------------------------------- /Commands/Graph/AddMicrosoft365GroupMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/AddMicrosoft365GroupMember.cs -------------------------------------------------------------------------------- /Commands/Graph/AddMicrosoft365GroupOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/AddMicrosoft365GroupOwner.cs -------------------------------------------------------------------------------- /Commands/Graph/AddSiteClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/AddSiteClassification.cs -------------------------------------------------------------------------------- /Commands/Graph/ClearMicrosoft365GroupMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/ClearMicrosoft365GroupMember.cs -------------------------------------------------------------------------------- /Commands/Graph/ClearMicrosoft365GroupOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/ClearMicrosoft365GroupOwner.cs -------------------------------------------------------------------------------- /Commands/Graph/DisableSiteClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/DisableSiteClassification.cs -------------------------------------------------------------------------------- /Commands/Graph/EnableSiteClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/EnableSiteClassification.cs -------------------------------------------------------------------------------- /Commands/Graph/GetAADUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/GetAADUser.cs -------------------------------------------------------------------------------- /Commands/Graph/GetDeletedMicrosoft365Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/GetDeletedMicrosoft365Group.cs -------------------------------------------------------------------------------- /Commands/Graph/GetGraphAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/GetGraphAccessToken.cs -------------------------------------------------------------------------------- /Commands/Graph/GetGraphSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/GetGraphSubscription.cs -------------------------------------------------------------------------------- /Commands/Graph/GetMicrosoft365Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/GetMicrosoft365Group.cs -------------------------------------------------------------------------------- /Commands/Graph/GetMicrosoft365GroupMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/GetMicrosoft365GroupMembers.cs -------------------------------------------------------------------------------- /Commands/Graph/GetMicrosoft365GroupOwners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/GetMicrosoft365GroupOwners.cs -------------------------------------------------------------------------------- /Commands/Graph/GetSiteClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/GetSiteClassification.cs -------------------------------------------------------------------------------- /Commands/Graph/NewGraphSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/NewGraphSubscription.cs -------------------------------------------------------------------------------- /Commands/Graph/NewMicrosoft365Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/NewMicrosoft365Group.cs -------------------------------------------------------------------------------- /Commands/Graph/RemoveGraphSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/RemoveGraphSubscription.cs -------------------------------------------------------------------------------- /Commands/Graph/RemoveMicrosoft365Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/RemoveMicrosoft365Group.cs -------------------------------------------------------------------------------- /Commands/Graph/RemoveMicrosoft365GroupMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/RemoveMicrosoft365GroupMember.cs -------------------------------------------------------------------------------- /Commands/Graph/RemoveMicrosoft365GroupOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/RemoveMicrosoft365GroupOwner.cs -------------------------------------------------------------------------------- /Commands/Graph/RemoveSiteClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/RemoveSiteClassification.cs -------------------------------------------------------------------------------- /Commands/Graph/SetGraphSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/SetGraphSubscription.cs -------------------------------------------------------------------------------- /Commands/Graph/SetMicrosoft365Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/SetMicrosoft365Group.cs -------------------------------------------------------------------------------- /Commands/Graph/UpdateSiteClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Graph/UpdateSiteClassification.cs -------------------------------------------------------------------------------- /Commands/InformationManagement/ClosureState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/InformationManagement/ClosureState.cs -------------------------------------------------------------------------------- /Commands/InformationManagement/GetLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/InformationManagement/GetLabel.cs -------------------------------------------------------------------------------- /Commands/InformationManagement/GetSitePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/InformationManagement/GetSitePolicy.cs -------------------------------------------------------------------------------- /Commands/InformationManagement/ResetLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/InformationManagement/ResetLabel.cs -------------------------------------------------------------------------------- /Commands/InformationManagement/SetLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/InformationManagement/SetLabel.cs -------------------------------------------------------------------------------- /Commands/InformationManagement/SetSitePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/InformationManagement/SetSitePolicy.cs -------------------------------------------------------------------------------- /Commands/InvokeAction/InvokeWebAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/InvokeAction/InvokeWebAction.cs -------------------------------------------------------------------------------- /Commands/InvokeAction/InvokeWebActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/InvokeAction/InvokeWebActionResult.cs -------------------------------------------------------------------------------- /Commands/Lists/AddListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/AddListItem.cs -------------------------------------------------------------------------------- /Commands/Lists/AddView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/AddView.cs -------------------------------------------------------------------------------- /Commands/Lists/ClearDefaultColumnValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/ClearDefaultColumnValues.cs -------------------------------------------------------------------------------- /Commands/Lists/GetDefaultColumnValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/GetDefaultColumnValues.cs -------------------------------------------------------------------------------- /Commands/Lists/GetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/GetList.cs -------------------------------------------------------------------------------- /Commands/Lists/GetListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/GetListItem.cs -------------------------------------------------------------------------------- /Commands/Lists/GetView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/GetView.cs -------------------------------------------------------------------------------- /Commands/Lists/MoveListItemToRecycleBin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/MoveListItemToRecycleBin.cs -------------------------------------------------------------------------------- /Commands/Lists/NewList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/NewList.cs -------------------------------------------------------------------------------- /Commands/Lists/RemoveList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/RemoveList.cs -------------------------------------------------------------------------------- /Commands/Lists/RemoveListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/RemoveListItem.cs -------------------------------------------------------------------------------- /Commands/Lists/RemoveView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/RemoveView.cs -------------------------------------------------------------------------------- /Commands/Lists/RequestReIndexList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/RequestReIndexList.cs -------------------------------------------------------------------------------- /Commands/Lists/SetDefaultColumnValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/SetDefaultColumnValues.cs -------------------------------------------------------------------------------- /Commands/Lists/SetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/SetList.cs -------------------------------------------------------------------------------- /Commands/Lists/SetListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/SetListItem.cs -------------------------------------------------------------------------------- /Commands/Lists/SetListItemPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/SetListItemPermission.cs -------------------------------------------------------------------------------- /Commands/Lists/SetListPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/SetListPermission.cs -------------------------------------------------------------------------------- /Commands/Lists/SetView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Lists/SetView.cs -------------------------------------------------------------------------------- /Commands/ManagementApi/GetUnifiedAuditLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/ManagementApi/GetUnifiedAuditLog.cs -------------------------------------------------------------------------------- /Commands/Model/AzureApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/AzureApp.cs -------------------------------------------------------------------------------- /Commands/Model/ConnectionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/ConnectionMethod.cs -------------------------------------------------------------------------------- /Commands/Model/GenericToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/GenericToken.cs -------------------------------------------------------------------------------- /Commands/Model/GraphToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/GraphToken.cs -------------------------------------------------------------------------------- /Commands/Model/ManagementApiFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/ManagementApiFeature.cs -------------------------------------------------------------------------------- /Commands/Model/ManagementApiFeatureStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/ManagementApiFeatureStatus.cs -------------------------------------------------------------------------------- /Commands/Model/ManagementApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/ManagementApiService.cs -------------------------------------------------------------------------------- /Commands/Model/ManagementApiServiceStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/ManagementApiServiceStatus.cs -------------------------------------------------------------------------------- /Commands/Model/ManagementApiSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/ManagementApiSubscription.cs -------------------------------------------------------------------------------- /Commands/Model/OfficeManagementApiToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/OfficeManagementApiToken.cs -------------------------------------------------------------------------------- /Commands/Model/PnPException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/PnPException.cs -------------------------------------------------------------------------------- /Commands/Model/ProvisionedSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/ProvisionedSite.cs -------------------------------------------------------------------------------- /Commands/Model/SPOPublicCdnOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/SPOPublicCdnOrigin.cs -------------------------------------------------------------------------------- /Commands/Model/SPOTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/SPOTenant.cs -------------------------------------------------------------------------------- /Commands/Model/SPOTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/SPOTheme.cs -------------------------------------------------------------------------------- /Commands/Model/SharePointToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/SharePointToken.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/GraphException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/GraphException.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/Group.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/Team.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamApp.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamAppInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamAppInstance.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamChannel.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamChannelMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamChannelMember.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamChannelMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamChannelMessage.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamChannelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamChannelType.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamFunSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamFunSettings.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamGuestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamGuestSettings.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamMemberSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamMemberSettings.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamSecurity.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamSecurityUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamSecurityUser.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamSettings.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamTab.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamTabConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamTabConfiguration.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamTabResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamTabResource.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/TeamTabType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/TeamTabType.cs -------------------------------------------------------------------------------- /Commands/Model/Teams/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Model/Teams/User.cs -------------------------------------------------------------------------------- /Commands/Navigation/AddNavigationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Navigation/AddNavigationNode.cs -------------------------------------------------------------------------------- /Commands/Navigation/GetNavigationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Navigation/GetNavigationNode.cs -------------------------------------------------------------------------------- /Commands/Navigation/RemoveNavigationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Navigation/RemoveNavigationNode.cs -------------------------------------------------------------------------------- /Commands/PnP.PowerShell.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/PnP.PowerShell.Commands.csproj -------------------------------------------------------------------------------- /Commands/PnP.PowerShell.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/PnP.PowerShell.Core.csproj -------------------------------------------------------------------------------- /Commands/Principals/AddAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/AddAlert.cs -------------------------------------------------------------------------------- /Commands/Principals/AddUserToGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/AddUserToGroup.cs -------------------------------------------------------------------------------- /Commands/Principals/GetAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/GetAlert.cs -------------------------------------------------------------------------------- /Commands/Principals/GetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/GetGroup.cs -------------------------------------------------------------------------------- /Commands/Principals/GetGroupMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/GetGroupMembers.cs -------------------------------------------------------------------------------- /Commands/Principals/GetGroupPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/GetGroupPermissions.cs -------------------------------------------------------------------------------- /Commands/Principals/GetUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/GetUser.cs -------------------------------------------------------------------------------- /Commands/Principals/NewGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/NewGroup.cs -------------------------------------------------------------------------------- /Commands/Principals/NewUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/NewUser.cs -------------------------------------------------------------------------------- /Commands/Principals/RemoveAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/RemoveAlert.cs -------------------------------------------------------------------------------- /Commands/Principals/RemoveGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/RemoveGroup.cs -------------------------------------------------------------------------------- /Commands/Principals/RemoveUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/RemoveUser.cs -------------------------------------------------------------------------------- /Commands/Principals/RemoveUserFromGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/RemoveUserFromGroup.cs -------------------------------------------------------------------------------- /Commands/Principals/SetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/SetGroup.cs -------------------------------------------------------------------------------- /Commands/Principals/SetGroupPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Principals/SetGroupPermissions.cs -------------------------------------------------------------------------------- /Commands/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Commands/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Commands/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Properties/Resources.resx -------------------------------------------------------------------------------- /Commands/Provider/SPOContentReaderWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Provider/SPOContentReaderWriter.cs -------------------------------------------------------------------------------- /Commands/Provider/SPODriveCacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Provider/SPODriveCacheItem.cs -------------------------------------------------------------------------------- /Commands/Provider/SPODriveCacheWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Provider/SPODriveCacheWeb.cs -------------------------------------------------------------------------------- /Commands/Provider/SPODriveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Provider/SPODriveInfo.cs -------------------------------------------------------------------------------- /Commands/Provider/SPOProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Provider/SPOProvider.cs -------------------------------------------------------------------------------- /Commands/Publishing/AddMasterPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Publishing/AddMasterPage.cs -------------------------------------------------------------------------------- /Commands/Publishing/AddPublishingPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Publishing/AddPublishingPage.cs -------------------------------------------------------------------------------- /Commands/Publishing/AddWikiPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Publishing/AddWikiPage.cs -------------------------------------------------------------------------------- /Commands/Publishing/GetWikiPageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Publishing/GetWikiPageContent.cs -------------------------------------------------------------------------------- /Commands/Publishing/RemoveWikiPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Publishing/RemoveWikiPage.cs -------------------------------------------------------------------------------- /Commands/Publishing/SetDefaultPageLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Publishing/SetDefaultPageLayout.cs -------------------------------------------------------------------------------- /Commands/Publishing/SetWikiPageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Publishing/SetWikiPageContent.cs -------------------------------------------------------------------------------- /Commands/RecycleBin/ClearRecycleBinItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/RecycleBin/ClearRecycleBinItem.cs -------------------------------------------------------------------------------- /Commands/RecycleBin/GetRecycleBinItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/RecycleBin/GetRecycleBinItem.cs -------------------------------------------------------------------------------- /Commands/RecycleBin/MoveRecycleBinItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/RecycleBin/MoveRecycleBinItem.cs -------------------------------------------------------------------------------- /Commands/RecycleBin/RestoreRecycleBinItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/RecycleBin/RestoreRecycleBinItem.cs -------------------------------------------------------------------------------- /Commands/Resources/pnp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Resources/pnp.ico -------------------------------------------------------------------------------- /Commands/Samples/Connections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Samples/Connections.ps1 -------------------------------------------------------------------------------- /Commands/Samples/GetContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Samples/GetContext.ps1 -------------------------------------------------------------------------------- /Commands/Samples/ProvisionSite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Samples/ProvisionSite.ps1 -------------------------------------------------------------------------------- /Commands/Search/GetSearchConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/GetSearchConfiguration.cs -------------------------------------------------------------------------------- /Commands/Search/GetSearchCrawlLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/GetSearchCrawlLog.cs -------------------------------------------------------------------------------- /Commands/Search/GetSearchSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/GetSearchSettings.cs -------------------------------------------------------------------------------- /Commands/Search/GetSiteSearchQueryResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/GetSiteSearchQueryResults.cs -------------------------------------------------------------------------------- /Commands/Search/PnPResultTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/PnPResultTable.cs -------------------------------------------------------------------------------- /Commands/Search/PnPResultTableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/PnPResultTableCollection.cs -------------------------------------------------------------------------------- /Commands/Search/RemoveSearchConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/RemoveSearchConfiguration.cs -------------------------------------------------------------------------------- /Commands/Search/SetSearchConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/SetSearchConfiguration.cs -------------------------------------------------------------------------------- /Commands/Search/SetSearchSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/SetSearchSettings.cs -------------------------------------------------------------------------------- /Commands/Search/SubmitSearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Search/SubmitSearchQuery.cs -------------------------------------------------------------------------------- /Commands/Site/AddRoleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/AddRoleDefinition.cs -------------------------------------------------------------------------------- /Commands/Site/AddSiteCollectionAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/AddSiteCollectionAdmin.cs -------------------------------------------------------------------------------- /Commands/Site/AddTeamsTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/AddTeamsTeam.cs -------------------------------------------------------------------------------- /Commands/Site/EnableCommSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/EnableCommSite.cs -------------------------------------------------------------------------------- /Commands/Site/GetAuditing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/GetAuditing.cs -------------------------------------------------------------------------------- /Commands/Site/GetIsSiteAliasAvailable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/GetIsSiteAliasAvailable.cs -------------------------------------------------------------------------------- /Commands/Site/GetRoleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/GetRoleDefinition.cs -------------------------------------------------------------------------------- /Commands/Site/GetSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/GetSite.cs -------------------------------------------------------------------------------- /Commands/Site/GetSiteCollectionAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/GetSiteCollectionAdmin.cs -------------------------------------------------------------------------------- /Commands/Site/InstallSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/InstallSolution.cs -------------------------------------------------------------------------------- /Commands/Site/RemoveRoleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/RemoveRoleDefinition.cs -------------------------------------------------------------------------------- /Commands/Site/RemoveSiteCollectionAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/RemoveSiteCollectionAdmin.cs -------------------------------------------------------------------------------- /Commands/Site/SetAppSideLoading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/SetAppSideLoading.cs -------------------------------------------------------------------------------- /Commands/Site/SetAuditing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/SetAuditing.cs -------------------------------------------------------------------------------- /Commands/Site/SetSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/SetSite.cs -------------------------------------------------------------------------------- /Commands/Site/SetTeamifyPromptHidden.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/SetTeamifyPromptHidden.cs -------------------------------------------------------------------------------- /Commands/Site/UninstallSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Site/UninstallSolution.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/AddSiteDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/AddSiteDesign.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/AddSiteDesignTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/AddSiteDesignTask.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/AddSiteScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/AddSiteScript.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/GetSiteDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/GetSiteDesign.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/GetSiteDesignRights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/GetSiteDesignRights.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/GetSiteDesignRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/GetSiteDesignRun.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/GetSiteDesignTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/GetSiteDesignTask.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/GetSiteScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/GetSiteScript.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/GetSiteScriptFromWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/GetSiteScriptFromWeb.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/InvokeSiteDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/InvokeSiteDesign.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/RemoveSiteDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/RemoveSiteDesign.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/RemoveSiteDesignTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/RemoveSiteDesignTask.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/RemoveSiteScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/RemoveSiteScript.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/SetSiteDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/SetSiteDesign.cs -------------------------------------------------------------------------------- /Commands/SiteDesigns/SetSiteScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/SiteDesigns/SetSiteScript.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/ExportTaxonomy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/ExportTaxonomy.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/ExportTermGroupToXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/ExportTermGroupToXml.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/GetTaxonomyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/GetTaxonomyItem.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/GetTaxonomySession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/GetTaxonomySession.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/GetTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/GetTerm.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/GetTermGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/GetTermGroup.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/GetTermSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/GetTermSet.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/ImportTaxonomy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/ImportTaxonomy.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/ImportTermGroupFromXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/ImportTermGroupFromXml.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/ImportTermSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/ImportTermSet.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/NewTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/NewTerm.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/NewTermGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/NewTermGroup.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/NewTermLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/NewTermLabel.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/NewTermSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/NewTermSet.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/RemoveTaxonomyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/RemoveTaxonomyItem.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/RemoveTermGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/RemoveTermGroup.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/SetTaxonomyFieldValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/SetTaxonomyFieldValue.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/SetTermGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/SetTermGroup.cs -------------------------------------------------------------------------------- /Commands/Taxonomy/SetTermSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Taxonomy/SetTermSet.cs -------------------------------------------------------------------------------- /Commands/Teams/AddTeamsChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/AddTeamsChannel.cs -------------------------------------------------------------------------------- /Commands/Teams/AddTeamsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/AddTeamsTab.cs -------------------------------------------------------------------------------- /Commands/Teams/AddTeamsUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/AddTeamsUser.cs -------------------------------------------------------------------------------- /Commands/Teams/GetTeamsApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/GetTeamsApp.cs -------------------------------------------------------------------------------- /Commands/Teams/GetTeamsChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/GetTeamsChannel.cs -------------------------------------------------------------------------------- /Commands/Teams/GetTeamsChannelMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/GetTeamsChannelMessage.cs -------------------------------------------------------------------------------- /Commands/Teams/GetTeamsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/GetTeamsTab.cs -------------------------------------------------------------------------------- /Commands/Teams/GetTeamsTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/GetTeamsTeam.cs -------------------------------------------------------------------------------- /Commands/Teams/GetTeamsUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/GetTeamsUser.cs -------------------------------------------------------------------------------- /Commands/Teams/NewTeamsApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/NewTeamsApp.cs -------------------------------------------------------------------------------- /Commands/Teams/NewTeamsTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/NewTeamsTeam.cs -------------------------------------------------------------------------------- /Commands/Teams/RemoveTeamsApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/RemoveTeamsApp.cs -------------------------------------------------------------------------------- /Commands/Teams/RemoveTeamsChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/RemoveTeamsChannel.cs -------------------------------------------------------------------------------- /Commands/Teams/RemoveTeamsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/RemoveTeamsTab.cs -------------------------------------------------------------------------------- /Commands/Teams/RemoveTeamsTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/RemoveTeamsTeam.cs -------------------------------------------------------------------------------- /Commands/Teams/RemoveTeamsUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/RemoveTeamsUser.cs -------------------------------------------------------------------------------- /Commands/Teams/SetTeamsChannel .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/SetTeamsChannel .cs -------------------------------------------------------------------------------- /Commands/Teams/SetTeamsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/SetTeamsTab.cs -------------------------------------------------------------------------------- /Commands/Teams/SetTeamsTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/SetTeamsTeam.cs -------------------------------------------------------------------------------- /Commands/Teams/SetTeamsTeamArchivedState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/SetTeamsTeamArchivedState.cs -------------------------------------------------------------------------------- /Commands/Teams/SetTeamsTeamPicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/SetTeamsTeamPicture.cs -------------------------------------------------------------------------------- /Commands/Teams/SubmitTeamsChannelMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/SubmitTeamsChannelMessage.cs -------------------------------------------------------------------------------- /Commands/Teams/UpdateTeamsApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Teams/UpdateTeamsApp.cs -------------------------------------------------------------------------------- /Commands/UserProfiles/NewPersonalSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/UserProfiles/NewPersonalSite.cs -------------------------------------------------------------------------------- /Commands/UserProfiles/NewUPABulkImportJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/UserProfiles/NewUPABulkImportJob.cs -------------------------------------------------------------------------------- /Commands/Utilities/AzureAuthHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/AzureAuthHelper.cs -------------------------------------------------------------------------------- /Commands/Utilities/BrowserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/BrowserHelper.cs -------------------------------------------------------------------------------- /Commands/Utilities/CertificateCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/CertificateCrypto.cs -------------------------------------------------------------------------------- /Commands/Utilities/CertificateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/CertificateHelper.cs -------------------------------------------------------------------------------- /Commands/Utilities/CredentialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/CredentialManager.cs -------------------------------------------------------------------------------- /Commands/Utilities/DynamicLinq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/DynamicLinq.cs -------------------------------------------------------------------------------- /Commands/Utilities/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/FileUtilities.cs -------------------------------------------------------------------------------- /Commands/Utilities/IsolatedStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/IsolatedStorage.cs -------------------------------------------------------------------------------- /Commands/Utilities/JwtUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/JwtUtility.cs -------------------------------------------------------------------------------- /Commands/Utilities/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/LinqExtensions.cs -------------------------------------------------------------------------------- /Commands/Utilities/ListItemHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/ListItemHelper.cs -------------------------------------------------------------------------------- /Commands/Utilities/OperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/OperatingSystem.cs -------------------------------------------------------------------------------- /Commands/Utilities/ProvisioningHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/ProvisioningHelper.cs -------------------------------------------------------------------------------- /Commands/Utilities/REST/GraphCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/REST/GraphCollection.cs -------------------------------------------------------------------------------- /Commands/Utilities/REST/GraphHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/REST/GraphHelper.cs -------------------------------------------------------------------------------- /Commands/Utilities/REST/MetadataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/REST/MetadataType.cs -------------------------------------------------------------------------------- /Commands/Utilities/REST/RestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/REST/RestHelper.cs -------------------------------------------------------------------------------- /Commands/Utilities/REST/RestRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/REST/RestRequest.cs -------------------------------------------------------------------------------- /Commands/Utilities/SendMail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/SendMail.cs -------------------------------------------------------------------------------- /Commands/Utilities/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/Shell.cs -------------------------------------------------------------------------------- /Commands/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /Commands/Utilities/TeamsUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/TeamsUtility.cs -------------------------------------------------------------------------------- /Commands/Utilities/UrlUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Utilities/UrlUtilities.cs -------------------------------------------------------------------------------- /Commands/Web/AddIndexedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/AddIndexedProperty.cs -------------------------------------------------------------------------------- /Commands/Web/GetAvailableLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/GetAvailableLanguage.cs -------------------------------------------------------------------------------- /Commands/Web/GetIndexedPropertyKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/GetIndexedPropertyKeys.cs -------------------------------------------------------------------------------- /Commands/Web/GetPropertyBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/GetPropertyBag.cs -------------------------------------------------------------------------------- /Commands/Web/GetRequestAccessEmails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/GetRequestAccessEmails.cs -------------------------------------------------------------------------------- /Commands/Web/GetSubwebs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/GetSubwebs.cs -------------------------------------------------------------------------------- /Commands/Web/GetWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/GetWeb.cs -------------------------------------------------------------------------------- /Commands/Web/InvokeWebAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/InvokeWebAction.cs -------------------------------------------------------------------------------- /Commands/Web/NewWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/NewWeb.cs -------------------------------------------------------------------------------- /Commands/Web/RemovePropertyBagValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/RemovePropertyBagValue.cs -------------------------------------------------------------------------------- /Commands/Web/RemoveWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/RemoveWeb.cs -------------------------------------------------------------------------------- /Commands/Web/RemovedIndexedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/RemovedIndexedProperty.cs -------------------------------------------------------------------------------- /Commands/Web/RequestReIndexWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/RequestReIndexWeb.cs -------------------------------------------------------------------------------- /Commands/Web/SetIndexedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/SetIndexedProperties.cs -------------------------------------------------------------------------------- /Commands/Web/SetPropertyBagValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/SetPropertyBagValue.cs -------------------------------------------------------------------------------- /Commands/Web/SetRequestAccessEmails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/SetRequestAccessEmails.cs -------------------------------------------------------------------------------- /Commands/Web/SetWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/SetWeb.cs -------------------------------------------------------------------------------- /Commands/Web/SetWebPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Web/SetWebPermission.cs -------------------------------------------------------------------------------- /Commands/WebParts/AddClientSideWebPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/WebParts/AddClientSideWebPart.cs -------------------------------------------------------------------------------- /Commands/WebParts/AddWebPartToWebPartPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/WebParts/AddWebPartToWebPartPage.cs -------------------------------------------------------------------------------- /Commands/WebParts/AddWebPartToWikiPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/WebParts/AddWebPartToWikiPage.cs -------------------------------------------------------------------------------- /Commands/WebParts/GetWebPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/WebParts/GetWebPart.cs -------------------------------------------------------------------------------- /Commands/WebParts/GetWebPartProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/WebParts/GetWebPartProperty.cs -------------------------------------------------------------------------------- /Commands/WebParts/GetWebPartXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/WebParts/GetWebPartXml.cs -------------------------------------------------------------------------------- /Commands/WebParts/RemoveWebPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/WebParts/RemoveWebPart.cs -------------------------------------------------------------------------------- /Commands/WebParts/SetWebPartProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/WebParts/SetWebPartProperty.cs -------------------------------------------------------------------------------- /Commands/Webhooks/AddWebhookSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Webhooks/AddWebhookSubscription.cs -------------------------------------------------------------------------------- /Commands/Webhooks/GetWebhookSubscriptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Webhooks/GetWebhookSubscriptions.cs -------------------------------------------------------------------------------- /Commands/Webhooks/SetWebhookSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Webhooks/SetWebhookSubscription.cs -------------------------------------------------------------------------------- /Commands/Workflows/AddWorkflowDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Workflows/AddWorkflowDefinition.cs -------------------------------------------------------------------------------- /Commands/Workflows/GetWorkflowDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Workflows/GetWorkflowDefinition.cs -------------------------------------------------------------------------------- /Commands/Workflows/GetWorkflowInstances.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Workflows/GetWorkflowInstances.cs -------------------------------------------------------------------------------- /Commands/Workflows/ResumeWorkflowInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Workflows/ResumeWorkflowInstance.cs -------------------------------------------------------------------------------- /Commands/Workflows/StartWorkflowInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Workflows/StartWorkflowInstance.cs -------------------------------------------------------------------------------- /Commands/Workflows/StopWorkflowInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/Workflows/StopWorkflowInstance.cs -------------------------------------------------------------------------------- /Commands/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/app.config -------------------------------------------------------------------------------- /Commands/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Commands/packages.config -------------------------------------------------------------------------------- /Documentation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Documentation/readme.md -------------------------------------------------------------------------------- /HelpAttributes/CmdletApiPermissionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/CmdletApiPermissionBase.cs -------------------------------------------------------------------------------- /HelpAttributes/CmdletExampleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/CmdletExampleAttribute.cs -------------------------------------------------------------------------------- /HelpAttributes/CmdletHelpAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/CmdletHelpAttribute.cs -------------------------------------------------------------------------------- /HelpAttributes/CmdletHelpCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/CmdletHelpCategory.cs -------------------------------------------------------------------------------- /HelpAttributes/CmdletPipeLineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/CmdletPipeLineAttribute.cs -------------------------------------------------------------------------------- /HelpAttributes/CmdletRelatedLinkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/CmdletRelatedLinkAttribute.cs -------------------------------------------------------------------------------- /HelpAttributes/CmdletSupportedPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/CmdletSupportedPlatform.cs -------------------------------------------------------------------------------- /HelpAttributes/CmdletTokenTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/CmdletTokenTypeAttribute.cs -------------------------------------------------------------------------------- /HelpAttributes/PnPParameterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/PnPParameterAttribute.cs -------------------------------------------------------------------------------- /HelpAttributes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/HelpAttributes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Install.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/LICENSE -------------------------------------------------------------------------------- /ModuleFilesGenerator/CmdletsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/CmdletsAnalyzer.cs -------------------------------------------------------------------------------- /ModuleFilesGenerator/DiffMatchPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/DiffMatchPatch.cs -------------------------------------------------------------------------------- /ModuleFilesGenerator/GenerateModuleFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/GenerateModuleFiles.cs -------------------------------------------------------------------------------- /ModuleFilesGenerator/HelpFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/HelpFileGenerator.cs -------------------------------------------------------------------------------- /ModuleFilesGenerator/Model/CmdletInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/Model/CmdletInfo.cs -------------------------------------------------------------------------------- /ModuleFilesGenerator/Model/CmdletSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/Model/CmdletSyntax.cs -------------------------------------------------------------------------------- /ModuleFilesGenerator/ParameterComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/ParameterComparer.cs -------------------------------------------------------------------------------- /ModuleFilesGenerator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/app.config -------------------------------------------------------------------------------- /ModuleFilesGenerator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/ModuleFilesGenerator/packages.config -------------------------------------------------------------------------------- /PnP.PowerShell.Core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/PnP.PowerShell.Core.sln -------------------------------------------------------------------------------- /PnP.PowerShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/PnP.PowerShell.sln -------------------------------------------------------------------------------- /PnP_PowerShell_Roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/PnP_PowerShell_Roadmap.png -------------------------------------------------------------------------------- /PostBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/PostBuild.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/README.md -------------------------------------------------------------------------------- /Resources/PnPTestList.xml.pnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Resources/PnPTestList.xml.pnp -------------------------------------------------------------------------------- /Samples/Audiences.Retrieve/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Audiences.Retrieve/ReadMe.md -------------------------------------------------------------------------------- /Samples/Connect.AzureAutomation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Connect.AzureAutomation/Readme.md -------------------------------------------------------------------------------- /Samples/Deactivate.Feature/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Deactivate.Feature/ReadMe.md -------------------------------------------------------------------------------- /Samples/FindLinksInCanvas/input/sites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/FindLinksInCanvas/input/sites.csv -------------------------------------------------------------------------------- /Samples/FindLinksInCanvas/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/FindLinksInCanvas/readme.md -------------------------------------------------------------------------------- /Samples/Provisioning.SelfHostedWithAzureWebJob/.gitignore: -------------------------------------------------------------------------------- 1 | bundle/ 2 | *.zip -------------------------------------------------------------------------------- /Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/README.md -------------------------------------------------------------------------------- /Samples/Tenant.Migration/ApplySolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Tenant.Migration/ApplySolution.ps1 -------------------------------------------------------------------------------- /Samples/Tenant.Migration/CollectSolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Tenant.Migration/CollectSolution.ps1 -------------------------------------------------------------------------------- /Samples/Tenant.Migration/CopySolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Tenant.Migration/CopySolution.ps1 -------------------------------------------------------------------------------- /Samples/Tenant.Migration/Modules/2017/March/SharePointPnPPowerShell2013/Modules/SharePointPnPPowerShell2013/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/Tenant.Migration/Modules/2017/March/SharePointPnPPowerShell2013/Modules/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/Tenant.Migration/Templates/readme.md: -------------------------------------------------------------------------------- 1 | This folder is used to store templates 2 | -------------------------------------------------------------------------------- /Samples/Tenant.Migration/config.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Tenant.Migration/config.dtd -------------------------------------------------------------------------------- /Samples/Tenant.Migration/config.xml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Tenant.Migration/config.xml.sample -------------------------------------------------------------------------------- /Samples/Tenant.Migration/config.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Tenant.Migration/config.xsd -------------------------------------------------------------------------------- /Samples/Tenant.Migration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Samples/Tenant.Migration/readme.md -------------------------------------------------------------------------------- /SharePointPnP.PowerShell.Core/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/SharePointPnP.PowerShell.Core/Class1.cs -------------------------------------------------------------------------------- /Tests/Admin/AddPnPHubSiteAssociationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/AddPnPHubSiteAssociationTests.cs -------------------------------------------------------------------------------- /Tests/Admin/AddPnPOrgAssetsLibraryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/AddPnPOrgAssetsLibraryTests.cs -------------------------------------------------------------------------------- /Tests/Admin/AddPnPOrgNewsSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/AddPnPOrgNewsSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/AddPnPTenantCdnOriginTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/AddPnPTenantCdnOriginTests.cs -------------------------------------------------------------------------------- /Tests/Admin/AddPnPTenantThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/AddPnPTenantThemeTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPHideDefaultThemesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPHideDefaultThemesTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPHomeSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPHomeSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPHubSiteChildTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPHubSiteChildTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPHubSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPHubSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPKnowledgeHubSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPKnowledgeHubSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPOrgAssetsLibraryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPOrgAssetsLibraryTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPOrgNewsSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPOrgNewsSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPStorageEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPStorageEntityTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPTenantCdnEnabledTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPTenantCdnEnabledTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPTenantCdnOriginTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPTenantCdnOriginTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPTenantCdnPoliciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPTenantCdnPoliciesTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPTenantIdTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPTenantIdTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPTenantSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPTenantSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPTenantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPTenantTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPTenantThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPTenantThemeTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GetPnPTimeZoneIdTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GetPnPTimeZoneIdTests.cs -------------------------------------------------------------------------------- /Tests/Admin/GrantPnPHubSiteRightsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/GrantPnPHubSiteRightsTests.cs -------------------------------------------------------------------------------- /Tests/Admin/InvokePnPSPRestMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/InvokePnPSPRestMethodTests.cs -------------------------------------------------------------------------------- /Tests/Admin/NewPnPTenantSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/NewPnPTenantSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/RegisterPnPHubSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/RegisterPnPHubSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/RemovePnPHomeSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/RemovePnPHomeSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/RemovePnPOrgNewsSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/RemovePnPOrgNewsSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/RemovePnPStorageEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/RemovePnPStorageEntityTests.cs -------------------------------------------------------------------------------- /Tests/Admin/RemovePnPTenantCdnOriginTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/RemovePnPTenantCdnOriginTests.cs -------------------------------------------------------------------------------- /Tests/Admin/RemovePnPTenantSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/RemovePnPTenantSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/RemovePnPTenantThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/RemovePnPTenantThemeTests.cs -------------------------------------------------------------------------------- /Tests/Admin/RevokePnPHubSiteRightsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/RevokePnPHubSiteRightsTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPHideDefaultThemesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPHideDefaultThemesTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPHomeSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPHomeSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPHubSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPHubSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPKnowledgeHubSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPKnowledgeHubSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPStorageEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPStorageEntityTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPTenantCdnEnabledTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPTenantCdnEnabledTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPTenantCdnPolicyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPTenantCdnPolicyTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPTenantSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPTenantSiteTests.cs -------------------------------------------------------------------------------- /Tests/Admin/SetPnPTenantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/SetPnPTenantTests.cs -------------------------------------------------------------------------------- /Tests/Admin/UnregisterPnPHubSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Admin/UnregisterPnPHubSiteTests.cs -------------------------------------------------------------------------------- /Tests/App.config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/App.config.sample -------------------------------------------------------------------------------- /Tests/Apps/AddPnPAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/AddPnPAppTests.cs -------------------------------------------------------------------------------- /Tests/Apps/GetPnPAppInstanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/GetPnPAppInstanceTests.cs -------------------------------------------------------------------------------- /Tests/Apps/GetPnPAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/GetPnPAppTests.cs -------------------------------------------------------------------------------- /Tests/Apps/ImportPnPAppPackageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/ImportPnPAppPackageTests.cs -------------------------------------------------------------------------------- /Tests/Apps/InstallPnPAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/InstallPnPAppTests.cs -------------------------------------------------------------------------------- /Tests/Apps/PublishPnPAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/PublishPnPAppTests.cs -------------------------------------------------------------------------------- /Tests/Apps/RegisterPnPAppCatalogSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/RegisterPnPAppCatalogSiteTests.cs -------------------------------------------------------------------------------- /Tests/Apps/RemovePnPAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/RemovePnPAppTests.cs -------------------------------------------------------------------------------- /Tests/Apps/SyncPnPAppToTeamsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/SyncPnPAppToTeamsTests.cs -------------------------------------------------------------------------------- /Tests/Apps/UninstallPnPAppInstanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/UninstallPnPAppInstanceTests.cs -------------------------------------------------------------------------------- /Tests/Apps/UninstallPnPAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/UninstallPnPAppTests.cs -------------------------------------------------------------------------------- /Tests/Apps/UnpublishPnPAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/UnpublishPnPAppTests.cs -------------------------------------------------------------------------------- /Tests/Apps/UpdatePnPAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Apps/UpdatePnPAppTests.cs -------------------------------------------------------------------------------- /Tests/Base/AddPnPStoredCredentialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/AddPnPStoredCredentialTests.cs -------------------------------------------------------------------------------- /Tests/Base/ConnectPnPOnlineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/ConnectPnPOnlineTests.cs -------------------------------------------------------------------------------- /Tests/Base/DisconnectPnPOnlineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/DisconnectPnPOnlineTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPAccessTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPAccessTokenTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPAppAuthAccessTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPAppAuthAccessTokenTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPAuthenticationRealmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPAuthenticationRealmTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPAzureCertificateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPAzureCertificateTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPConnectionTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPContextTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPExceptionTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPGraphAccessTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPGraphAccessTokenTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPHealthScoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPHealthScoreTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPPropertyTests.cs -------------------------------------------------------------------------------- /Tests/Base/GetPnPStoredCredentialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/GetPnPStoredCredentialTests.cs -------------------------------------------------------------------------------- /Tests/Base/InvokePnPQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/InvokePnPQueryTests.cs -------------------------------------------------------------------------------- /Tests/Base/NewPnPAzureCertificateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/NewPnPAzureCertificateTests.cs -------------------------------------------------------------------------------- /Tests/Base/RemovePnPStoredCredentialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/RemovePnPStoredCredentialTests.cs -------------------------------------------------------------------------------- /Tests/Base/RequestPnPAccessTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/RequestPnPAccessTokenTests.cs -------------------------------------------------------------------------------- /Tests/Base/SetPnPContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/SetPnPContextTests.cs -------------------------------------------------------------------------------- /Tests/Base/SetPnPTraceLogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Base/SetPnPTraceLogTests.cs -------------------------------------------------------------------------------- /Tests/Branding/AddPnPCustomActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/AddPnPCustomActionTests.cs -------------------------------------------------------------------------------- /Tests/Branding/AddPnPJavaScriptBlockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/AddPnPJavaScriptBlockTests.cs -------------------------------------------------------------------------------- /Tests/Branding/AddPnPJavaScriptLinkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/AddPnPJavaScriptLinkTests.cs -------------------------------------------------------------------------------- /Tests/Branding/AddPnPNavigationNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/AddPnPNavigationNodeTests.cs -------------------------------------------------------------------------------- /Tests/Branding/EnablePnPResponsiveUITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/EnablePnPResponsiveUITests.cs -------------------------------------------------------------------------------- /Tests/Branding/GetPnPCustomActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/GetPnPCustomActionTests.cs -------------------------------------------------------------------------------- /Tests/Branding/GetPnPFooterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/GetPnPFooterTests.cs -------------------------------------------------------------------------------- /Tests/Branding/GetPnPHomePageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/GetPnPHomePageTests.cs -------------------------------------------------------------------------------- /Tests/Branding/GetPnPJavaScriptLinkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/GetPnPJavaScriptLinkTests.cs -------------------------------------------------------------------------------- /Tests/Branding/GetPnPMasterPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/GetPnPMasterPageTests.cs -------------------------------------------------------------------------------- /Tests/Branding/GetPnPNavigationNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/GetPnPNavigationNodeTests.cs -------------------------------------------------------------------------------- /Tests/Branding/GetPnPThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/GetPnPThemeTests.cs -------------------------------------------------------------------------------- /Tests/Branding/RemovePnPCustomActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/RemovePnPCustomActionTests.cs -------------------------------------------------------------------------------- /Tests/Branding/SetPnPFooterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/SetPnPFooterTests.cs -------------------------------------------------------------------------------- /Tests/Branding/SetPnPHomePageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/SetPnPHomePageTests.cs -------------------------------------------------------------------------------- /Tests/Branding/SetPnPMasterPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/SetPnPMasterPageTests.cs -------------------------------------------------------------------------------- /Tests/Branding/SetPnPThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/SetPnPThemeTests.cs -------------------------------------------------------------------------------- /Tests/Branding/SetPnPWebThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Branding/SetPnPWebThemeTests.cs -------------------------------------------------------------------------------- /Tests/ContentTypes/AddPnPContentTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/ContentTypes/AddPnPContentTypeTests.cs -------------------------------------------------------------------------------- /Tests/ContentTypes/GetPnPContentTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/ContentTypes/GetPnPContentTypeTests.cs -------------------------------------------------------------------------------- /Tests/Diagnostic/MeasurePnPListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Diagnostic/MeasurePnPListTests.cs -------------------------------------------------------------------------------- /Tests/Diagnostic/MeasurePnPWebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Diagnostic/MeasurePnPWebTests.cs -------------------------------------------------------------------------------- /Tests/DocumentSets/AddPnPDocumentSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/DocumentSets/AddPnPDocumentSetTests.cs -------------------------------------------------------------------------------- /Tests/Events/AddPnPEventReceiverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Events/AddPnPEventReceiverTests.cs -------------------------------------------------------------------------------- /Tests/Events/GetPnPEventReceiverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Events/GetPnPEventReceiverTests.cs -------------------------------------------------------------------------------- /Tests/Events/RemovePnPEventReceiverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Events/RemovePnPEventReceiverTests.cs -------------------------------------------------------------------------------- /Tests/Features/DisablePnPFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Features/DisablePnPFeatureTests.cs -------------------------------------------------------------------------------- /Tests/Features/EnablePnPFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Features/EnablePnPFeatureTests.cs -------------------------------------------------------------------------------- /Tests/Features/GetPnPFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Features/GetPnPFeatureTests.cs -------------------------------------------------------------------------------- /Tests/Fields/AddPnPFieldFromXmlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Fields/AddPnPFieldFromXmlTests.cs -------------------------------------------------------------------------------- /Tests/Fields/AddPnPFieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Fields/AddPnPFieldTests.cs -------------------------------------------------------------------------------- /Tests/Fields/AddPnPTaxonomyFieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Fields/AddPnPTaxonomyFieldTests.cs -------------------------------------------------------------------------------- /Tests/Fields/GetPnPFieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Fields/GetPnPFieldTests.cs -------------------------------------------------------------------------------- /Tests/Fields/RemovePnPFieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Fields/RemovePnPFieldTests.cs -------------------------------------------------------------------------------- /Tests/Fields/SetPnPFieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Fields/SetPnPFieldTests.cs -------------------------------------------------------------------------------- /Tests/Fields/SetPnPViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Fields/SetPnPViewTests.cs -------------------------------------------------------------------------------- /Tests/Files/AddPnPFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/AddPnPFileTests.cs -------------------------------------------------------------------------------- /Tests/Files/AddPnPFolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/AddPnPFolderTests.cs -------------------------------------------------------------------------------- /Tests/Files/CopyPnPFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/CopyPnPFileTests.cs -------------------------------------------------------------------------------- /Tests/Files/FindPnPFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/FindPnPFileTests.cs -------------------------------------------------------------------------------- /Tests/Files/GetPnPFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/GetPnPFileTests.cs -------------------------------------------------------------------------------- /Tests/Files/GetPnPFolderItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/GetPnPFolderItemTests.cs -------------------------------------------------------------------------------- /Tests/Files/GetPnPFolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/GetPnPFolderTests.cs -------------------------------------------------------------------------------- /Tests/Files/MovePnPFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/MovePnPFileTests.cs -------------------------------------------------------------------------------- /Tests/Files/MovePnPFolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/MovePnPFolderTests.cs -------------------------------------------------------------------------------- /Tests/Files/RemovePnPFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/RemovePnPFileTests.cs -------------------------------------------------------------------------------- /Tests/Files/RemovePnPFolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/RemovePnPFolderTests.cs -------------------------------------------------------------------------------- /Tests/Files/RenamePnPFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/RenamePnPFileTests.cs -------------------------------------------------------------------------------- /Tests/Files/RenamePnPFolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/RenamePnPFolderTests.cs -------------------------------------------------------------------------------- /Tests/Files/ResetPnPFileVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/ResetPnPFileVersionTests.cs -------------------------------------------------------------------------------- /Tests/Files/ResolvePnPFolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/ResolvePnPFolderTests.cs -------------------------------------------------------------------------------- /Tests/Files/SetPnPFileCheckedInTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/SetPnPFileCheckedInTests.cs -------------------------------------------------------------------------------- /Tests/Files/SetPnPFileCheckedOutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/SetPnPFileCheckedOutTests.cs -------------------------------------------------------------------------------- /Tests/Files/SetPnPFolderPermissionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Files/SetPnPFolderPermissionTests.cs -------------------------------------------------------------------------------- /Tests/Graph/AddPnPSiteClassificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/AddPnPSiteClassificationTests.cs -------------------------------------------------------------------------------- /Tests/Graph/GetPnPAADUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/GetPnPAADUserTests.cs -------------------------------------------------------------------------------- /Tests/Graph/GetPnPGraphSubscriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/GetPnPGraphSubscriptionTests.cs -------------------------------------------------------------------------------- /Tests/Graph/GetPnPSiteClassificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/GetPnPSiteClassificationTests.cs -------------------------------------------------------------------------------- /Tests/Graph/GetPnPUnifiedGroupOwnersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/GetPnPUnifiedGroupOwnersTests.cs -------------------------------------------------------------------------------- /Tests/Graph/GetPnPUnifiedGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/GetPnPUnifiedGroupTests.cs -------------------------------------------------------------------------------- /Tests/Graph/NewPnPGraphSubscriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/NewPnPGraphSubscriptionTests.cs -------------------------------------------------------------------------------- /Tests/Graph/NewPnPUnifiedGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/NewPnPUnifiedGroupTests.cs -------------------------------------------------------------------------------- /Tests/Graph/RemovePnPUnifiedGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/RemovePnPUnifiedGroupTests.cs -------------------------------------------------------------------------------- /Tests/Graph/SetPnPGraphSubscriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/SetPnPGraphSubscriptionTests.cs -------------------------------------------------------------------------------- /Tests/Graph/SetPnPUnifiedGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Graph/SetPnPUnifiedGroupTests.cs -------------------------------------------------------------------------------- /Tests/Lists/AddPnPListItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/AddPnPListItemTests.cs -------------------------------------------------------------------------------- /Tests/Lists/AddPnPViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/AddPnPViewTests.cs -------------------------------------------------------------------------------- /Tests/Lists/GetPnPListItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/GetPnPListItemTests.cs -------------------------------------------------------------------------------- /Tests/Lists/GetPnPListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/GetPnPListTests.cs -------------------------------------------------------------------------------- /Tests/Lists/GetPnPViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/GetPnPViewTests.cs -------------------------------------------------------------------------------- /Tests/Lists/NewPnPListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/NewPnPListTests.cs -------------------------------------------------------------------------------- /Tests/Lists/RemovePnPListItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/RemovePnPListItemTests.cs -------------------------------------------------------------------------------- /Tests/Lists/RemovePnPListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/RemovePnPListTests.cs -------------------------------------------------------------------------------- /Tests/Lists/RemovePnPViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/RemovePnPViewTests.cs -------------------------------------------------------------------------------- /Tests/Lists/RequestPnPReIndexListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/RequestPnPReIndexListTests.cs -------------------------------------------------------------------------------- /Tests/Lists/SetPnPListItemPermissionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/SetPnPListItemPermissionTests.cs -------------------------------------------------------------------------------- /Tests/Lists/SetPnPListItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/SetPnPListItemTests.cs -------------------------------------------------------------------------------- /Tests/Lists/SetPnPListPermissionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/SetPnPListPermissionTests.cs -------------------------------------------------------------------------------- /Tests/Lists/SetPnPListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Lists/SetPnPListTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/AdminTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/AdminTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/BaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/BaseTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/BrandingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/BrandingTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/ClientSidePagesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/ClientSidePagesTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/ContentTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/ContentTypeTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/DiagnosticTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/DiagnosticTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/EventReceiverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/EventReceiverTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/FeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/FeatureTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/FieldsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/FieldsTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/FilesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/FilesTest.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/GraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/GraphTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/InvokeWebActionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/InvokeWebActionTest.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/ListsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/ListsTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/PrincipalsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/PrincipalsTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/WebPartsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/WebPartsTests.cs -------------------------------------------------------------------------------- /Tests/OriginalTests/WebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/OriginalTests/WebTests.cs -------------------------------------------------------------------------------- /Tests/PSTestScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/PSTestScope.cs -------------------------------------------------------------------------------- /Tests/PnP.PowerShell.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/PnP.PowerShell.Tests.csproj -------------------------------------------------------------------------------- /Tests/Principals/AddPnPAlertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/AddPnPAlertTests.cs -------------------------------------------------------------------------------- /Tests/Principals/AddPnPUserToGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/AddPnPUserToGroupTests.cs -------------------------------------------------------------------------------- /Tests/Principals/GetPnPAlertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/GetPnPAlertTests.cs -------------------------------------------------------------------------------- /Tests/Principals/GetPnPGroupMembersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/GetPnPGroupMembersTests.cs -------------------------------------------------------------------------------- /Tests/Principals/GetPnPGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/GetPnPGroupTests.cs -------------------------------------------------------------------------------- /Tests/Principals/GetPnPUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/GetPnPUserTests.cs -------------------------------------------------------------------------------- /Tests/Principals/NewPnPGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/NewPnPGroupTests.cs -------------------------------------------------------------------------------- /Tests/Principals/NewPnPUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/NewPnPUserTests.cs -------------------------------------------------------------------------------- /Tests/Principals/RemovePnPAlertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/RemovePnPAlertTests.cs -------------------------------------------------------------------------------- /Tests/Principals/RemovePnPGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/RemovePnPGroupTests.cs -------------------------------------------------------------------------------- /Tests/Principals/RemovePnPUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/RemovePnPUserTests.cs -------------------------------------------------------------------------------- /Tests/Principals/SetPnPGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Principals/SetPnPGroupTests.cs -------------------------------------------------------------------------------- /Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Publishing/AddPnPMasterPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Publishing/AddPnPMasterPageTests.cs -------------------------------------------------------------------------------- /Tests/Publishing/AddPnPWikiPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Publishing/AddPnPWikiPageTests.cs -------------------------------------------------------------------------------- /Tests/Publishing/RemovePnPWikiPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Publishing/RemovePnPWikiPageTests.cs -------------------------------------------------------------------------------- /Tests/Resources/PnPTestList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Resources/PnPTestList.xml -------------------------------------------------------------------------------- /Tests/Resources/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Resources/template.xml -------------------------------------------------------------------------------- /Tests/Resources/webpart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Resources/webpart.xml -------------------------------------------------------------------------------- /Tests/Search/GetPnPSearchCrawlLogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Search/GetPnPSearchCrawlLogTests.cs -------------------------------------------------------------------------------- /Tests/Search/GetPnPSearchSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Search/GetPnPSearchSettingsTests.cs -------------------------------------------------------------------------------- /Tests/Search/SetPnPSearchSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Search/SetPnPSearchSettingsTests.cs -------------------------------------------------------------------------------- /Tests/Search/SubmitPnPSearchQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Search/SubmitPnPSearchQueryTests.cs -------------------------------------------------------------------------------- /Tests/Site/AddPnPRoleDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/AddPnPRoleDefinitionTests.cs -------------------------------------------------------------------------------- /Tests/Site/AddPnPSiteCollectionAdminTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/AddPnPSiteCollectionAdminTests.cs -------------------------------------------------------------------------------- /Tests/Site/AddPnPTeamsTeamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/AddPnPTeamsTeamTests.cs -------------------------------------------------------------------------------- /Tests/Site/EnablePnPCommSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/EnablePnPCommSiteTests.cs -------------------------------------------------------------------------------- /Tests/Site/GetPnPAuditingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/GetPnPAuditingTests.cs -------------------------------------------------------------------------------- /Tests/Site/GetPnPRoleDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/GetPnPRoleDefinitionTests.cs -------------------------------------------------------------------------------- /Tests/Site/GetPnPSiteCollectionAdminTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/GetPnPSiteCollectionAdminTests.cs -------------------------------------------------------------------------------- /Tests/Site/GetPnPSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/GetPnPSiteTests.cs -------------------------------------------------------------------------------- /Tests/Site/InstallPnPSolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/InstallPnPSolutionTests.cs -------------------------------------------------------------------------------- /Tests/Site/NewPnPSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/NewPnPSiteTests.cs -------------------------------------------------------------------------------- /Tests/Site/RemovePnPRoleDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/RemovePnPRoleDefinitionTests.cs -------------------------------------------------------------------------------- /Tests/Site/SetPnPAppSideLoadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/SetPnPAppSideLoadingTests.cs -------------------------------------------------------------------------------- /Tests/Site/SetPnPAuditingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/SetPnPAuditingTests.cs -------------------------------------------------------------------------------- /Tests/Site/SetPnPSiteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/SetPnPSiteTests.cs -------------------------------------------------------------------------------- /Tests/Site/UninstallPnPSolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Site/UninstallPnPSolutionTests.cs -------------------------------------------------------------------------------- /Tests/SiteDesigns/AddPnPSiteDesignTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/SiteDesigns/AddPnPSiteDesignTests.cs -------------------------------------------------------------------------------- /Tests/SiteDesigns/AddPnPSiteScriptTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/SiteDesigns/AddPnPSiteScriptTests.cs -------------------------------------------------------------------------------- /Tests/SiteDesigns/GetPnPSiteDesignTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/SiteDesigns/GetPnPSiteDesignTests.cs -------------------------------------------------------------------------------- /Tests/SiteDesigns/GetPnPSiteScriptTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/SiteDesigns/GetPnPSiteScriptTests.cs -------------------------------------------------------------------------------- /Tests/SiteDesigns/SetPnPSiteDesignTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/SiteDesigns/SetPnPSiteDesignTests.cs -------------------------------------------------------------------------------- /Tests/SiteDesigns/SetPnPSiteScriptTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/SiteDesigns/SetPnPSiteScriptTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/ExportPnPTaxonomyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/ExportPnPTaxonomyTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/GetPnPTaxonomyItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/GetPnPTaxonomyItemTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/GetPnPTaxonomySessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/GetPnPTaxonomySessionTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/GetPnPTermGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/GetPnPTermGroupTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/GetPnPTermSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/GetPnPTermSetTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/GetPnPTermTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/GetPnPTermTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/ImportPnPTaxonomyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/ImportPnPTaxonomyTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/ImportPnPTermSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/ImportPnPTermSetTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/NewPnPTermGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/NewPnPTermGroupTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/NewPnPTermLabelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/NewPnPTermLabelTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/NewPnPTermSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/NewPnPTermSetTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/NewPnPTermTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/NewPnPTermTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/RemovePnPTaxonomyItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/RemovePnPTaxonomyItemTests.cs -------------------------------------------------------------------------------- /Tests/Taxonomy/RemovePnPTermGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Taxonomy/RemovePnPTermGroupTests.cs -------------------------------------------------------------------------------- /Tests/TestCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/TestCommon.cs -------------------------------------------------------------------------------- /Tests/UnitTests-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/UnitTests-Readme.md -------------------------------------------------------------------------------- /Tests/Utilities/SendPnPMailTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Utilities/SendPnPMailTests.cs -------------------------------------------------------------------------------- /Tests/WebParts/GetPnPWebPartPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/WebParts/GetPnPWebPartPropertyTests.cs -------------------------------------------------------------------------------- /Tests/WebParts/GetPnPWebPartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/WebParts/GetPnPWebPartTests.cs -------------------------------------------------------------------------------- /Tests/WebParts/GetPnPWebPartXmlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/WebParts/GetPnPWebPartXmlTests.cs -------------------------------------------------------------------------------- /Tests/WebParts/RemovePnPWebPartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/WebParts/RemovePnPWebPartTests.cs -------------------------------------------------------------------------------- /Tests/WebParts/SetPnPWebPartPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/WebParts/SetPnPWebPartPropertyTests.cs -------------------------------------------------------------------------------- /Tests/Webs/AddPnPIndexedPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/AddPnPIndexedPropertyTests.cs -------------------------------------------------------------------------------- /Tests/Webs/GetPnPAvailableLanguageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/GetPnPAvailableLanguageTests.cs -------------------------------------------------------------------------------- /Tests/Webs/GetPnPIndexedPropertyKeysTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/GetPnPIndexedPropertyKeysTests.cs -------------------------------------------------------------------------------- /Tests/Webs/GetPnPPropertyBagTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/GetPnPPropertyBagTests.cs -------------------------------------------------------------------------------- /Tests/Webs/GetPnPRequestAccessEmailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/GetPnPRequestAccessEmailsTests.cs -------------------------------------------------------------------------------- /Tests/Webs/GetPnPSubWebsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/GetPnPSubWebsTests.cs -------------------------------------------------------------------------------- /Tests/Webs/GetPnPWebTemplatesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/GetPnPWebTemplatesTests.cs -------------------------------------------------------------------------------- /Tests/Webs/GetPnPWebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/GetPnPWebTests.cs -------------------------------------------------------------------------------- /Tests/Webs/InvokePnPWebActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/InvokePnPWebActionTests.cs -------------------------------------------------------------------------------- /Tests/Webs/NewPnPWebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/NewPnPWebTests.cs -------------------------------------------------------------------------------- /Tests/Webs/RemovePnPIndexedPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/RemovePnPIndexedPropertyTests.cs -------------------------------------------------------------------------------- /Tests/Webs/RemovePnPPropertyBagValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/RemovePnPPropertyBagValueTests.cs -------------------------------------------------------------------------------- /Tests/Webs/RemovePnPWebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/RemovePnPWebTests.cs -------------------------------------------------------------------------------- /Tests/Webs/RequestPnPReIndexWebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/RequestPnPReIndexWebTests.cs -------------------------------------------------------------------------------- /Tests/Webs/SetPnPIndexedPropertiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/SetPnPIndexedPropertiesTests.cs -------------------------------------------------------------------------------- /Tests/Webs/SetPnPPropertyBagValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/SetPnPPropertyBagValueTests.cs -------------------------------------------------------------------------------- /Tests/Webs/SetPnPRequestAccessEmailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/SetPnPRequestAccessEmailsTests.cs -------------------------------------------------------------------------------- /Tests/Webs/SetPnPWebPermissionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/SetPnPWebPermissionTests.cs -------------------------------------------------------------------------------- /Tests/Webs/SetPnPWebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-PowerShell/HEAD/Tests/Webs/SetPnPWebTests.cs -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 3.29.2101.0 --------------------------------------------------------------------------------