Files
TinyORM/tools/str.ps1
2024-04-07 18:12:00 +02:00

17 lines
600 B
PowerShell

#!/usr/bin/env pwsh
Param(
[Parameter(Position = 0, ValueFromPipeline, ValueFromPipelinebyPropertyName,
HelpMessage = 'Specifies the TinyORM release build folder to add.')]
[ValidateNotNullOrEmpty()]
[string[]] $BuildPath = $($(Get-Location).Path)
)
Set-StrictMode -Version 3.0
Add-FolderOnPath.ps1 -Path $BuildPath\drivers\common\release,
$BuildPath\drivers\mysql\release,
$BuildPath\src\release,
$BuildPath\examples\tom\release,
$BuildPath\tests\testdata_tom\release