mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
15 lines
722 B
C#
15 lines
722 B
C#
|
|
namespace mRemoteNG.App.Info
|
|
{
|
|
public class SettingsFileInfo
|
|
{
|
|
#if !PORTABLE
|
|
public static readonly string SettingsPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.ApplicationData) + "\\" + (new Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase()).Info.ProductName;
|
|
#else
|
|
public static readonly string SettingsPath = (new Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase()).Info.DirectoryPath;
|
|
#endif
|
|
public static readonly string LayoutFileName = "pnlLayout.xml";
|
|
public static readonly string ExtAppsFilesName = "extApps.xml";
|
|
public const string ThemesFileName = "Themes.xml";
|
|
}
|
|
} |