diff --git a/Il2CppDumper/Il2CppDumper.csproj b/Il2CppDumper/Il2CppDumper.csproj index bd42c48..2337430 100644 --- a/Il2CppDumper/Il2CppDumper.csproj +++ b/Il2CppDumper/Il2CppDumper.csproj @@ -10,8 +10,8 @@ false 2.0 Noisy Cow Studios - Il2CppInspector - (c) 2017-2019 Katy Coe - www.djkaty.com + Il2CppInspector Command-Line Edition + (c) 2017-2020 Katy Coe - www.djkaty.com - www.github.com/djkaty Il2CppDumper Katy Coe diff --git a/Il2CppDumper/Program.cs b/Il2CppDumper/Program.cs index 3f800a0..38f3b4d 100644 --- a/Il2CppDumper/Program.cs +++ b/Il2CppDumper/Program.cs @@ -95,6 +95,13 @@ namespace Il2CppInspector _ => 1); private static int Run(Options options) { + // Banner + var asmInfo = FileVersionInfo.GetVersionInfo(System.Reflection.Assembly.GetEntryAssembly().Location); + Console.WriteLine(asmInfo.ProductName); + Console.WriteLine("Version " + asmInfo.ProductVersion); + Console.WriteLine(asmInfo.LegalCopyright); + Console.WriteLine(""); + // Check excluded namespaces if (options.ExcludedNamespaces.Count() == 1 && options.ExcludedNamespaces.First().ToLower() == "none") options.ExcludedNamespaces = new List();