Initial commit: BizTalk application catalog

This commit is contained in:
2026-07-27 14:46:02 +02:00
commit 2b5b97c869
25 changed files with 3026 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using BizTalkApplicationCatalog.Infrastructure;
namespace BizTalkApplicationCatalog.Tests
{
internal static class Program
{
private static int Main(string[] args)
{
try
{
SelfTestRunner.Run(args.Length > 0 ? args[0] : null);
Console.WriteLine("Alle Tests erfolgreich.");
return 0;
}
catch (Exception exception)
{
Console.Error.WriteLine("TEST FEHLGESCHLAGEN: " + exception);
return 1;
}
}
}
}