XFEExtension.NetCore.UpgradeHelper
【DLL】对接ApplicationUpgradeManager的nuget包,可以快速实现软件版本更新请求
关注
0
Fork
0
Star
0
namespace XFEExtension.NetCore.UpgradeHelper.Models;
public abstract class UpgradeInfoBase
{
public bool IsLatest { get; set; }
public string DownloadUrl { get; set; } = string.Empty;
public string LatestVersion { get; set; } = string.Empty;
}
namespace XFEExtension.NetCore.UpgradeHelper.Models;
public abstract class UpgradeInfoBase
{
public bool IsLatest { get; set; }
public string DownloadUrl { get; set; } = string.Empty;
public string LatestVersion { get; set; } = string.Empty;
}