mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
24 lines
1.1 KiB
C#
24 lines
1.1 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
|
|
namespace Wox.Infrastructure
|
|
{
|
|
public static class Wox
|
|
{
|
|
public const string Name = "Wox";
|
|
public const string Plugins = "Plugins";
|
|
public const string Settings = "Settings";
|
|
|
|
private static readonly Assembly Assembly = Assembly.GetExecutingAssembly();
|
|
public static readonly string ProgramPath = Directory.GetParent(Assembly.Location).ToString();
|
|
public static readonly string DataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), Name);
|
|
public static readonly string UserDirectory = Path.Combine(DataPath, Plugins);
|
|
public static readonly string PreinstalledDirectory = Path.Combine(ProgramPath, Plugins);
|
|
public static readonly string SettingsPath = Path.Combine(DataPath, Settings);
|
|
public const string Github = "https://github.com/Wox-launcher/Wox";
|
|
public static readonly string Version = FileVersionInfo.GetVersionInfo(Assembly.Location).ProductVersion;
|
|
}
|
|
}
|