another fix
This commit is contained in:
@@ -63,9 +63,9 @@ public class AppVersion(Version version, int build, AppChannel channel) : ICompa
|
||||
{
|
||||
string version;
|
||||
|
||||
if (Version.Revision != 0)
|
||||
if (Version.Revision > 0)
|
||||
version = $"{Version.Major}.{Version.Minor}.{Version.Build}.{Version.Revision}";
|
||||
else if (Version.Build != 0)
|
||||
else if (Version.Build > 0)
|
||||
version = $"{Version.Major}.{Version.Minor}.{Version.Build}";
|
||||
else
|
||||
version = $"{Version.Major}.{Version.Minor}";
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<LangVersion>latest</LangVersion>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>annotations</Nullable>
|
||||
<Version>2.7.1</Version>
|
||||
<Version>2.7.2</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
||||
|
||||
Reference in New Issue
Block a user