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 @@
@echo off
setlocal
cd /d "%~dp0.."
dotnet restore src\IMSApiDotNet\IMSApiDotNet.Net48.csproj
if errorlevel 1 exit /b %errorlevel%
dotnet build src\IMSApiDotNet\IMSApiDotNet.Net48.csproj -c Release --no-restore
exit /b %errorlevel%

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

4
scripts/build-net48.cmd Normal file
View File

@@ -0,0 +1,4 @@
@echo off
setlocal
dotnet build "%~dp0..\src\IMSApiDotNet\IMSApiDotNet.csproj" -c Release -f net48
endlocal

4
scripts/build-net48.ps1 Normal file
View File

@@ -0,0 +1,4 @@
$ErrorActionPreference = "Stop"
$root = Split-Path -Parent $PSScriptRoot
$project = Join-Path $root "src\IMSApiDotNet\IMSApiDotNet.csproj"
dotnet build $project -c Release -f net48

2
scripts/build.cmd Normal file
View File

@@ -0,0 +1,2 @@
@echo off
dotnet build "%~dp0..\IMSApiDotNet_10.0.0-59_HttpClient.sln" -c Release

3
scripts/build.ps1 Normal file
View File

@@ -0,0 +1,3 @@
$ErrorActionPreference = "Stop"
$root = Split-Path -Parent $PSScriptRoot
dotnet build "$root\IMSApiDotNet_10.0.0-59_HttpClient.sln" -c Release

3
scripts/test.ps1 Normal file
View File

@@ -0,0 +1,3 @@
$ErrorActionPreference = "Stop"
$root = Split-Path -Parent $PSScriptRoot
dotnet run --project "$root\tests\IMSApiDotNet.ProtocolVectors\IMSApiDotNet.ProtocolVectors.csproj" -c Release