Unit Tests erstellt

Informationen ausgelagert
Kleines Spy/Test Programm erstellt
Mehr Exceptions/InvalidUpdateFileRequestException.cs
Launcher Host in Download Server geändert
Download Server macht zusätzlich Abfrage an den Hauptserver
Download geht jetzt stückweise von statten
This commit is contained in:
rene
2022-12-28 16:36:59 +01:00
parent c8adcff8cc
commit 4fbfdbaf2c
115 changed files with 3364 additions and 1972 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.SharedLauncher.Exceptions
{
public class InvalidUpdateFileRequestException : UpdateException
{
public InvalidUpdateFileRequestException()
{
}
public InvalidUpdateFileRequestException(string message) : base(message)
{
}
public InvalidUpdateFileRequestException(string message, Exception innerException) : base(message, innerException)
{
}
}
}