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,9 @@
namespace Pilz.Updating.UpdateInstaller
{
public static partial class UpdateInstallerAddOnNameDefinitions
{
public const string UPDATE_INSTALLER_ADDON_NAMESPACE = "UpdateInstaller";
public const string UPDATE_INSTALLER_ADDON_TYPE = "AddOn";
public const string UPDATE_INSTALLER_ADDON_METHOD = "Main";
}
}

View File

@@ -0,0 +1,10 @@
namespace Pilz.Updating.UpdateInstaller
{
public static class PackageFileNameDefinations
{
public const string ZIP_PACKAGE_FILENAME = "updatepackage.zip";
public const string ZIP_UPDATE_INSTALLER_ADDONS_DIRECTORY = "installer_addons";
public const string ZIP_APP_DATA_FILES_DIRECTORY = "appdata";
}
}