From cb3bf33a3d6cb8ec5fbf523aadc93ca707df78ee Mon Sep 17 00:00:00 2001 From: Heidi Payne Date: Tue, 5 Nov 2024 17:03:41 -0800 Subject: [PATCH 1/2] Update TOC.yml --- migration/TOC.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/migration/TOC.yml b/migration/TOC.yml index 9f96eb5806..fead7b7047 100644 --- a/migration/TOC.yml +++ b/migration/TOC.yml @@ -231,6 +231,8 @@ Items: href: how-to-format-your-csv-file-for-data-content-migration.md - name: Create user mapping files href: create-a-user-mapping-file-for-data-content-migration.md + - name: Migrate with Certificate Based Authentication + href: migration-with-cba.md - name: How the SharePoint Migration Tool works href: how-the-sharepoint-migration-tool-works.md - name: Reports From c64425fdf014137f756eb317a8e0ae16be3ddb65 Mon Sep 17 00:00:00 2001 From: Shujing Zhang Date: Wed, 6 Nov 2024 11:11:32 +0800 Subject: [PATCH 2/2] Delete .openpublishing.build.ps1 --- .openpublishing.build.ps1 | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .openpublishing.build.ps1 diff --git a/.openpublishing.build.ps1 b/.openpublishing.build.ps1 deleted file mode 100644 index 93bdf62f2f..0000000000 --- a/.openpublishing.build.ps1 +++ /dev/null @@ -1,17 +0,0 @@ -param( - [string]$buildCorePowershellUrl = "https://opbuildstorageprod.blob.core.windows.net/opps1container/.openpublishing.buildcore.ps1", - [string]$parameters -) -# Main -$errorActionPreference = 'Stop' - -# Step-1: Download buildcore script to local -echo "download build core script to local with source url: $buildCorePowershellUrl" -$repositoryRoot = Split-Path -Parent $MyInvocation.MyCommand.Definition -$buildCorePowershellDestination = "$repositoryRoot\.openpublishing.buildcore.ps1" -Invoke-WebRequest $buildCorePowershellUrl -OutFile "$buildCorePowershellDestination" - -# Step-2: Run build core -echo "run build core script with parameters: $parameters" -& "$buildCorePowershellDestination" "$parameters" -exit $LASTEXITCODE