Files
BeWoPlaner/SharedLauncher/Information/BeWoPathFileConfig.cs
rene 4fbfdbaf2c 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
2022-12-28 16:36:59 +01:00

26 lines
932 B
C#

using BS.SharedLauncher.Extensions;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.SharedLauncher.Information
{
public static class BeWoPathFileConfig
{
private static readonly string lockFileName = "_lock";
private static readonly string dotbewoinfo = ".bewoplan";
private static readonly string latestFileName = "latest";
private static readonly string subdir = "BeWoPlaner";
private static readonly string testForPermission = "bewo.permission.test";
public static string LockFileName => lockFileName;
public static string DotBeWoInfo => dotbewoinfo;
public static string LatestBeWoInfo => latestFileName + DotBeWoInfo;
public static string SubDirectory => subdir;
public static string TestForPermissionFile => testForPermission;
}
}