Skip to content
This repository was archived by the owner on Dec 22, 2019. It is now read-only.

Commit 2e45a1c

Browse files
committed
Finalize command line feature
1 parent a72d8ab commit 2e45a1c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

UpdateLib/TestApp/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.4.0.0")]
36-
[assembly: AssemblyFileVersion("0.4.0.0")]
35+
[assembly: AssemblyVersion("0.4.3.0")]
36+
[assembly: AssemblyFileVersion("0.4.3.0")]

UpdateLib/UpdateLib/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.4.0.0")]
36-
[assembly: AssemblyFileVersion("0.4.0.0")]
35+
[assembly: AssemblyVersion("0.4.3.0")]
36+
[assembly: AssemblyFileVersion("0.4.3.0")]

UpdateLib/UpdateLib/Updater.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ internal bool RestartApp(bool update = false, bool silent = false, bool waitForP
604604

605605
try
606606
{
607-
Process.Start(startInfo);
607+
Process proc = Process.Start(startInfo);
608608

609609
Environment.Exit(0);
610610
}

0 commit comments

Comments
 (0)