Skip to content
This repository has been archived by the owner on Aug 23, 2022. It is now read-only.

Commit

Permalink
Proj: Fix version number & edit Build props
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiSheng233 committed Aug 15, 2022
1 parent 9ac1da6 commit 92bc9da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions EnergyStarPlus/EnergyStarPlus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<EnableMsixTooling>true</EnableMsixTooling>
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
<WindowsPackageType>None</WindowsPackageType>
<ErrorReport>none</ErrorReport>
<Authors>The EnergyStarPlus Project</Authors>
<Version>0.0.1-alpha</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion EnergyStarPlus/ViewModels/SettingsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ private static string GetVersionDescription()
version = Assembly.GetExecutingAssembly().GetName().Version!;
}

return $"{"AppDisplayName".GetLocalized()} - {version.Major}.{version.Minor}.{version.Build}.{version.Revision}";
return $"{"AppDisplayName".GetLocalized()} - {version.Major}.{version.Minor}.{version.Build}";
}
}

0 comments on commit 92bc9da

Please sign in to comment.