sp-dev-fx-webparts/samples/react-office-offer-creation/templates/deploy.ps1

13 lines
332 B
PowerShell

param (
[Parameter(Mandatory=$true)]
[string]$siteUrl)
Connect-PnPOnline -Url $siteUrl -Interactive
Set-PnPSite -NoScriptSite $false
Invoke-PnPSiteTemplate -Path ".\templates\Offerings.xml"
$ct = Get-PnPContentType -Identity "Offering"
Set-PnPContentType -Identity $ct -UpdateChildren
Set-PnPSite -NoScriptSite $true