mirror of
https://github.com/netchx/netch.git
synced 2026-05-11 23:45:06 +08:00
bump version to 1.6.0-Beta1
This commit is contained in:
@@ -14,7 +14,11 @@ namespace Netch.Controllers
|
|||||||
|
|
||||||
public const string Name = @"Netch";
|
public const string Name = @"Netch";
|
||||||
public const string Copyright = @"Copyright © 2019 - 2020";
|
public const string Copyright = @"Copyright © 2019 - 2020";
|
||||||
public const string Version = @"1.5.1";
|
|
||||||
|
public const string AssemblyVersion = @"1.6.0";
|
||||||
|
private const string Suffix = @"Beta1";
|
||||||
|
|
||||||
|
public static readonly string Version = $"{AssemblyVersion}{(string.IsNullOrEmpty(Suffix) ? "" : $"-{Suffix}")}";
|
||||||
|
|
||||||
public string LatestVersionNumber;
|
public string LatestVersionNumber;
|
||||||
public string LatestVersionUrl;
|
public string LatestVersionUrl;
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
||||||
//通过使用 "*",如下所示:
|
//通过使用 "*",如下所示:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion(UpdateChecker.Version)]
|
[assembly: AssemblyVersion(UpdateChecker.AssemblyVersion)]
|
||||||
// [assembly: AssemblyFileVersion("1.0.0.0")]
|
// [assembly: AssemblyFileVersion("1.0.0.0")]
|
||||||
|
|||||||
Reference in New Issue
Block a user