Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed Nov 16, 2021
1 parent 3812970 commit 20a16e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion references/ArchiSteamFarm
2 changes: 1 addition & 1 deletion src/ST.Tools.Publish/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static bool CheckVersion(string value)
Console.WriteLine("错误:必须输入一个版本号!");
return false;
}
else if (!Version.TryParse(value, out var _))
else if (!System.Version.TryParse(value, out var _))
{
Console.WriteLine("错误:输入的版本号格式不正确!");
return false;
Expand Down

0 comments on commit 20a16e6

Please sign in to comment.