123456789101112131415161718192021222324252627282930 |
- /* ==============================================================================
- * 功能描述:VisionExtend
- * 创 建 者:Garrett
- * 创建日期:2019/2/14 10:17:49
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Update;
- namespace PackageUploader
- {
- /// <summary>
- /// VisionExtend
- /// </summary>
- public static class Extend
- {
- /// <summary>
- /// 转为安装包名称
- /// </summary>
- /// <param name="version"></param>
- /// <returns></returns>
- public static string ToCompressKey(this string version)
- {
- return $"{version}_{Const.Key}.zip";
- }
- }
- }
|