-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConstants.cs
More file actions
24 lines (22 loc) · 785 Bytes
/
Copy pathConstants.cs
File metadata and controls
24 lines (22 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WinMediaPie
{
class Constants
{
public static string APP_ID = "WinMediaPie";
public static string GITHUB_RELEASES_URL = "https://github.com/artus9033/WinMediaPie";
/// <summary>
/// Stores paths to icon assets
/// </summary>
public static class AppPaths
{
public static string appTmpPath = System.IO.Path.Combine(System.IO.Path.GetTempPath(), APP_ID);
public static string iconPngPath = System.IO.Path.Combine(AppPaths.appTmpPath, "icon.png");
public static string iconIcoPath = System.IO.Path.Combine(AppPaths.appTmpPath, "icon.ico");
}
}
}