StableVersion4.3/AppAutoUpdater/AutoUpdater/AutoUpdateHelper/ConstFile.cs

33 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*****************************************************************
* Copyright (C) Knights Warrior Corporation. All rights reserved.
*
* Author: 圣殿骑士Knights Warrior
* Email: KnightsWarrior@msn.com
* Website: http://www.cnblogs.com/KnightsWarrior/ https://github.com/knightswarrior
* Create Date: 5/8/2010
* Usage:
*
* RevisionHistory
* Date Author Description
*
*****************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace KnightsWarriorAutoupdater
{
public class ConstFile
{
public const string TEMPFOLDERNAME = "TempFolder";
public const string CONFIGFILEKEY = "config_";
public const string FILENAME = "AutoUpdater.config";
public const string ROOLBACKFILE = "KnightsWarrior.exe";
public const string MESSAGETITLE = "AutoUpdate Program";
public const string CANCELORNOT = "KnightsWarrior Update is in progress. Do you really want to cancel?";
public const string APPLYTHEUPDATE = "Program need to restart to apply the update,Please click OK to restart the program!";
public const string NOTNETWORK = "KnightsWarrior.exe update is unsuccessful. KnightsWarrior.exe will now restart. Please try to update again.";
}
}