16 lines
795 B
C#
16 lines
795 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace EnvyUpdate
|
|
{
|
|
class GlobalVars
|
|
{
|
|
public static bool isMobile = false;
|
|
public static readonly string exeloc = System.Reflection.Assembly.GetEntryAssembly().Location;
|
|
public static readonly string exedirectory = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location) + "\\";
|
|
public static readonly string startmenu = Environment.GetFolderPath(Environment.SpecialFolder.StartMenu);
|
|
public static readonly string appdata = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\envyupdate\\";
|
|
public static readonly string startup = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
|
|
public static bool monitoringInstall = false;
|
|
}
|
|
}
|