using Install.Core.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Install.Core { public interface IUpdateScript { /// /// /// /// 安装包资料 /// 还没升级前的版本号 /// 安装包中,软件的路径 /// 升级过程,显示的信息 /// bool Update(InstallPack installPack, string currVersion, string installPath, Action showMessage); } }