1234567891011121314151617181920212223242526272829 |
- /* ==============================================================================
- * 功能描述:VisionExtend
- * 创 建 者:Garrett
- * 创建日期:2019/2/14 10:17:49
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WPFTestUpdate
- {
- /// <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";
- }
- }
- }
|