Skip to content

Commit 9176b33

Browse files
committed
Bug fixes, New features, & Improvements. Fix #30, Fix #27, Fix #26.
1 parent 701abb6 commit 9176b33

167 files changed

Lines changed: 14538 additions & 3688 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
52.4 KB
Loading
50.3 KB
Loading

NETReactorSlayer-x64.CLI/App.config

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,18 @@
1414
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
1515
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
1616
</dependentAssembly>
17+
<dependentAssembly>
18+
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
19+
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
20+
</dependentAssembly>
21+
<dependentAssembly>
22+
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
23+
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
24+
</dependentAssembly>
25+
<dependentAssembly>
26+
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
27+
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
28+
</dependentAssembly>
1729
</assemblyBinding>
1830
</runtime>
1931
</configuration>

NETReactorSlayer-x64.CLI/NETReactorSlayer-x64.CLI.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
4040
</PropertyGroup>
4141
<PropertyGroup>
42-
<SignAssembly>true</SignAssembly>
42+
<SignAssembly>true</SignAssembly>
4343
</PropertyGroup>
4444
<PropertyGroup>
45-
<AssemblyOriginatorKeyFile>..\NETReactorSlayer.snk</AssemblyOriginatorKeyFile>
45+
<AssemblyOriginatorKeyFile>..\NETReactorSlayer.snk</AssemblyOriginatorKeyFile>
4646
</PropertyGroup>
4747
<PropertyGroup>
4848
<StartupObject>

NETReactorSlayer-x64.CLI/Program.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,9 @@ namespace NETReactorSlayer_x64;
1919

2020
internal class Program
2121
{
22-
[STAThread] private static void Main(string[] args) => NETReactorSlayer.Core.Program.Main(args);
22+
[STAThread]
23+
private static void Main(string[] args)
24+
{
25+
NETReactorSlayer.Core.Program.Main(args);
26+
}
2327
}
Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System.Reflection;
22
using System.Runtime.InteropServices;
33

4-
// General Information about an assembly is controlled through the following
5-
// set of attributes. Change these attribute values to modify the information
6-
// associated with an assembly.
74
[assembly: AssemblyTitle("NETReactorSlayer-x64.CLI")]
85
[assembly: AssemblyDescription("A deobfuscator for Eziriz .NET Reactor.")]
96
[assembly: AssemblyConfiguration("")]
@@ -12,24 +9,8 @@
129
[assembly: AssemblyCopyright("Copyright © 2021 CodeStrikers.org")]
1310
[assembly: AssemblyTrademark("")]
1411
[assembly: AssemblyCulture("")]
15-
16-
// Setting ComVisible to false makes the types in this assembly not visible
17-
// to COM components. If you need to access a type in this assembly from
18-
// COM, set the ComVisible attribute to true on that type.
1912
[assembly: ComVisible(false)]
20-
21-
// The following GUID is for the ID of the typelib if this project is exposed to COM
2213
[assembly: Guid("4363303c-af4c-4c1b-8284-fc468514c15d")]
23-
24-
// Version information for an assembly consists of the following four values:
25-
//
26-
// Major Version
27-
// Minor Version
28-
// Build Number
29-
// Revision
30-
//
31-
// You can specify all the values or you can default the Build and Revision Numbers
32-
// by using the '*' as shown below:
33-
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("4.0.0.0")]
35-
[assembly: AssemblyFileVersion("4.0.0.0")]
14+
[assembly: AssemblyVersion("5.0.0.0")]
15+
[assembly: AssemblyFileVersion("5.0.0.0")]
16+
[assembly: AssemblyInformationalVersion("v5.0-rc1")]

NETReactorSlayer.CLI/App.config

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,18 @@
1414
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
1515
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
1616
</dependentAssembly>
17+
<dependentAssembly>
18+
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
19+
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
20+
</dependentAssembly>
21+
<dependentAssembly>
22+
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
23+
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
24+
</dependentAssembly>
25+
<dependentAssembly>
26+
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
27+
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
28+
</dependentAssembly>
1729
</assemblyBinding>
1830
</runtime>
1931
</configuration>

NETReactorSlayer.CLI/Program.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,9 @@ namespace NETReactorSlayer;
1919

2020
internal class Program
2121
{
22-
[STAThread] private static void Main(string[] args) => Core.Program.Main(args);
22+
[STAThread]
23+
private static void Main(string[] args)
24+
{
25+
Core.Program.Main(args);
26+
}
2327
}
Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System.Reflection;
22
using System.Runtime.InteropServices;
33

4-
// General Information about an assembly is controlled through the following
5-
// set of attributes. Change these attribute values to modify the information
6-
// associated with an assembly.
74
[assembly: AssemblyTitle("NETReactorSlayer.CLI")]
85
[assembly: AssemblyDescription("A deobfuscator for Eziriz .NET Reactor.")]
96
[assembly: AssemblyConfiguration("")]
@@ -12,24 +9,8 @@
129
[assembly: AssemblyCopyright("Copyright © 2021 CodeStrikers.org")]
1310
[assembly: AssemblyTrademark("")]
1411
[assembly: AssemblyCulture("")]
15-
16-
// Setting ComVisible to false makes the types in this assembly not visible
17-
// to COM components. If you need to access a type in this assembly from
18-
// COM, set the ComVisible attribute to true on that type.
1912
[assembly: ComVisible(false)]
20-
21-
// The following GUID is for the ID of the typelib if this project is exposed to COM
2213
[assembly: Guid("91f328fb-ceec-4869-8dad-0f9a3eefab48")]
23-
24-
// Version information for an assembly consists of the following four values:
25-
//
26-
// Major Version
27-
// Minor Version
28-
// Build Number
29-
// Revision
30-
//
31-
// You can specify all the values or you can default the Build and Revision Numbers
32-
// by using the '*' as shown below:
33-
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("4.0.0.0")]
35-
[assembly: AssemblyFileVersion("4.0.0.0")]
14+
[assembly: AssemblyVersion("5.0.0.0")]
15+
[assembly: AssemblyFileVersion("5.0.0.0")]
16+
[assembly: AssemblyInformationalVersion("v5.0-rc1")]

0 commit comments

Comments
 (0)