27 lines
588 B
C#
27 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AppData
|
|
{
|
|
public class Utils
|
|
{
|
|
/// <summary>
|
|
/// Setup file std
|
|
/// </summary>
|
|
public static string setupFile = "active.set";
|
|
|
|
public static string confDir
|
|
{
|
|
get
|
|
{
|
|
//string basePath = System.Reflection.Assembly.GetExecutingAssembly().Location;
|
|
return $"{Directory.GetCurrentDirectory()}\\CONF\\";
|
|
}
|
|
}
|
|
}
|
|
}
|