Extend.cs 797 B

1234567891011121314151617181920212223242526272829
  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. namespace WPFTestUpdate
  12. {
  13. /// <summary>
  14. /// VisionExtend
  15. /// </summary>
  16. public static class Extend
  17. {
  18. /// <summary>
  19. /// 转为安装包名称
  20. /// </summary>
  21. /// <param name="version"></param>
  22. /// <returns></returns>
  23. public static string ToCompressKey(this string version)
  24. {
  25. return $"{version}_{Const.Key}.zip";
  26. }
  27. }
  28. }