Update product info and add banner
This commit is contained in:
@@ -10,8 +10,8 @@
|
||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||
<Version>2.0</Version>
|
||||
<Company>Noisy Cow Studios</Company>
|
||||
<Product>Il2CppInspector</Product>
|
||||
<Copyright>(c) 2017-2019 Katy Coe - www.djkaty.com</Copyright>
|
||||
<Product>Il2CppInspector Command-Line Edition</Product>
|
||||
<Copyright>(c) 2017-2020 Katy Coe - www.djkaty.com - www.github.com/djkaty</Copyright>
|
||||
<PackageId>Il2CppDumper</PackageId>
|
||||
<Authors>Katy Coe</Authors>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -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<string>();
|
||||
|
||||
Reference in New Issue
Block a user