Skip to content

Commit 9c4a868

Browse files
author
Jani Giannoudis
committed
app about: show product version
updated version to 0.9.0-beta.2
1 parent 2b6a13f commit 9c4a868

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Core/WebServer/WebServerConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public string ToUrl()
5353
return string.Empty;
5454
}
5555

56-
var url = BaseUrl.Trim().TrimEnd(['/', '\\']);
56+
var url = BaseUrl.Trim().TrimEnd('/', '\\');
5757
return Port == 0 ? url : $"{url}:{Port}";
5858
}
5959

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5-
<Version>0.9.0-beta.1.1</Version>
5+
<Version>0.9.0-beta.2</Version>
66
<FileVersion>0.9.0</FileVersion>
77
<InformationalVersion></InformationalVersion>
88
<Authors>Jani Giannoudis</Authors>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ The.NET Core application consists of the following projects:
160160
| `PayrollEngine.AdminApp.Core` | Library | Core types, assets and services |
161161
| `PayrollEngine.AdminApp.Persistence.SqlServer` | Library | Database service for SQL Server |
162162
| `PayrollEngine.AdminApp.Presentation` | Razor Library | The web application connection string |
163-
| `PayrollEngine.AdminApp.Windows` | Wpf/Razor WinExe | Windows WPF application hosting the Razor VewView |
163+
| `PayrollEngine.AdminApp.Windows` | Wpf/Razor WinExe | Windows WPF application hosting the Razor WebView |
164164

165165
## Third party components
166166
- UI with [MudBlazor](https://github.com/MudBlazor/MudBlazor/) - license `MIT`

Windows/AppAboutWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private static string GetCopyright()
9797
/// </summary>
9898
private static string GetVersion()
9999
{
100-
var version = FileVersionInfo.GetVersionInfo(typeof(AppAboutWindow).Assembly.Location).FileVersion;
100+
var version = FileVersionInfo.GetVersionInfo(typeof(AppAboutWindow).Assembly.Location).ProductVersion;
101101
return string.Format(VersionText, version);
102102
}
103103
}

0 commit comments

Comments
 (0)