Initial version BizTalkStatus Tool.

This commit is contained in:
2026-02-02 13:18:48 +01:00
commit cff972a0bf
8 changed files with 395 additions and 0 deletions

14
tools/Create-Tags.ps1 Normal file
View File

@@ -0,0 +1,14 @@
param(
[string]$TagPrefix = 'v'
)
if (!(Get-Command git -ErrorAction SilentlyContinue)) { Write-Host 'git ist nicht installiert oder nicht im PATH.'; exit 1 }
# Initialisiert ein Repo, committet und erstellt Tags
& git init
& git add .
& git commit -m "Initial import (v1.3.0)"
& git tag "${TagPrefix}1.0.0" -m "Baseline"
& git tag "${TagPrefix}1.1.0" -m "Textdiff + HTML"
& git tag "${TagPrefix}1.2.0" -m "Remote + Logging"
& git tag "${TagPrefix}1.3.0" -m "Farben + Releases"
Write-Host "Tags erstellt: ${TagPrefix}1.0.0, ${TagPrefix}1.1.0, ${TagPrefix}1.2.0, ${TagPrefix}1.3.0"