Files
mRemoteNG/mRemoteV1/App/Info/UpdateChannelInfo.cs

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
}
}
}
}