33 lines
837 B
C#
33 lines
837 B
C#
namespace Katteker
|
|
{
|
|
/// <summary>
|
|
/// A bunch of constants.
|
|
/// </summary>
|
|
public static class Constants
|
|
{
|
|
/// <summary>
|
|
/// Filename of the configuration-file.
|
|
/// </summary>
|
|
public const string KattekerConfig = "Katteker.config";
|
|
|
|
/// <summary>
|
|
/// Filename of the setup-file
|
|
/// </summary>
|
|
public const string SetupFile = "setup.exe";
|
|
|
|
/// <summary>
|
|
/// Filename of the execution stub.
|
|
/// </summary>
|
|
public const string ExecutionStub = "AppStub.exe";
|
|
|
|
/// <summary>
|
|
/// File of the releases.
|
|
/// </summary>
|
|
public const string Release = "RELEASE";
|
|
|
|
/// <summary>
|
|
/// Name of the
|
|
/// </summary>
|
|
public const string PackageFolder = "package";
|
|
}
|
|
} |