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

13 lines
332 B
PowerShell
Raw Normal View History

2023-01-05 08:28:33 -05:00
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