From 033fba1095d7022449d911666b0380cad711c020 Mon Sep 17 00:00:00 2001 From: Firewolf1337 <18141890+Firewolf1337@users.noreply.github.com> Date: Fri, 7 Jul 2023 12:08:08 +0200 Subject: [PATCH] Fixed Bug where Enter had to be pressed instead of any key --- RCRUpdater/Program.cs | 2 +- RCRUpdater/Properties/AssemblyInfo.cs | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/RCRUpdater/Program.cs b/RCRUpdater/Program.cs index d280258..276598a 100644 --- a/RCRUpdater/Program.cs +++ b/RCRUpdater/Program.cs @@ -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(); } } } diff --git a/RCRUpdater/Properties/AssemblyInfo.cs b/RCRUpdater/Properties/AssemblyInfo.cs index fc813ff..8fb8d3d 100644 --- a/RCRUpdater/Properties/AssemblyInfo.cs +++ b/RCRUpdater/Properties/AssemblyInfo.cs @@ -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 @@ -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")]