Files
imsapidll48/scripts/build-net48-only.ps1
2026-09-01 21:14:41 +02:00

8 lines
282 B
PowerShell

$ErrorActionPreference = 'Stop'
$root = Split-Path -Parent $PSScriptRoot
$project = Join-Path $root 'src\IMSApiDotNet\IMSApiDotNet.Net48.csproj'
dotnet restore $project
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
dotnet build $project -c Release --no-restore
exit $LASTEXITCODE