build.ps1
|
#Requires -Version 5.1 [CmdletBinding()] param( [ValidateSet('Debug','Release')] [string]$Configuration = 'Release', [switch]$Force ) $ErrorActionPreference = 'Stop' $root = $PSScriptRoot $proj = Join-Path $root 'src\SearchDir.csproj' $target = Join-Path $root 'SearchDir.dll' if (-not $Force -and (Test-Path $target)) { Write-Verbose "SearchDir.dll already present at $target; skipping build. Pass -Force to rebuild." return } dotnet build $proj -c $Configuration | Write-Verbose if ($LASTEXITCODE -ne 0) { throw "dotnet build failed with exit code $LASTEXITCODE" } $dll = Join-Path $root "src\bin\$Configuration\netstandard2.0\SearchDir.dll" if (-not (Test-Path $dll)) { throw "Build output not found: $dll" } Copy-Item -Path $dll -Destination (Join-Path $root 'SearchDir.dll') -Force Write-Verbose "Copied SearchDir.dll to module root." |