File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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 `
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments