File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed
Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1111[Setup]
1212; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
1313; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
14- AppId = 68d780d4-b946- 4154 - 8815 -e4632e5ec5d8
14+ AppId = 4B2411E5-1AE9-450C-AF2F-9A515ECBB9DF
1515AppName = {#MyAppName }
1616AppVersion = {#MyAppVersion}
1717;AppVerName={#MyAppName} {#MyAppVersion}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ internal partial class MainWindowDataContext(Func<LockWindow?> lockWindowAccesso
2222
2323 public string AppName => App . AppName ;
2424
25- public string AppVersion => Assembly . GetExecutingAssembly ( ) . GetName ( ) . Version ? . ToString ( ) ?? "Unknown" ;
25+ public string AppVersion => Assembly . GetEntryAssembly ( ) ? . GetCustomAttribute < AssemblyInformationalVersionAttribute > ( ) ? . InformationalVersion ?? "Unknown" ;
2626
2727 public Settings Settings { get ; } = Settings . Load ( ) ;
2828
Original file line number Diff line number Diff line change 88 <UseWPF >true</UseWPF >
99 <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
1010 <ApplicationIcon >Assets\logo.ico</ApplicationIcon >
11+ <Version >1.1.0.0</Version >
12+ <AssemblyVersion >1.1.0.0</AssemblyVersion >
13+ <FileVersion >1.1.0.0</FileVersion >
14+ <IncludeSourceRevisionInInformationalVersion >false</IncludeSourceRevisionInInformationalVersion >
1115 </PropertyGroup >
1216
1317 <ItemGroup >
You can’t perform that action at this time.
0 commit comments