@@ -10,7 +10,7 @@ namespace SharpLoader.Core
1010 public class SourceRandomizer
1111 {
1212 public readonly List < string > InjectSources = new List < string > ( ) ;
13- public readonly List < string > InjectAssemblies = new List < string > ( ) ;
13+ public readonly List < string > InjectReferences = new List < string > ( ) ;
1414
1515 public readonly string InjectBytesNamespace ;
1616 public readonly string InjectBytesClass ;
@@ -695,7 +695,7 @@ private void Encrypt(ref string str)
695695 $ "}}" +
696696 $ "}}") ;
697697
698- InjectAssemblies . Add ( "System.dll" ) ;
698+ InjectReferences . Add ( "System.dll" ) ;
699699
700700 _stringDecryptorInjected = true ;
701701 _stringDecryptorFunction = $ "{ namespaceName } .{ className } .{ funcName } ";
@@ -781,7 +781,7 @@ private void Encrypt(ref string str)
781781 $ "}}" +
782782 $ "}}") ;
783783
784- InjectAssemblies . Add ( "System.dll" ) ;
784+ InjectReferences . Add ( "System.dll" ) ;
785785
786786 _charDecryptorInjected = true ;
787787 _charDecryptorFunction = $ "{ namespaceName } .{ className } .{ funcName } ";
@@ -866,7 +866,7 @@ private void Encrypt(ref string str)
866866 $ "}}" +
867867 $ "}}") ;
868868
869- InjectAssemblies . Add ( "System.dll" ) ;
869+ InjectReferences . Add ( "System.dll" ) ;
870870
871871 _valueDecryptorInjected = true ;
872872 _valueDecryptorFunction = $ "{ namespaceName } .{ className } .{ funcName } ";
@@ -1126,7 +1126,7 @@ private void Flow(ref string str)
11261126 $ "}}" +
11271127 $ "}}") ;
11281128
1129- InjectAssemblies . Add ( "System.dll" ) ;
1129+ InjectReferences . Add ( "System.dll" ) ;
11301130
11311131 _xorDecryptorInjected = true ;
11321132 _xorDecryptorFunction = $ "{ namespaceName } .{ className } .{ funcName } ";
0 commit comments