Radeon Reset Bug fix service
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RadeonResetBugFix/RadeonResetBugFixService/Constants.cs

17 lines
479 B

namespace RadeonResetBugFixService
{
using System;
using System.IO;
using System.Reflection;
static class Constants
{
public static TimeSpan ServiceTimeout { get; } = TimeSpan.FromMinutes(5);
public static string ServiceName { get; } = "RadeonResetBugFixService";
public static string LogDirectory { get; } = Path.Combine(
Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location),
"logs");
}
}