mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
20 lines
490 B
C#
20 lines
490 B
C#
namespace mRemoteNG.App.Info
|
|
{
|
|
public class UpdateChannelInfo
|
|
{
|
|
public static string FileName
|
|
{
|
|
get
|
|
{
|
|
#if DEBUG
|
|
return "update-debug.txt";
|
|
#else
|
|
if ((string)(My.Settings.Default.UpdateChannel.ToLowerInvariant()) == "debug")
|
|
return "update-debug.txt";
|
|
else
|
|
return "update.txt";
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
} |