Files
TinyORM/tools/str.ps1
T
2024-02-11 19:04:01 +01:00

15 lines
477 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\src\release,
$BuildPath\examples\tom\release,
$BuildPath\tests\testdata_tom\release