Extend.cs 813 B

123456789101112131415161718192021222324252627282930
  1. /* ==============================================================================
  2. * 功能描述:VisionExtend
  3. * 创 建 者:Garrett
  4. * 创建日期:2019/2/14 10:17:49
  5. * ==============================================================================*/
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using Update;
  12. namespace PackageUploader
  13. {
  14. /// <summary>
  15. /// VisionExtend
  16. /// </summary>
  17. public static class Extend
  18. {
  19. /// <summary>
  20. /// 转为安装包名称
  21. /// </summary>
  22. /// <param name="version"></param>
  23. /// <returns></returns>
  24. public static string ToCompressKey(this string version)
  25. {
  26. return $"{version}_{Const.Key}.zip";
  27. }
  28. }
  29. }