fix folder structure

This commit is contained in:
schedpas
2022-02-09 14:52:33 +01:00
parent 9fbbc749f3
commit 621184a51b
179 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,23 @@
using global::System.IO;
using global::System.Reflection;
namespace Pilz.Updating.UpdateInstaller
{
internal static class General
{
private static string p = string.Empty;
public static string MyAppPath
{
get
{
if (string.IsNullOrEmpty(p))
{
p = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
}
return p;
}
}
}
}