FrameworkTemplate/SolutionTemplate/Scripts/ExportPostAction.ps1
<#
.SYNOPSIS Executes post-export actions after a solution has been exported from the source environment. .DESCRIPTION This script runs automatically after the solution export process completes. Use this to perform post-export operations like reverting changes or cleanup. .PARAMETER Conn The connection object to the Dataverse environment. #> Param( [System.Object] [Parameter(Mandatory = $true)] $Conn ) Write-Host "Executing Export Post Action" # Add your custom post-export logic here |