Projektdateien hinzufügen.

This commit is contained in:
mr_sc
2026-09-01 21:14:41 +02:00
parent b03d40f983
commit 2225b590c2
487 changed files with 115105 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
$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