├── .gitattributes ├── .gitignore ├── Feature activation blocker ├── DisableFeatureActivation.sln ├── DisableFeatureActivation │ ├── CONTROLTEMPLATES │ │ ├── JDP │ │ │ ├── JDPDisableFeatureActivation.ascx │ │ │ ├── JDPDisableFeatureActivation.ascx.cs │ │ │ └── JDPDisableFeatureActivation.ascx.designer.cs │ │ └── SharePointProjectItem.spdata │ ├── DisableFeatureActivation.csproj │ ├── DisableFeatureActivationDelegateControl │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Features │ │ └── Control │ │ │ ├── Control.EventReceiver.cs │ │ │ ├── Control.Template.xml │ │ │ └── Control.feature │ ├── Package │ │ ├── Package.Template.xml │ │ └── Package.package │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.cs │ └── key.snk ├── Readme.md ├── installation scripts │ ├── DisableWebApplicationFeature.ps1 │ └── EnableWebApplicationFeature.ps1 ├── release documents │ └── MSODeploymentGuide.docx └── solutions artifacts │ ├── DeploymentManifest.xml │ └── DisableFeatureActivation.wsp ├── InfoPath ├── Guidance │ ├── Decks │ │ ├── Office 365 JDP InfoPath - Post migration guidance.pptx │ │ ├── Office 365 JDP InfoPath - Self-service manual.pptx │ │ └── readme.md │ ├── Patterns │ │ ├── Add or remove user from site groups.md │ │ ├── Cascading data load.md │ │ ├── Load existing item in form.md │ │ ├── Populating fields on form load-read list data.md │ │ ├── Populating fields on form load-read list information.md │ │ ├── Populating fields on form load-set user information.md │ │ ├── Read data collection and set multiple controls.md │ │ ├── Retrieving user data.md │ │ ├── Submit the form via code.md │ │ ├── Switching view after form submission.md │ │ ├── Upload or Delete Attachments.md │ │ └── images │ │ │ ├── Common │ │ │ ├── P11_EditItem.png │ │ │ ├── P3_ReadListItemData.png │ │ │ └── P4_SavedDataOnSubmit.png │ │ │ ├── Forms │ │ │ ├── P10_CheckInSiteGroup.png │ │ │ ├── P11_LoadExistingItem.png │ │ │ ├── P1_SetCurrentUser.png │ │ │ ├── P1_SetCurrentUserDesign.png │ │ │ ├── P2_ReadListDataDesign.png │ │ │ ├── P2_SetListDataToFormControl.png │ │ │ ├── P3_SetListDataToForm.png │ │ │ ├── P4_SubmitData.png │ │ │ ├── P5_SwitchedViewAfterSave.png │ │ │ ├── P6_BtnGetManager.png │ │ │ ├── P6_PopulatingNameAndManager.png │ │ │ ├── P7_AddNewRow.png │ │ │ ├── P7_EnterDataInMultipleRows.png │ │ │ ├── P7_UpdatePanelAndRepeaterControls.png │ │ │ ├── P8_DropDownControlCountry.png │ │ │ ├── P8_DropDownControlState.png │ │ │ ├── P9_AfterDeletionOfFile.png │ │ │ ├── P9_BtnUploadControl.png │ │ │ ├── P9_FormOnSuccessfulUpload.png │ │ │ └── P9_RptDeleteLinkButton.png │ │ │ ├── IP │ │ │ ├── P10_CheckInSiteGroup.png │ │ │ ├── P10_UserAddedToOwnerSiteGroup.png │ │ │ ├── P1_SetCurrentUser.png │ │ │ ├── P2_ReadListData.png │ │ │ ├── P2_SetListDataToFormControl.png │ │ │ ├── P3_SetListDataToForm.png │ │ │ ├── P4_DataConnectionForSubmit.png │ │ │ ├── P4_SavedDataOnSubmit.png │ │ │ ├── P4_SubmitData.png │ │ │ ├── P5_SwitchedViewAfterSave.png │ │ │ ├── P6_DataConnectionForUserInformation.png │ │ │ ├── P6_PopulatingNameAndManager.png │ │ │ ├── P7_AddNewRow.png │ │ │ ├── P7_MultipleRowDataSave.png │ │ │ ├── P7_RepeatTablesAdditionDeletion.png │ │ │ ├── P8_DataConnectionEmpCity.png │ │ │ ├── P8_DataConnectionRestwebserviceState.png │ │ │ ├── P8_PopulatingDDLCityBasedOnDDLState1.png │ │ │ ├── P8_PopulatingDDLCityBasedOnDDLState2.png │ │ │ ├── P8_PopulatingDDLStateBasedOnDDLCountry1.png │ │ │ ├── P8_PopulatingDDLStateBasedOnDDLCountry2.png │ │ │ ├── P9_AddNewUploadControl.png │ │ │ ├── P9_DeletingFileFromDocLib.png │ │ │ └── P9_FormOnSuccessfulUpload.png │ │ │ ├── InfoPathForm.png │ │ │ ├── KO │ │ │ ├── P10_CheckInSiteGroup.png │ │ │ ├── P10_UserAddedToSiteGroup.png │ │ │ ├── P11_LoadExistingItem.png │ │ │ ├── P1_SetCurrentUser.png │ │ │ ├── P2_SetListDataToFormControl.png │ │ │ ├── P3_SetListDataToForm.png │ │ │ ├── P4_SubmitData.png │ │ │ ├── P5_SwitchedViewAfterSave.png │ │ │ ├── P6_PopulatingNameAndManager.png │ │ │ ├── P7_AddNewRow.png │ │ │ ├── P7_EnterDataInMultipleRows.png │ │ │ ├── P7_FormatOfMultipleDataSaved.png │ │ │ ├── P8_PopulatingDDLCityBasedOnDDLState1.png │ │ │ ├── P8_PopulatingDDLCityBasedOnDDLState2.png │ │ │ ├── P8_PopulatingDDLStateBasedOnDDLCountry1.png │ │ │ ├── P8_PopulatingDDLStateBasedOnDDLCountry2.png │ │ │ ├── P9_AfterDeletionOfFile.png │ │ │ ├── P9_AttachmentIdOfFilesUploaded.png │ │ │ ├── P9_FilesCorrespondingToAttachmentId.png │ │ │ └── P9_FormOnSuccessfulUpload.png │ │ │ └── MVC │ │ │ ├── P10_CheckInSiteGroup.png │ │ │ ├── P11_LoadExistingItem.png │ │ │ ├── P1_SetCurrentUser.png │ │ │ ├── P1_SetCurrentUserView.png │ │ │ ├── P2_ReadListDataView.png │ │ │ ├── P2_SetListDataToFormControl.png │ │ │ ├── P3_SetListDataToForm.png │ │ │ ├── P4_SubmitData.png │ │ │ ├── P5_SwitchedViewAfterSave.png │ │ │ ├── P6_ButtonInputAndTextBoxControl.png │ │ │ ├── P6_PopulatingNameAndManager.png │ │ │ ├── P7_TableAndHyperlinkControl.png │ │ │ ├── P8_DropDownListForControlsCorrespondtoCountry.png │ │ │ ├── P8_DropDownListForControlsCorrespondtoState.png │ │ │ ├── P9_AfterDeletionOfFile.png │ │ │ ├── P9_DeleteAttachmentControls.png │ │ │ ├── P9_FormOnSuccessfulUpload.png │ │ │ └── P9_InputFileCntrl.png │ └── readme.md ├── Migration │ ├── EmpRegConsole │ │ ├── EmpRegConsole.sln │ │ ├── EmpRegConsole │ │ │ ├── App.config │ │ │ ├── EmpRegConsole.csproj │ │ │ ├── Employees.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── readme.md │ ├── OWSSVR │ │ ├── images │ │ │ ├── App_FormRules1.png │ │ │ ├── App_FormSchema1.png │ │ │ ├── App_FormSchema2.png │ │ │ ├── App_SPListDataConnection1.png │ │ │ ├── App_SPListDataConnection2.png │ │ │ ├── App_SPListDataConnection3.png │ │ │ ├── App_SPListDataConnection4.png │ │ │ ├── App_SPListDataConnection5.png │ │ │ ├── App_SPListDataConnection6.png │ │ │ ├── App_SPListDataConnection7.png │ │ │ ├── App_SPListDataConnection8.png │ │ │ ├── App_SPListDataConnection9.png │ │ │ └── App_SampleForm.png │ │ └── readme.md │ ├── PeoplePickerRemediation.Console │ │ ├── GeneratePeoplePickerCSOMInput.ps1 │ │ ├── PeoplePickerDataFix_14_03_2016_12_26_50.csv │ │ ├── PeoplePickerRemediation.Console.sln │ │ ├── PeoplePickerRemediation.Console │ │ │ ├── App.config │ │ │ ├── CamlQueryExtensions.cs │ │ │ ├── Common │ │ │ │ ├── Base │ │ │ │ │ └── ElementBase.cs │ │ │ │ ├── CSV │ │ │ │ │ ├── CSVSplit.cs │ │ │ │ │ ├── CsvMerge.cs │ │ │ │ │ ├── ExportCsv.cs │ │ │ │ │ └── ImportCSV.cs │ │ │ │ └── Utilities │ │ │ │ │ ├── ArrayUtility.cs │ │ │ │ │ ├── CommonUtility.cs │ │ │ │ │ ├── ExceptionCSV.cs │ │ │ │ │ ├── FileUtility.cs │ │ │ │ │ ├── Logger.cs │ │ │ │ │ ├── MemoryOptimizationUtility.cs │ │ │ │ │ └── StringUtility.cs │ │ │ ├── Constants.cs │ │ │ ├── ContentIterator.cs │ │ │ ├── Helper.cs │ │ │ ├── Logger.cs │ │ │ ├── PeoplePickerRemediation.Console.csproj │ │ │ ├── PeoplePickerRemediation.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SharePointContext.cs │ │ │ ├── TokenHelper.cs │ │ │ └── packages.config │ │ ├── PeoplePickerReport.csv │ │ ├── Readme.md │ │ └── images │ │ │ ├── InputFile.png │ │ │ └── InputFileValidation.png │ ├── UdcxRemediation.Console │ │ ├── Readme.md │ │ ├── UDCXReport.csv │ │ ├── UDCXStatusReport_28_12_2015_10_24_59.csv │ │ ├── Udcx remediation.docx │ │ ├── UdcxRemediation.Console.sln │ │ └── UdcxRemediation.Console │ │ │ ├── App.config │ │ │ ├── CommentUDCXFileNodes.cs │ │ │ ├── Common │ │ │ ├── Base │ │ │ │ └── ElementBase.cs │ │ │ ├── CSV │ │ │ │ ├── CSVSplit.cs │ │ │ │ ├── CsvMerge.cs │ │ │ │ ├── ExportCsv.cs │ │ │ │ └── ImportCSV.cs │ │ │ └── Utilities │ │ │ │ ├── ArrayUtility.cs │ │ │ │ ├── CommonUtility.cs │ │ │ │ ├── ExceptionCSV.cs │ │ │ │ ├── FileUtility.cs │ │ │ │ ├── Logger.cs │ │ │ │ ├── MemoryOptimizationUtility.cs │ │ │ │ └── StringUtility.cs │ │ │ ├── Constants.cs │ │ │ ├── Helper.cs │ │ │ ├── Logger.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SharePointContext.cs │ │ │ ├── TokenHelper.cs │ │ │ ├── UdcxRemediation.Console.csproj │ │ │ └── packages.config │ └── readme.md ├── Reference │ ├── EmployeeRegistration │ │ ├── EmpReg.xsn │ │ ├── EmpReg │ │ │ ├── EmpReg.csproj │ │ │ ├── FormCode.Designer.cs │ │ │ ├── FormCode.Designer.xml │ │ │ ├── FormCode.cs │ │ │ ├── InfoPath.snk │ │ │ ├── Project │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── readme.md │ └── readme.md ├── Samples │ ├── EmployeeRegistration.Forms │ │ ├── Architecture.pptx │ │ ├── EmployeeRegistration.Forms.sln │ │ ├── EmployeeRegistration.Forms │ │ │ ├── AppIcon.png │ │ │ ├── AppManifest.xml │ │ │ ├── EmployeeRegistration.Forms.csproj │ │ │ └── app.config │ │ ├── EmployeeRegistration.FormsWeb │ │ │ ├── Assets │ │ │ │ ├── AppLauncher.js │ │ │ │ └── EmployeeRegistration.dwp │ │ │ ├── EmployeeRegistration.FormsWeb.csproj │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Pages │ │ │ │ ├── Default.aspx │ │ │ │ ├── Default.aspx.cs │ │ │ │ ├── Default.aspx.designer.cs │ │ │ │ ├── Thanks.aspx │ │ │ │ ├── Thanks.aspx.cs │ │ │ │ └── Thanks.aspx.designer.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ │ ├── _references.js │ │ │ │ ├── app.js │ │ │ │ ├── jquery-1.9.1.intellisense.js │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ └── jquery-1.9.1.min.map │ │ │ ├── SetupManager.cs │ │ │ ├── SharePointContext.cs │ │ │ ├── TokenHelper.cs │ │ │ ├── Utilities.cs │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ └── packages.config │ │ └── readme.md │ ├── EmployeeRegistration.KnockOut.SinglePageApp │ │ ├── Architecture.pptx │ │ ├── EmployeeRegistration.KnockOut.SinglePageApp.sln │ │ ├── EmployeeRegistration.KnockOut.SinglePageApp │ │ │ ├── App.config │ │ │ ├── Assets │ │ │ │ ├── Emp-EditForm.js │ │ │ │ ├── Emp-NewForm.js │ │ │ │ ├── Emp-Registration-Form-Template.js │ │ │ │ ├── Emp-Registration-Form.js │ │ │ │ ├── EmployeeRegistration.dwp │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ └── knockout-3.3.0.js │ │ │ ├── EmployeeRegistration.KnockOut.SinglePageApp.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SetupManager.cs │ │ │ ├── Utilities.cs │ │ │ └── packages.config │ │ └── readme.md │ ├── EmployeeRegistration.MVC │ │ ├── Architecture.pptx │ │ ├── EmployeeRegistration.MVC.sln │ │ ├── EmployeeRegistration.MVC │ │ │ ├── AppIcon.png │ │ │ ├── AppManifest.xml │ │ │ ├── EmployeeRegistration.MVC.csproj │ │ │ ├── app.config │ │ │ └── packages.config │ │ ├── EmployeeRegistration.MVCWeb │ │ │ ├── App_Start │ │ │ │ ├── BundleConfig.cs │ │ │ │ ├── FilterConfig.cs │ │ │ │ └── RouteConfig.cs │ │ │ ├── Assets │ │ │ │ ├── AppLauncher.js │ │ │ │ └── EmployeeRegistration.dwp │ │ │ ├── Content │ │ │ │ ├── Site.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── Controllers │ │ │ │ ├── EmployeeController.cs │ │ │ │ └── HomeController.cs │ │ │ ├── EmployeeRegistration.MVCWeb.csproj │ │ │ ├── Filters │ │ │ │ └── SharePointContextFilterAttribute.cs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Models │ │ │ │ └── Employee.cs │ │ │ ├── Project_Readme.html │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ │ ├── _references.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── employee.js │ │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ ├── modernizr-2.6.2.js │ │ │ │ ├── respond.js │ │ │ │ ├── respond.min.js │ │ │ │ └── spcontext.js │ │ │ ├── SetupManager.cs │ │ │ ├── SharePointContext.cs │ │ │ ├── TokenHelper.cs │ │ │ ├── Utilities.cs │ │ │ ├── Views │ │ │ │ ├── Employee │ │ │ │ │ ├── EmployeeForm.cshtml │ │ │ │ │ └── Thanks.cshtml │ │ │ │ ├── Home │ │ │ │ │ ├── About.cshtml │ │ │ │ │ ├── Contact.cshtml │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ └── _Layout.cshtml │ │ │ │ ├── Web.config │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── packages.config │ │ └── readme.md │ ├── Proxy.InfoPath │ │ ├── Proxy.InfoPath.sln │ │ ├── Proxy.InfoPath │ │ │ ├── InfoPath.asmx │ │ │ ├── InfoPath.asmx.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Proxy.InfoPath.csproj │ │ │ ├── SharePointContext.cs │ │ │ ├── TokenHelper.cs │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ └── packages.config │ │ └── readme.md │ └── readme.md ├── Scanning │ ├── InfoPathScraper │ │ ├── App.config │ │ ├── InfoPathScraper.csproj │ │ ├── InfoPathScraper.sln │ │ ├── Model │ │ │ ├── Feature │ │ │ │ ├── Control.cs │ │ │ │ ├── DataConnection.cs │ │ │ │ ├── DataRule.cs │ │ │ │ ├── DataValidation.cs │ │ │ │ ├── FormattingRule.cs │ │ │ │ ├── InfoPathFeature.cs │ │ │ │ ├── ManagedCode.cs │ │ │ │ ├── Mode.cs │ │ │ │ ├── ProductVersion.cs │ │ │ │ └── PublishUrl.cs │ │ │ ├── InfoPathFile.cs │ │ │ ├── InfoPathManifest.cs │ │ │ ├── InfoPathTemplate.cs │ │ │ └── InfoPathView.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Reporting │ │ │ ├── CSVReport.cs │ │ │ ├── CommandLineProcessor.cs │ │ │ ├── Report.cs │ │ │ ├── Report35.cs │ │ │ ├── Report45.cs │ │ │ └── TextReport.cs │ │ ├── Utilities │ │ │ └── BucketCounter.cs │ │ ├── packages.config │ │ └── readme.md │ ├── Scripts │ │ ├── 01_Get-InfoPathFiles.ps1 │ │ ├── 02_Scrape-InfoPathFiles.ps1 │ │ ├── 03_Get-UdcxReport.ps1 │ │ ├── 04_Parse-InfoPathReport.ps1 │ │ ├── 05_Get-InfoPathUsageInformation.ps1 │ │ ├── 06_Parse-InfoPathPeoplePickerReport.ps1 │ │ ├── 07_Get-CrossSiteWebServiceReport.ps1 │ │ ├── 08_Get-RpcCallReport.ps1 │ │ └── readme.md │ └── readme.md └── readme.md ├── JDP Remediation - CSOM ├── InputFiles │ ├── AllListTemplatesInGallery_Usage.csv │ ├── AllSiteTemplatesInGallery_Usage.csv │ ├── ContentTypes.csv │ ├── CustomFields.csv │ ├── DT-UsageFiles │ │ ├── AllContentTypeEventReceivers_Usage.csv │ │ ├── AllListTemplatesInGallery_Usage.csv │ │ ├── AllSiteTemplatesInGallery_Usage.csv │ │ ├── CTFixDefinitionNULL_Usage.csv │ │ ├── CThavingFeatureIDTag_Definition_Usage.csv │ │ ├── ContentType_Usage.csv │ │ ├── CustomFields_Usage.csv │ │ ├── CustomWorkflows_Usage.csv │ │ ├── Discovery-Pivot.xml │ │ ├── EventReceivers_Usage.csv │ │ ├── Features_Usage.csv │ │ ├── GhostedCustomFields_Usage.csv │ │ ├── ListTemplates_Usage.csv │ │ ├── MasterPage_Usage.csv │ │ ├── PageLayouts_AvailableCustomPageLayout_Usage.csv │ │ ├── PageLayouts_CustomPageLayOutUsageInPages_Usage.csv │ │ ├── SandBoxSolSaveAsTemplate_Usage.csv │ │ ├── SandboxSolutions_Usage.csv │ │ ├── SiteDefinitions_Usage.csv │ │ └── WebParts_Usage.csv │ ├── EventReceivers_Usage.csv │ ├── Features.csv │ ├── Features_Usage.csv │ ├── MasterPage_Usage.csv │ ├── PreMT-ScanFiles │ │ ├── PreMT-Pivot.xml │ │ ├── PreMT_AllContentTypeEventReceivers_Usage.csv │ │ ├── PreMT_AllListTemplatesInGallery_Usage.csv │ │ ├── PreMT_AllSiteTemplatesInGallery_Usage.csv │ │ ├── PreMT_CTFixMissingDefinition.csv │ │ ├── PreMT_CThavingFeatureIDTag_Definition.csv │ │ ├── PreMT_MasterPage_Usage.csv │ │ ├── PreMT_MissingAssembly.csv │ │ ├── PreMT_MissingConfigDBFeatures.csv │ │ ├── PreMT_MissingContentType.csv │ │ ├── PreMT_MissingEventReceiver.csv │ │ ├── PreMT_MissingFeature.csv │ │ ├── PreMT_MissingFieldTypes.csv │ │ ├── PreMT_MissingLists.csv │ │ ├── PreMT_MissingSetupFile.csv │ │ ├── PreMT_MissingSiteColumn.csv │ │ ├── PreMT_MissingSiteDefinition.csv │ │ ├── PreMT_MissingWebPart.csv │ │ └── PreMT_MissingWorkflowAssociations.csv │ ├── PreMT_AllListTemplatesInGallery_Usage.csv │ ├── PreMT_AllSiteTemplatesInGallery_Usage.csv │ ├── PreMT_MasterPage_Usage.csv │ ├── PreMT_MissingEventReceiver.csv │ ├── PreMT_MissingFeature.csv │ ├── PreMT_MissingSetupFile.csv │ ├── PreMT_MissingWebPart.csv │ ├── PreMT_MissingWorkflowAssociations.csv │ ├── Readme.md │ └── WebParts_Usage.csv ├── JDP.Remediation.Console │ ├── JDP.Remediation.Console.sln │ ├── JDP.Remediation.Console │ │ ├── AddWebPart.cs │ │ ├── App.config │ │ ├── Common │ │ │ ├── Base │ │ │ │ └── ElementBase.cs │ │ │ ├── CSV │ │ │ │ ├── CSVSplit.cs │ │ │ │ ├── CsvMerge.cs │ │ │ │ ├── ExportCsv.cs │ │ │ │ └── ImportCSV.cs │ │ │ └── Utilities │ │ │ │ ├── ArrayUtility.cs │ │ │ │ ├── CommonUtility.cs │ │ │ │ ├── ExceptionCSV.cs │ │ │ │ ├── FileUtility.cs │ │ │ │ ├── Logger.cs │ │ │ │ ├── MemoryOptimizationUtility.cs │ │ │ │ └── StringUtility.cs │ │ ├── Constants.cs │ │ ├── DeleteMissingEventReceivers.cs │ │ ├── DeleteMissingFeatures.cs │ │ ├── DeleteMissingSetupFiles.cs │ │ ├── DeleteMissingWebparts.cs │ │ ├── DeleteMissingWorkflowAssociations.cs │ │ ├── Dlls │ │ │ ├── Microsoft.Deployment.Compression.Cab.dll │ │ │ ├── Microsoft.Deployment.Compression.dll │ │ │ └── Mono.Cecil.dll │ │ ├── DownloadAndModifyListTemplate.cs │ │ ├── DownloadAndModifySiteTemplate.cs │ │ ├── GenerateColumnAndTypeUsageReport.cs │ │ ├── GenerateNonDefaultMasterPageUsageReport.cs │ │ ├── GeneratePivotReport.cs │ │ ├── GenerateSecurityGroupReport.cs │ │ ├── GenerateSiteCollectionReport.cs │ │ ├── Helper.cs │ │ ├── JDP.Remediation.Console.csproj │ │ ├── Logger.cs │ │ ├── ManageMaintenanceBanners.cs │ │ ├── PivotHelper │ │ │ ├── ChartHelper.cs │ │ │ ├── CommonHelper.cs │ │ │ ├── PivotViewHelper.cs │ │ │ └── SummaryViewHelper.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── ReplaceMasterPage.cs │ │ ├── ReplaceWebPart.cs │ │ ├── ResetDeviceChannelMappingFiles.cs │ │ ├── Scripts │ │ │ └── embedMaintenanceBanner.js │ │ ├── SharePointContext.cs │ │ ├── TokenHelper.cs │ │ ├── TokenHelper.vb │ │ ├── Web References │ │ │ └── WebPartPagesService │ │ │ │ ├── Reference.cs │ │ │ │ ├── Reference.map │ │ │ │ ├── webpartpages.disco │ │ │ │ └── webpartpages.wsdl │ │ ├── WebPartProperties.cs │ │ ├── WebPartPropertiesEntity.cs │ │ ├── WebPartUsage.cs │ │ ├── XMLs │ │ │ ├── Discovery-Pivot.xml │ │ │ └── PreMT-Pivot.xml │ │ └── packages.config │ ├── Readme.md │ └── images │ │ ├── AddOOTBtoPage.PNG │ │ ├── ChoiceOfOperation1.PNG │ │ ├── ChoiceOfOperation3.PNG │ │ ├── ChoiceOfOperations.PNG │ │ ├── ChoiceOfOperations2.PNG │ │ ├── ERCleanUp.PNG │ │ ├── FeatureCleanUp.PNG │ │ ├── GenerateColumnORFieldAndTypeUsageReport.PNG │ │ ├── GenerateListTemplateReport.PNG │ │ ├── GenerateNonDefaultMasterPageUsageReport.PNG │ │ ├── GeneratePivotReport.PNG │ │ ├── GenerateSiteCollectionReport.PNG │ │ ├── GenerateSiteTemplateReport.PNG │ │ ├── GenerateWebPartProperties.PNG │ │ ├── GenerateWebPartUsage.PNG │ │ ├── JDP.PNG │ │ ├── ListTemplateCleanUp.PNG │ │ ├── MaintenanceBanner.PNG │ │ ├── MaintenanceBannerOption1.PNG │ │ ├── ManageMaintenanceBanners.PNG │ │ ├── PivotOption1.PNG │ │ ├── PivotOption2.PNG │ │ ├── Pivot_PieChart.PNG │ │ ├── Pivot_Slice.PNG │ │ ├── ReplaceFTCWebpart.PNG │ │ ├── ReplaceMasterPage.PNG │ │ ├── ResetDeviceChannelMapping.PNG │ │ ├── SetupFileCleanUp.PNG │ │ ├── WFAssociationCleanUp.PNG │ │ └── WebPartCleanUp.PNG ├── Readme.md └── images │ ├── ChoiceOfOperation1.PNG │ ├── ChoiceOfOperation3.PNG │ ├── ChoiceOfOperations.PNG │ ├── ChoiceOfOperations2.PNG │ ├── JDP.PNG │ ├── MaintenanceBanner.PNG │ ├── PivotOption1.PNG │ └── PivotOption2.PNG ├── JDP.Transformation.HttpCommands ├── JDP.Transformation.HttpCommands.Console │ ├── App.config │ ├── JDP.Transformation.HttpCommands.Console.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── JDP.Transformation.HttpCommands.sln ├── JDP.Transformation.HttpCommands │ ├── AddAnApp.cs │ ├── AppCatalogEntries.cs │ ├── AppInv.cs │ ├── AuthenticationType.cs │ ├── JDP.Transformation.HttpCommands.csproj │ ├── OpenSiteClosedByPolicy.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemoteOperation.cs │ ├── RequestActivateSandboxSolution.cs │ ├── RequestAppRegNew.cs │ ├── RequestDeactivateSandboxSolution.cs │ └── Utilities.cs └── README.md ├── LICENSE ├── PnP Transformation Process ├── Introduction to PnP transformation Process.pptx ├── ReadMe.md ├── Samples │ ├── PnP Transformation - Solution Assessment Report - Contoso.docx │ ├── PnP Transformation - Solution Assessment Report - Contoso.pptx │ ├── PnP Transformation - Solution Design Report - Contoso.docx │ ├── PnP Transformation - Solution Design Report - Contoso.pptx │ ├── PnP Transformation General Kickoff - Contoso.pptx │ ├── PnP Transformation process - Intro - Contoso.pptx │ └── Preparedness - Development and ALM.pptx └── Templates │ ├── Architecture Design Phase Kick Off.pptx │ ├── Kickoff Template.pptx │ ├── Preparedness Presentation Template.pptx │ ├── Solution Assessment Report Document Template.docx │ ├── Solution Assessment Report Presentation Template.pptx │ ├── Solution Design Report Document Template.docx │ └── Solution Design Report Presentation Template.pptx ├── README.md ├── Reference Material ├── Contoso.Intranet │ ├── Contoso.Intranet.sln │ ├── Contoso.Intranet │ │ ├── CONTROLTEMPLATES │ │ │ ├── Contoso.Intranet │ │ │ │ ├── ContosoMasterPageControl.ascx │ │ │ │ ├── ContosoMasterPageControl.ascx.cs │ │ │ │ ├── ContosoMasterPageControl.ascx.designer.cs │ │ │ │ ├── ContosoPageLayoutControl.ascx │ │ │ │ ├── ContosoPageLayoutControl.ascx.cs │ │ │ │ └── ContosoPageLayoutControl.ascx.designer.cs │ │ │ └── SharePointProjectItem.spdata │ │ ├── Code │ │ │ └── SiteManager.cs │ │ ├── Contoso.Intranet.csproj │ │ ├── Features │ │ │ ├── FarmDefault │ │ │ │ ├── FarmDefault.Template.xml │ │ │ │ └── FarmDefault.feature │ │ │ ├── SiteDefault │ │ │ │ ├── SiteDefault.Template.xml │ │ │ │ └── SiteDefault.feature │ │ │ ├── SiteDefaultPublishing │ │ │ │ ├── SiteDefaultPublishing.Template.xml │ │ │ │ └── SiteDefaultPublishing.feature │ │ │ ├── WebDefault │ │ │ │ ├── WebDefault.EventReceiver.cs │ │ │ │ ├── WebDefault.Template.xml │ │ │ │ └── WebDefault.feature │ │ │ └── WebDefaultPublishing │ │ │ │ ├── WebDefaultPublishing.EventReceiver.cs │ │ │ │ ├── WebDefaultPublishing.Template.xml │ │ │ │ └── WebDefaultPublishing.feature │ │ ├── Package │ │ │ ├── Package.Template.xml │ │ │ └── Package.package │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SP │ │ │ ├── ContentTypeBinding │ │ │ │ └── CTBPages │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ ├── ContentTypes │ │ │ │ ├── ContosoDocument │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ │ ├── ContosoWebPage │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ │ └── OfficeDocuments │ │ │ │ │ ├── ContosoTemplate.docx │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ ├── Fields │ │ │ │ └── ContosoStatus │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ ├── ListTemplate │ │ │ │ └── LTContosoLibrary │ │ │ │ │ ├── ContosoLibraryContentType │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ │ │ ├── ContosoLibraryInstance │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ │ │ ├── EditDlg.htm │ │ │ │ │ ├── Elements.xml │ │ │ │ │ ├── FileDlg.htm │ │ │ │ │ ├── Repair.aspx │ │ │ │ │ ├── Schema.xml │ │ │ │ │ ├── SharePointProjectItem.spdata │ │ │ │ │ └── Upload.aspx │ │ │ ├── Modules │ │ │ │ ├── MOContosoDocument │ │ │ │ │ ├── ContosoDocument.docx │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ │ ├── MOMasterPage │ │ │ │ │ ├── Elements.xml │ │ │ │ │ ├── SharePointProjectItem.spdata │ │ │ │ │ └── contoso.master │ │ │ │ ├── MOPageLayouts │ │ │ │ │ ├── ContosoWelcomeLinks.aspx │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ │ └── MOWelcomePagePublishing │ │ │ │ │ ├── Elements.xml │ │ │ │ │ ├── SharePointProjectItem.spdata │ │ │ │ │ └── default.aspx │ │ │ ├── PropertyBag │ │ │ │ ├── PBWebTemplateStamp │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ │ ├── PBWebTemplateStampPublishing │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ │ └── PBWebTemplateStampPublishingSub │ │ │ │ │ ├── Elements.xml │ │ │ │ │ └── SharePointProjectItem.spdata │ │ │ ├── WebParts │ │ │ │ ├── TeaserWebPart │ │ │ │ │ ├── Elements.xml │ │ │ │ │ ├── SharePointProjectItem.spdata │ │ │ │ │ ├── TeaserWebPart.ascx │ │ │ │ │ ├── TeaserWebPart.ascx.cs │ │ │ │ │ ├── TeaserWebPart.ascx.g.cs │ │ │ │ │ └── TeaserWebPart.webpart │ │ │ │ └── WelcomeWebPart │ │ │ │ │ ├── Elements.xml │ │ │ │ │ ├── SharePointProjectItem.spdata │ │ │ │ │ ├── WelcomeWebPart.ascx │ │ │ │ │ ├── WelcomeWebPart.ascx.cs │ │ │ │ │ ├── WelcomeWebPart.ascx.g.cs │ │ │ │ │ └── WelcomeWebPart.webpart │ │ │ └── WebTemplates │ │ │ │ ├── WTContoso │ │ │ │ ├── Elements.xml │ │ │ │ ├── SharePointProjectItem.spdata │ │ │ │ └── onet.xml │ │ │ │ └── WTContosoPublishing │ │ │ │ ├── Elements.xml │ │ │ │ ├── SharePointProjectItem.spdata │ │ │ │ └── onet.xml │ │ └── key.snk │ └── readme.md └── readme.md ├── Transformation Tool - CSOM ├── Readme.md ├── Transformation.CustomElements.sln └── Transformation.PowerShell │ ├── Base │ ├── Elementbase.cs │ └── TrasnformationPowerShellCmdlet.cs │ ├── Common │ ├── AuthenticationHelper.cs │ ├── CSV │ │ ├── ExportCSV.cs │ │ └── ImportCSV.cs │ ├── Constants.cs │ └── Utilities │ │ ├── ArrayUtility.cs │ │ ├── ExceptionCSV.cs │ │ ├── FileUtility.cs │ │ ├── Logger.cs │ │ └── StringUtility.cs │ ├── DLL │ └── OfficeDevPnP.Core.dll │ ├── GhostingAndUnGhosting │ ├── DownloadFile.cs │ ├── GhostingAndUnGhostingBase.cs │ ├── GhostingAndUnGhostingHelper.cs │ ├── UnGhostFile-Copy.cs │ └── UnGhostFile-Move.cs │ ├── ListMigration │ ├── ListMigrate-CSV.cs │ ├── ListMigrate-Web.cs │ ├── ListMigrationBase.cs │ └── ListMigrationHelper.cs │ ├── MasterPage │ ├── MasterPageBase.cs │ ├── MasterPageHelper.cs │ ├── UpdateMasterPage-DiscoveryUsage.cs │ ├── UpdateMasterPage-SiteCollection.cs │ └── UpdateMasterPage-Web.cs │ ├── PageLayouts │ ├── PageLayoutBase.cs │ ├── PageLayoutHelper.cs │ ├── UpdatePageLayout-DiscoveryUsage.cs │ ├── UpdatePageLayout-SiteCollection.cs │ └── UpdatePageLayout-Web.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── SiteColumnAndContentTypes │ ├── AddSiteColumnToContentType-CSV.cs │ ├── AddSiteColumnToContentType-Web.cs │ ├── CreateContentType-CSV.cs │ ├── CreateContentType-Web.cs │ ├── CreateSiteColumn-CSV.cs │ ├── CreateSiteColumn-Web.cs │ ├── RemoveSiteColumnByID-CSV.cs │ ├── RemoveSiteColumnByID-Web.cs │ ├── RemoveSiteColumnByType-CSV.cs │ ├── RemoveSiteColumnByType-Web.cs │ ├── ReplaceContentTypeInList-CSV.cs │ ├── ReplaceContentTypeInList-Web.cs │ ├── SiteColumnAndContentTypeBase.cs │ └── SiteColumnAndContentTypeHelper.cs │ ├── Transformation.PowerShell.csproj │ ├── Web References │ └── WebPartPagesService │ │ ├── Reference.cs │ │ ├── Reference.map │ │ ├── webpartpages.disco │ │ └── webpartpages.wsdl │ ├── WebPart │ ├── AddWebPart.cs │ ├── AddWebPartByUsageCSV.cs │ ├── ConfigureNewWebPartXml.cs │ ├── DeleteWebPart-CSV.CS │ ├── DeleteWebPart.cs │ ├── DeleteWebPartByUsageCSV.cs │ ├── GetWebPartProperties-CSV.cs │ ├── GetWebPartProperties.cs │ ├── GetWebPartPropertiesByUsageCSV.cs │ ├── GetWebPartUsage.cs │ ├── GetWebPartsByWeb.cs │ ├── ReplaceWebPart.cs │ ├── ReplaceWebPartByUsageCSV.cs │ ├── TransformWebPartByWeb.cs │ ├── UploadAppInAppCatalog.cs │ ├── UploadDependencyFile.cs │ ├── WebPartPropertiesEntity.cs │ ├── WebPartTransformationBase.cs │ └── WebPartTransformationHelper.cs │ └── app.config └── readme-template.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/.gitignore -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation.sln -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/CONTROLTEMPLATES/JDP/JDPDisableFeatureActivation.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/CONTROLTEMPLATES/JDP/JDPDisableFeatureActivation.ascx -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/CONTROLTEMPLATES/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/CONTROLTEMPLATES/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/DisableFeatureActivation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/DisableFeatureActivation.csproj -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/DisableFeatureActivationDelegateControl/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/DisableFeatureActivationDelegateControl/Elements.xml -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/Features/Control/Control.EventReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/Features/Control/Control.EventReceiver.cs -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/Features/Control/Control.Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/Features/Control/Control.Template.xml -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/Features/Control/Control.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/Features/Control/Control.feature -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/Package/Package.Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/Package/Package.Template.xml -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/Package/Package.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/Package/Package.package -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/Settings.cs -------------------------------------------------------------------------------- /Feature activation blocker/DisableFeatureActivation/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/DisableFeatureActivation/key.snk -------------------------------------------------------------------------------- /Feature activation blocker/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/Readme.md -------------------------------------------------------------------------------- /Feature activation blocker/installation scripts/DisableWebApplicationFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/installation scripts/DisableWebApplicationFeature.ps1 -------------------------------------------------------------------------------- /Feature activation blocker/installation scripts/EnableWebApplicationFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/installation scripts/EnableWebApplicationFeature.ps1 -------------------------------------------------------------------------------- /Feature activation blocker/release documents/MSODeploymentGuide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/release documents/MSODeploymentGuide.docx -------------------------------------------------------------------------------- /Feature activation blocker/solutions artifacts/DeploymentManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/solutions artifacts/DeploymentManifest.xml -------------------------------------------------------------------------------- /Feature activation blocker/solutions artifacts/DisableFeatureActivation.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Feature activation blocker/solutions artifacts/DisableFeatureActivation.wsp -------------------------------------------------------------------------------- /InfoPath/Guidance/Decks/Office 365 JDP InfoPath - Post migration guidance.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Decks/Office 365 JDP InfoPath - Post migration guidance.pptx -------------------------------------------------------------------------------- /InfoPath/Guidance/Decks/Office 365 JDP InfoPath - Self-service manual.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Decks/Office 365 JDP InfoPath - Self-service manual.pptx -------------------------------------------------------------------------------- /InfoPath/Guidance/Decks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Decks/readme.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Add or remove user from site groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Add or remove user from site groups.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Cascading data load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Cascading data load.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Load existing item in form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Load existing item in form.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Populating fields on form load-read list data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Populating fields on form load-read list data.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Populating fields on form load-read list information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Populating fields on form load-read list information.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Populating fields on form load-set user information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Populating fields on form load-set user information.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Read data collection and set multiple controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Read data collection and set multiple controls.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Retrieving user data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Retrieving user data.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Submit the form via code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Submit the form via code.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Switching view after form submission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Switching view after form submission.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/Upload or Delete Attachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/Upload or Delete Attachments.md -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Common/P11_EditItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Common/P11_EditItem.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Common/P3_ReadListItemData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Common/P3_ReadListItemData.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Common/P4_SavedDataOnSubmit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Common/P4_SavedDataOnSubmit.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P10_CheckInSiteGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P10_CheckInSiteGroup.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P11_LoadExistingItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P11_LoadExistingItem.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P1_SetCurrentUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P1_SetCurrentUser.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P1_SetCurrentUserDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P1_SetCurrentUserDesign.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P2_ReadListDataDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P2_ReadListDataDesign.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P2_SetListDataToFormControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P2_SetListDataToFormControl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P3_SetListDataToForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P3_SetListDataToForm.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P4_SubmitData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P4_SubmitData.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P5_SwitchedViewAfterSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P5_SwitchedViewAfterSave.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P6_BtnGetManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P6_BtnGetManager.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P6_PopulatingNameAndManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P6_PopulatingNameAndManager.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P7_AddNewRow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P7_AddNewRow.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P7_EnterDataInMultipleRows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P7_EnterDataInMultipleRows.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P7_UpdatePanelAndRepeaterControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P7_UpdatePanelAndRepeaterControls.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P8_DropDownControlCountry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P8_DropDownControlCountry.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P8_DropDownControlState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P8_DropDownControlState.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P9_AfterDeletionOfFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P9_AfterDeletionOfFile.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P9_BtnUploadControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P9_BtnUploadControl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P9_FormOnSuccessfulUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P9_FormOnSuccessfulUpload.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/Forms/P9_RptDeleteLinkButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/Forms/P9_RptDeleteLinkButton.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P10_CheckInSiteGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P10_CheckInSiteGroup.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P10_UserAddedToOwnerSiteGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P10_UserAddedToOwnerSiteGroup.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P1_SetCurrentUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P1_SetCurrentUser.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P2_ReadListData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P2_ReadListData.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P2_SetListDataToFormControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P2_SetListDataToFormControl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P3_SetListDataToForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P3_SetListDataToForm.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P4_DataConnectionForSubmit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P4_DataConnectionForSubmit.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P4_SavedDataOnSubmit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P4_SavedDataOnSubmit.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P4_SubmitData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P4_SubmitData.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P5_SwitchedViewAfterSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P5_SwitchedViewAfterSave.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P6_DataConnectionForUserInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P6_DataConnectionForUserInformation.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P6_PopulatingNameAndManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P6_PopulatingNameAndManager.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P7_AddNewRow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P7_AddNewRow.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P7_MultipleRowDataSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P7_MultipleRowDataSave.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P7_RepeatTablesAdditionDeletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P7_RepeatTablesAdditionDeletion.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P8_DataConnectionEmpCity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P8_DataConnectionEmpCity.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P8_DataConnectionRestwebserviceState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P8_DataConnectionRestwebserviceState.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P8_PopulatingDDLCityBasedOnDDLState1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P8_PopulatingDDLCityBasedOnDDLState1.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P8_PopulatingDDLCityBasedOnDDLState2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P8_PopulatingDDLCityBasedOnDDLState2.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P8_PopulatingDDLStateBasedOnDDLCountry1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P8_PopulatingDDLStateBasedOnDDLCountry1.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P8_PopulatingDDLStateBasedOnDDLCountry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P8_PopulatingDDLStateBasedOnDDLCountry2.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P9_AddNewUploadControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P9_AddNewUploadControl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P9_DeletingFileFromDocLib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P9_DeletingFileFromDocLib.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/IP/P9_FormOnSuccessfulUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/IP/P9_FormOnSuccessfulUpload.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/InfoPathForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/InfoPathForm.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P10_CheckInSiteGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P10_CheckInSiteGroup.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P10_UserAddedToSiteGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P10_UserAddedToSiteGroup.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P11_LoadExistingItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P11_LoadExistingItem.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P1_SetCurrentUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P1_SetCurrentUser.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P2_SetListDataToFormControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P2_SetListDataToFormControl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P3_SetListDataToForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P3_SetListDataToForm.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P4_SubmitData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P4_SubmitData.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P5_SwitchedViewAfterSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P5_SwitchedViewAfterSave.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P6_PopulatingNameAndManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P6_PopulatingNameAndManager.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P7_AddNewRow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P7_AddNewRow.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P7_EnterDataInMultipleRows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P7_EnterDataInMultipleRows.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P7_FormatOfMultipleDataSaved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P7_FormatOfMultipleDataSaved.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P8_PopulatingDDLCityBasedOnDDLState1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P8_PopulatingDDLCityBasedOnDDLState1.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P8_PopulatingDDLCityBasedOnDDLState2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P8_PopulatingDDLCityBasedOnDDLState2.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P8_PopulatingDDLStateBasedOnDDLCountry1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P8_PopulatingDDLStateBasedOnDDLCountry1.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P8_PopulatingDDLStateBasedOnDDLCountry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P8_PopulatingDDLStateBasedOnDDLCountry2.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P9_AfterDeletionOfFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P9_AfterDeletionOfFile.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P9_AttachmentIdOfFilesUploaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P9_AttachmentIdOfFilesUploaded.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P9_FilesCorrespondingToAttachmentId.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P9_FilesCorrespondingToAttachmentId.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/KO/P9_FormOnSuccessfulUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/KO/P9_FormOnSuccessfulUpload.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P10_CheckInSiteGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P10_CheckInSiteGroup.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P11_LoadExistingItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P11_LoadExistingItem.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P1_SetCurrentUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P1_SetCurrentUser.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P1_SetCurrentUserView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P1_SetCurrentUserView.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P2_ReadListDataView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P2_ReadListDataView.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P2_SetListDataToFormControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P2_SetListDataToFormControl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P3_SetListDataToForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P3_SetListDataToForm.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P4_SubmitData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P4_SubmitData.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P5_SwitchedViewAfterSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P5_SwitchedViewAfterSave.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P6_ButtonInputAndTextBoxControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P6_ButtonInputAndTextBoxControl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P6_PopulatingNameAndManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P6_PopulatingNameAndManager.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P7_TableAndHyperlinkControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P7_TableAndHyperlinkControl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P8_DropDownListForControlsCorrespondtoCountry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P8_DropDownListForControlsCorrespondtoCountry.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P8_DropDownListForControlsCorrespondtoState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P8_DropDownListForControlsCorrespondtoState.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P9_AfterDeletionOfFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P9_AfterDeletionOfFile.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P9_DeleteAttachmentControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P9_DeleteAttachmentControls.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P9_FormOnSuccessfulUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P9_FormOnSuccessfulUpload.png -------------------------------------------------------------------------------- /InfoPath/Guidance/Patterns/images/MVC/P9_InputFileCntrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/Patterns/images/MVC/P9_InputFileCntrl.png -------------------------------------------------------------------------------- /InfoPath/Guidance/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Guidance/readme.md -------------------------------------------------------------------------------- /InfoPath/Migration/EmpRegConsole/EmpRegConsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/EmpRegConsole/EmpRegConsole.sln -------------------------------------------------------------------------------- /InfoPath/Migration/EmpRegConsole/EmpRegConsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/EmpRegConsole/EmpRegConsole/App.config -------------------------------------------------------------------------------- /InfoPath/Migration/EmpRegConsole/EmpRegConsole/EmpRegConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/EmpRegConsole/EmpRegConsole/EmpRegConsole.csproj -------------------------------------------------------------------------------- /InfoPath/Migration/EmpRegConsole/EmpRegConsole/Employees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/EmpRegConsole/EmpRegConsole/Employees.cs -------------------------------------------------------------------------------- /InfoPath/Migration/EmpRegConsole/EmpRegConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/EmpRegConsole/EmpRegConsole/Program.cs -------------------------------------------------------------------------------- /InfoPath/Migration/EmpRegConsole/EmpRegConsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/EmpRegConsole/EmpRegConsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InfoPath/Migration/EmpRegConsole/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/EmpRegConsole/readme.md -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_FormRules1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_FormRules1.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_FormSchema1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_FormSchema1.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_FormSchema2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_FormSchema2.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection1.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection2.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection3.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection4.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection5.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection6.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection7.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection8.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SPListDataConnection9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SPListDataConnection9.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/images/App_SampleForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/images/App_SampleForm.png -------------------------------------------------------------------------------- /InfoPath/Migration/OWSSVR/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/OWSSVR/readme.md -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/GeneratePeoplePickerCSOMInput.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/GeneratePeoplePickerCSOMInput.ps1 -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerDataFix_14_03_2016_12_26_50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerDataFix_14_03_2016_12_26_50.csv -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console.sln -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/App.config -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/CamlQueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/CamlQueryExtensions.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Common/CSV/CSVSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Common/CSV/CSVSplit.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Common/CSV/CsvMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Common/CSV/CsvMerge.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Common/CSV/ExportCsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Common/CSV/ExportCsv.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Common/CSV/ImportCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Common/CSV/ImportCSV.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Constants.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/ContentIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/ContentIterator.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Helper.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Logger.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/Program.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/SharePointContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/SharePointContext.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/TokenHelper.cs -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerRemediation.Console/packages.config -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerReport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/PeoplePickerReport.csv -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/Readme.md -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/images/InputFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/images/InputFile.png -------------------------------------------------------------------------------- /InfoPath/Migration/PeoplePickerRemediation.Console/images/InputFileValidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/PeoplePickerRemediation.Console/images/InputFileValidation.png -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/Readme.md -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UDCXReport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UDCXReport.csv -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UDCXStatusReport_28_12_2015_10_24_59.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UDCXStatusReport_28_12_2015_10_24_59.csv -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/Udcx remediation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/Udcx remediation.docx -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console.sln -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/App.config -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/CommentUDCXFileNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/CommentUDCXFileNodes.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Base/ElementBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Base/ElementBase.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/CSV/CSVSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/CSV/CSVSplit.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/CSV/CsvMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/CSV/CsvMerge.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/CSV/ExportCsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/CSV/ExportCsv.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/CSV/ImportCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/CSV/ImportCSV.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/ArrayUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/ArrayUtility.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/CommonUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/CommonUtility.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/ExceptionCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/ExceptionCSV.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/FileUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/FileUtility.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/Logger.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Common/Utilities/StringUtility.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Constants.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Helper.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Logger.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Program.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/SharePointContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/SharePointContext.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/TokenHelper.cs -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/UdcxRemediation.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/UdcxRemediation.Console.csproj -------------------------------------------------------------------------------- /InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/UdcxRemediation.Console/UdcxRemediation.Console/packages.config -------------------------------------------------------------------------------- /InfoPath/Migration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Migration/readme.md -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/EmpReg.xsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/EmpReg.xsn -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/EmpReg/EmpReg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/EmpReg/EmpReg.csproj -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/EmpReg/FormCode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/EmpReg/FormCode.Designer.cs -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/EmpReg/FormCode.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/EmpReg/FormCode.Designer.xml -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/EmpReg/FormCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/EmpReg/FormCode.cs -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/EmpReg/InfoPath.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/EmpReg/InfoPath.snk -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/EmpReg/Project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/EmpReg/Project -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/EmpReg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/EmpReg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InfoPath/Reference/EmployeeRegistration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/EmployeeRegistration/readme.md -------------------------------------------------------------------------------- /InfoPath/Reference/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Reference/readme.md -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/Architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/Architecture.pptx -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms.sln -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms/AppIcon.png -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms/AppManifest.xml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms/EmployeeRegistration.Forms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms/EmployeeRegistration.Forms.csproj -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.Forms/app.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Assets/AppLauncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Assets/AppLauncher.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Assets/EmployeeRegistration.dwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Assets/EmployeeRegistration.dwp -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Global.asax -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Global.asax.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Default.aspx -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Default.aspx.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Default.aspx.designer.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Thanks.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Thanks.aspx -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Thanks.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Thanks.aspx.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Thanks.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Pages/Thanks.aspx.designer.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/_references.js: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/app.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/jquery-1.9.1.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/jquery-1.9.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Scripts/jquery-1.9.1.min.map -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/SetupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/SetupManager.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/SharePointContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/SharePointContext.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/TokenHelper.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Utilities.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Web.Debug.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Web.Release.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/Web.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/EmployeeRegistration.FormsWeb/packages.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.Forms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.Forms/readme.md -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.KnockOut.SinglePageApp/Architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.KnockOut.SinglePageApp/Architecture.pptx -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.KnockOut.SinglePageApp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.KnockOut.SinglePageApp/readme.md -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/Architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/Architecture.pptx -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC.sln -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/AppIcon.png -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/AppManifest.xml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/EmployeeRegistration.MVC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/EmployeeRegistration.MVC.csproj -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/app.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVC/packages.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Assets/AppLauncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Assets/AppLauncher.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Assets/EmployeeRegistration.dwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Assets/EmployeeRegistration.dwp -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Content/Site.css -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Content/bootstrap.css -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Content/bootstrap.min.css -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Controllers/EmployeeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Controllers/EmployeeController.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Controllers/HomeController.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/EmployeeRegistration.MVCWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/EmployeeRegistration.MVCWeb.csproj -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Global.asax -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Global.asax.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Models/Employee.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Project_Readme.html -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/_references.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/bootstrap.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/employee.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/respond.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/respond.min.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/spcontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Scripts/spcontext.js -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/SetupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/SetupManager.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/SharePointContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/SharePointContext.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/TokenHelper.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Utilities.cs -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Employee/EmployeeForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Employee/EmployeeForm.cshtml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Employee/Thanks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Employee/Thanks.cshtml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Home/About.cshtml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/Web.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Web.Debug.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Web.Release.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/Web.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/favicon.ico -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/EmployeeRegistration.MVCWeb/packages.config -------------------------------------------------------------------------------- /InfoPath/Samples/EmployeeRegistration.MVC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/EmployeeRegistration.MVC/readme.md -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath.sln -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/InfoPath.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/InfoPath.asmx -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/InfoPath.asmx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/InfoPath.asmx.cs -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Proxy.InfoPath.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Proxy.InfoPath.csproj -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/SharePointContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/SharePointContext.cs -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/TokenHelper.cs -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Web.Debug.config -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Web.Release.config -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/Web.config -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/Proxy.InfoPath/packages.config -------------------------------------------------------------------------------- /InfoPath/Samples/Proxy.InfoPath/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/Proxy.InfoPath/readme.md -------------------------------------------------------------------------------- /InfoPath/Samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Samples/readme.md -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/App.config -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/InfoPathScraper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/InfoPathScraper.csproj -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/InfoPathScraper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/InfoPathScraper.sln -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/Control.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/DataConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/DataConnection.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/DataRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/DataRule.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/DataValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/DataValidation.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/FormattingRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/FormattingRule.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/InfoPathFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/InfoPathFeature.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/ManagedCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/ManagedCode.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/Mode.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/ProductVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/ProductVersion.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/Feature/PublishUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/Feature/PublishUrl.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/InfoPathFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/InfoPathFile.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/InfoPathManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/InfoPathManifest.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/InfoPathTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/InfoPathTemplate.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Model/InfoPathView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Model/InfoPathView.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Program.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Reporting/CSVReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Reporting/CSVReport.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Reporting/CommandLineProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Reporting/CommandLineProcessor.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Reporting/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Reporting/Report.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Reporting/Report35.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Reporting/Report35.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Reporting/Report45.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Reporting/Report45.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Reporting/TextReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Reporting/TextReport.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/Utilities/BucketCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/Utilities/BucketCounter.cs -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/packages.config -------------------------------------------------------------------------------- /InfoPath/Scanning/InfoPathScraper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/InfoPathScraper/readme.md -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/01_Get-InfoPathFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/01_Get-InfoPathFiles.ps1 -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/02_Scrape-InfoPathFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/02_Scrape-InfoPathFiles.ps1 -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/03_Get-UdcxReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/03_Get-UdcxReport.ps1 -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/04_Parse-InfoPathReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/04_Parse-InfoPathReport.ps1 -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/05_Get-InfoPathUsageInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/05_Get-InfoPathUsageInformation.ps1 -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/06_Parse-InfoPathPeoplePickerReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/06_Parse-InfoPathPeoplePickerReport.ps1 -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/07_Get-CrossSiteWebServiceReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/07_Get-CrossSiteWebServiceReport.ps1 -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/08_Get-RpcCallReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/08_Get-RpcCallReport.ps1 -------------------------------------------------------------------------------- /InfoPath/Scanning/Scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/Scripts/readme.md -------------------------------------------------------------------------------- /InfoPath/Scanning/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/Scanning/readme.md -------------------------------------------------------------------------------- /InfoPath/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/InfoPath/readme.md -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/AllListTemplatesInGallery_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/AllListTemplatesInGallery_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/AllSiteTemplatesInGallery_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/AllSiteTemplatesInGallery_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/ContentTypes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/ContentTypes.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/CustomFields.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/CustomFields.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/AllContentTypeEventReceivers_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/AllContentTypeEventReceivers_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/AllListTemplatesInGallery_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/AllListTemplatesInGallery_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/AllSiteTemplatesInGallery_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/AllSiteTemplatesInGallery_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/CTFixDefinitionNULL_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/CTFixDefinitionNULL_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/CThavingFeatureIDTag_Definition_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/CThavingFeatureIDTag_Definition_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/ContentType_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/ContentType_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/CustomFields_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/CustomFields_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/CustomWorkflows_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/CustomWorkflows_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/Discovery-Pivot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/Discovery-Pivot.xml -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/EventReceivers_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/EventReceivers_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/Features_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/Features_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/GhostedCustomFields_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/GhostedCustomFields_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/ListTemplates_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/ListTemplates_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/MasterPage_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/MasterPage_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/PageLayouts_AvailableCustomPageLayout_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/PageLayouts_AvailableCustomPageLayout_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/PageLayouts_CustomPageLayOutUsageInPages_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/PageLayouts_CustomPageLayOutUsageInPages_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/SandBoxSolSaveAsTemplate_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/SandBoxSolSaveAsTemplate_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/SandboxSolutions_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/SandboxSolutions_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/SiteDefinitions_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/SiteDefinitions_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/DT-UsageFiles/WebParts_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/DT-UsageFiles/WebParts_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/EventReceivers_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/EventReceivers_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/Features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/Features.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/Features_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/Features_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/MasterPage_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/MasterPage_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT-Pivot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT-Pivot.xml -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_AllContentTypeEventReceivers_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_AllContentTypeEventReceivers_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_AllListTemplatesInGallery_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_AllListTemplatesInGallery_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_AllSiteTemplatesInGallery_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_AllSiteTemplatesInGallery_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_CTFixMissingDefinition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_CTFixMissingDefinition.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_CThavingFeatureIDTag_Definition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_CThavingFeatureIDTag_Definition.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MasterPage_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MasterPage_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingAssembly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingAssembly.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingConfigDBFeatures.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingConfigDBFeatures.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingContentType.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingContentType.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingEventReceiver.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingEventReceiver.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingFeature.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingFeature.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingFieldTypes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingFieldTypes.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingLists.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingLists.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingSetupFile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingSetupFile.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingSiteColumn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingSiteColumn.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingSiteDefinition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingSiteDefinition.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingWebPart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingWebPart.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingWorkflowAssociations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT-ScanFiles/PreMT_MissingWorkflowAssociations.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT_AllListTemplatesInGallery_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT_AllListTemplatesInGallery_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT_AllSiteTemplatesInGallery_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT_AllSiteTemplatesInGallery_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT_MasterPage_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT_MasterPage_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT_MissingEventReceiver.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT_MissingEventReceiver.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT_MissingFeature.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT_MissingFeature.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT_MissingSetupFile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT_MissingSetupFile.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT_MissingWebPart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT_MissingWebPart.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/PreMT_MissingWorkflowAssociations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/PreMT_MissingWorkflowAssociations.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/Readme.md -------------------------------------------------------------------------------- /JDP Remediation - CSOM/InputFiles/WebParts_Usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/InputFiles/WebParts_Usage.csv -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console.sln -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/AddWebPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/AddWebPart.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/App.config -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Base/ElementBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Base/ElementBase.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/CSV/CSVSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/CSV/CSVSplit.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/CSV/CsvMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/CSV/CsvMerge.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/CSV/ExportCsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/CSV/ExportCsv.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/CSV/ImportCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/CSV/ImportCSV.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/ArrayUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/ArrayUtility.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/CommonUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/CommonUtility.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/ExceptionCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/ExceptionCSV.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/FileUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/FileUtility.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/Logger.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Common/Utilities/StringUtility.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Constants.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingEventReceivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingEventReceivers.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingFeatures.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingSetupFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingSetupFiles.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingWebparts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingWebparts.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingWorkflowAssociations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DeleteMissingWorkflowAssociations.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Dlls/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Dlls/Mono.Cecil.dll -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DownloadAndModifyListTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DownloadAndModifyListTemplate.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DownloadAndModifySiteTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/DownloadAndModifySiteTemplate.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/GenerateColumnAndTypeUsageReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/GenerateColumnAndTypeUsageReport.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/GeneratePivotReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/GeneratePivotReport.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/GenerateSecurityGroupReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/GenerateSecurityGroupReport.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/GenerateSiteCollectionReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/GenerateSiteCollectionReport.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Helper.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/JDP.Remediation.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/JDP.Remediation.Console.csproj -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Logger.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/ManageMaintenanceBanners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/ManageMaintenanceBanners.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/PivotHelper/ChartHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/PivotHelper/ChartHelper.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/PivotHelper/CommonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/PivotHelper/CommonHelper.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/PivotHelper/PivotViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/PivotHelper/PivotViewHelper.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/PivotHelper/SummaryViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/PivotHelper/SummaryViewHelper.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Program.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Properties/Settings.settings -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/ReplaceMasterPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/ReplaceMasterPage.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/ReplaceWebPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/ReplaceWebPart.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/ResetDeviceChannelMappingFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/ResetDeviceChannelMappingFiles.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Scripts/embedMaintenanceBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/Scripts/embedMaintenanceBanner.js -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/SharePointContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/SharePointContext.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/TokenHelper.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/TokenHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/TokenHelper.vb -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/WebPartProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/WebPartProperties.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/WebPartPropertiesEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/WebPartPropertiesEntity.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/WebPartUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/WebPartUsage.cs -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/XMLs/Discovery-Pivot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/XMLs/Discovery-Pivot.xml -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/XMLs/PreMT-Pivot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/XMLs/PreMT-Pivot.xml -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/JDP.Remediation.Console/packages.config -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/Readme.md -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/AddOOTBtoPage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/AddOOTBtoPage.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ChoiceOfOperation1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ChoiceOfOperation1.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ChoiceOfOperation3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ChoiceOfOperation3.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ChoiceOfOperations.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ChoiceOfOperations.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ChoiceOfOperations2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ChoiceOfOperations2.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ERCleanUp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ERCleanUp.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/FeatureCleanUp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/FeatureCleanUp.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateColumnORFieldAndTypeUsageReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateColumnORFieldAndTypeUsageReport.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateListTemplateReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateListTemplateReport.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateNonDefaultMasterPageUsageReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateNonDefaultMasterPageUsageReport.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/GeneratePivotReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/GeneratePivotReport.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateSiteCollectionReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateSiteCollectionReport.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateSiteTemplateReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateSiteTemplateReport.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateWebPartProperties.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateWebPartProperties.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateWebPartUsage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/GenerateWebPartUsage.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/JDP.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/JDP.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ListTemplateCleanUp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ListTemplateCleanUp.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/MaintenanceBanner.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/MaintenanceBanner.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/MaintenanceBannerOption1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/MaintenanceBannerOption1.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ManageMaintenanceBanners.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ManageMaintenanceBanners.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/PivotOption1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/PivotOption1.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/PivotOption2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/PivotOption2.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/Pivot_PieChart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/Pivot_PieChart.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/Pivot_Slice.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/Pivot_Slice.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ReplaceFTCWebpart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ReplaceFTCWebpart.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ReplaceMasterPage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ReplaceMasterPage.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/ResetDeviceChannelMapping.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/ResetDeviceChannelMapping.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/SetupFileCleanUp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/SetupFileCleanUp.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/WFAssociationCleanUp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/WFAssociationCleanUp.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/JDP.Remediation.Console/images/WebPartCleanUp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/JDP.Remediation.Console/images/WebPartCleanUp.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/Readme.md -------------------------------------------------------------------------------- /JDP Remediation - CSOM/images/ChoiceOfOperation1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/images/ChoiceOfOperation1.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/images/ChoiceOfOperation3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/images/ChoiceOfOperation3.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/images/ChoiceOfOperations.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/images/ChoiceOfOperations.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/images/ChoiceOfOperations2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/images/ChoiceOfOperations2.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/images/JDP.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/images/JDP.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/images/MaintenanceBanner.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/images/MaintenanceBanner.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/images/PivotOption1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/images/PivotOption1.PNG -------------------------------------------------------------------------------- /JDP Remediation - CSOM/images/PivotOption2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP Remediation - CSOM/images/PivotOption2.PNG -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.Console/App.config -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.Console/Program.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.sln -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/AddAnApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/AddAnApp.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/AppCatalogEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/AppCatalogEntries.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/AppInv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/AppInv.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/AuthenticationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/AuthenticationType.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands.csproj -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/OpenSiteClosedByPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/OpenSiteClosedByPolicy.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/RemoteOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/RemoteOperation.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/RequestActivateSandboxSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/RequestActivateSandboxSolution.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/RequestAppRegNew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/RequestAppRegNew.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/RequestDeactivateSandboxSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/RequestDeactivateSandboxSolution.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/JDP.Transformation.HttpCommands/Utilities.cs -------------------------------------------------------------------------------- /JDP.Transformation.HttpCommands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/JDP.Transformation.HttpCommands/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/LICENSE -------------------------------------------------------------------------------- /PnP Transformation Process/Introduction to PnP transformation Process.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Introduction to PnP transformation Process.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/ReadMe.md -------------------------------------------------------------------------------- /PnP Transformation Process/Samples/PnP Transformation - Solution Assessment Report - Contoso.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Samples/PnP Transformation - Solution Assessment Report - Contoso.docx -------------------------------------------------------------------------------- /PnP Transformation Process/Samples/PnP Transformation - Solution Assessment Report - Contoso.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Samples/PnP Transformation - Solution Assessment Report - Contoso.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Samples/PnP Transformation - Solution Design Report - Contoso.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Samples/PnP Transformation - Solution Design Report - Contoso.docx -------------------------------------------------------------------------------- /PnP Transformation Process/Samples/PnP Transformation - Solution Design Report - Contoso.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Samples/PnP Transformation - Solution Design Report - Contoso.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Samples/PnP Transformation General Kickoff - Contoso.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Samples/PnP Transformation General Kickoff - Contoso.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Samples/PnP Transformation process - Intro - Contoso.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Samples/PnP Transformation process - Intro - Contoso.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Samples/Preparedness - Development and ALM.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Samples/Preparedness - Development and ALM.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Templates/Architecture Design Phase Kick Off.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Templates/Architecture Design Phase Kick Off.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Templates/Kickoff Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Templates/Kickoff Template.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Templates/Preparedness Presentation Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Templates/Preparedness Presentation Template.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Templates/Solution Assessment Report Document Template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Templates/Solution Assessment Report Document Template.docx -------------------------------------------------------------------------------- /PnP Transformation Process/Templates/Solution Assessment Report Presentation Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Templates/Solution Assessment Report Presentation Template.pptx -------------------------------------------------------------------------------- /PnP Transformation Process/Templates/Solution Design Report Document Template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Templates/Solution Design Report Document Template.docx -------------------------------------------------------------------------------- /PnP Transformation Process/Templates/Solution Design Report Presentation Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/PnP Transformation Process/Templates/Solution Design Report Presentation Template.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/README.md -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet.sln -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/CONTROLTEMPLATES/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/CONTROLTEMPLATES/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Code/SiteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Code/SiteManager.cs -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Contoso.Intranet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Contoso.Intranet.csproj -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Features/FarmDefault/FarmDefault.Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Features/FarmDefault/FarmDefault.Template.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Features/FarmDefault/FarmDefault.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Features/FarmDefault/FarmDefault.feature -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Features/SiteDefault/SiteDefault.Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Features/SiteDefault/SiteDefault.Template.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Features/SiteDefault/SiteDefault.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Features/SiteDefault/SiteDefault.feature -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Features/WebDefault/WebDefault.EventReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Features/WebDefault/WebDefault.EventReceiver.cs -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Features/WebDefault/WebDefault.Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Features/WebDefault/WebDefault.Template.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Features/WebDefault/WebDefault.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Features/WebDefault/WebDefault.feature -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Package/Package.Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Package/Package.Template.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Package/Package.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Package/Package.package -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypeBinding/CTBPages/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypeBinding/CTBPages/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypes/ContosoDocument/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypes/ContosoDocument/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypes/ContosoWebPage/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypes/ContosoWebPage/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypes/OfficeDocuments/ContosoTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypes/OfficeDocuments/ContosoTemplate.docx -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypes/OfficeDocuments/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ContentTypes/OfficeDocuments/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Fields/ContosoStatus/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Fields/ContosoStatus/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Fields/ContosoStatus/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Fields/ContosoStatus/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/EditDlg.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/EditDlg.htm -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/FileDlg.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/FileDlg.htm -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/Repair.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/Repair.aspx -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/Schema.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/Upload.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/ListTemplate/LTContosoLibrary/Upload.aspx -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOContosoDocument/ContosoDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOContosoDocument/ContosoDocument.docx -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOContosoDocument/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOContosoDocument/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOMasterPage/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOMasterPage/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOMasterPage/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOMasterPage/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOMasterPage/contoso.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOMasterPage/contoso.master -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOPageLayouts/ContosoWelcomeLinks.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOPageLayouts/ContosoWelcomeLinks.aspx -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOPageLayouts/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOPageLayouts/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOPageLayouts/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOPageLayouts/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOWelcomePagePublishing/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOWelcomePagePublishing/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOWelcomePagePublishing/default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/Modules/MOWelcomePagePublishing/default.aspx -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/PropertyBag/PBWebTemplateStamp/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/PropertyBag/PBWebTemplateStamp/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/TeaserWebPart.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/TeaserWebPart.ascx -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/TeaserWebPart.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/TeaserWebPart.ascx.cs -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/TeaserWebPart.ascx.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/TeaserWebPart.ascx.g.cs -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/TeaserWebPart.webpart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/TeaserWebPart/TeaserWebPart.webpart -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/WelcomeWebPart.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/WelcomeWebPart.ascx -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/WelcomeWebPart.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/WelcomeWebPart.ascx.cs -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/WelcomeWebPart.ascx.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/WelcomeWebPart.ascx.g.cs -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/WelcomeWebPart.webpart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebParts/WelcomeWebPart/WelcomeWebPart.webpart -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebTemplates/WTContoso/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebTemplates/WTContoso/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebTemplates/WTContoso/onet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebTemplates/WTContoso/onet.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebTemplates/WTContosoPublishing/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebTemplates/WTContosoPublishing/Elements.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebTemplates/WTContosoPublishing/onet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/SP/WebTemplates/WTContosoPublishing/onet.xml -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/Contoso.Intranet/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/Contoso.Intranet/key.snk -------------------------------------------------------------------------------- /Reference Material/Contoso.Intranet/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/Contoso.Intranet/readme.md -------------------------------------------------------------------------------- /Reference Material/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Reference Material/readme.md -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Readme.md -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.CustomElements.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.CustomElements.sln -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Base/Elementbase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Base/Elementbase.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Base/TrasnformationPowerShellCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Base/TrasnformationPowerShellCmdlet.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/AuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/AuthenticationHelper.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/CSV/ExportCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/CSV/ExportCSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/CSV/ImportCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/CSV/ImportCSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/Constants.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/ArrayUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/ArrayUtility.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/ExceptionCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/ExceptionCSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/FileUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/FileUtility.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/Logger.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Common/Utilities/StringUtility.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/DLL/OfficeDevPnP.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/DLL/OfficeDevPnP.Core.dll -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/DownloadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/DownloadFile.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/GhostingAndUnGhostingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/GhostingAndUnGhostingBase.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/GhostingAndUnGhostingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/GhostingAndUnGhostingHelper.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/UnGhostFile-Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/UnGhostFile-Copy.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/UnGhostFile-Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/GhostingAndUnGhosting/UnGhostFile-Move.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/ListMigration/ListMigrate-CSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/ListMigration/ListMigrate-CSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/ListMigration/ListMigrate-Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/ListMigration/ListMigrate-Web.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/ListMigration/ListMigrationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/ListMigration/ListMigrationBase.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/ListMigration/ListMigrationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/ListMigration/ListMigrationHelper.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/MasterPageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/MasterPageBase.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/MasterPageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/MasterPageHelper.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/UpdateMasterPage-DiscoveryUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/UpdateMasterPage-DiscoveryUsage.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/UpdateMasterPage-SiteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/UpdateMasterPage-SiteCollection.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/UpdateMasterPage-Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/MasterPage/UpdateMasterPage-Web.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/PageLayoutBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/PageLayoutBase.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/PageLayoutHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/PageLayoutHelper.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/UpdatePageLayout-DiscoveryUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/UpdatePageLayout-DiscoveryUsage.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/UpdatePageLayout-SiteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/UpdatePageLayout-SiteCollection.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/UpdatePageLayout-Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/PageLayouts/UpdatePageLayout-Web.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Properties/Settings.settings -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/SiteColumnAndContentTypes/CreateContentType-CSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/SiteColumnAndContentTypes/CreateContentType-CSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/SiteColumnAndContentTypes/CreateContentType-Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/SiteColumnAndContentTypes/CreateContentType-Web.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/SiteColumnAndContentTypes/CreateSiteColumn-CSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/SiteColumnAndContentTypes/CreateSiteColumn-CSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/SiteColumnAndContentTypes/CreateSiteColumn-Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/SiteColumnAndContentTypes/CreateSiteColumn-Web.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Transformation.PowerShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Transformation.PowerShell.csproj -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Web References/WebPartPagesService/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Web References/WebPartPagesService/Reference.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Web References/WebPartPagesService/Reference.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Web References/WebPartPagesService/Reference.map -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/Web References/WebPartPagesService/webpartpages.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/Web References/WebPartPagesService/webpartpages.wsdl -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/AddWebPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/AddWebPart.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/AddWebPartByUsageCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/AddWebPartByUsageCSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/ConfigureNewWebPartXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/ConfigureNewWebPartXml.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/DeleteWebPart-CSV.CS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/DeleteWebPart-CSV.CS -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/DeleteWebPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/DeleteWebPart.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/DeleteWebPartByUsageCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/DeleteWebPartByUsageCSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartProperties-CSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartProperties-CSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartProperties.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartPropertiesByUsageCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartPropertiesByUsageCSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartUsage.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartsByWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/GetWebPartsByWeb.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/ReplaceWebPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/ReplaceWebPart.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/ReplaceWebPartByUsageCSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/ReplaceWebPartByUsageCSV.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/TransformWebPartByWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/TransformWebPartByWeb.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/UploadAppInAppCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/UploadAppInAppCatalog.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/UploadDependencyFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/UploadDependencyFile.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/WebPartPropertiesEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/WebPartPropertiesEntity.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/WebPartTransformationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/WebPartTransformationBase.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/WebPart/WebPartTransformationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/WebPart/WebPartTransformationHelper.cs -------------------------------------------------------------------------------- /Transformation Tool - CSOM/Transformation.PowerShell/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/Transformation Tool - CSOM/Transformation.PowerShell/app.config -------------------------------------------------------------------------------- /readme-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/PnP-Transformation/HEAD/readme-template.md --------------------------------------------------------------------------------