Skip to content

Commit

Permalink
Fixed Bug where Enter had to be pressed instead of any key
Browse files Browse the repository at this point in the history
  • Loading branch information
Firewolf1337 committed Jul 7, 2023
1 parent b29148e commit 033fba1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion RCRUpdater/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static void Main(string[] args)

Process.Start(updatePath + "\\" + updateFileName, "/noAutostart");
Console.WriteLine("Press any key to continue.");
Console.ReadLine();
Console.ReadKey();
}
}
}
5 changes: 2 additions & 3 deletions RCRUpdater/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
Expand Down Expand Up @@ -32,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]

0 comments on commit 033fba1

Please sign in to comment.