An error occurred during search results load.
Error EF-1099 [2] occurs when input assembly or one of its dependencies cannot be loaded. Possible solutions for this problem:
Error EF-3035 occurs when input assembly is already obfuscated. Eazfuscator.NET stops processing and exits with error code 1, thus indicating the error condition.
You may prefer to just skip the processing of an assembly without raising the error. In order to do that, please follow the instructions below.
Instructions on making Eazfuscator.NET to ignore EF-3035 error
ObfuscationSettings.cs
(for C#) or ObfuscationSettings.vb
(for Visual Basic .NET).
You may prefer to use another name instead of ObfuscationSettings.cs
or ObfuscationSettings.vb
Fill ObfuscationSettings.cs
with the following content (C#):
using System; using System.Reflection; [assembly: Obfuscation(Feature = "ignore error EF-3035", StripAfterObfuscation = false)]
For Visual Basic .NET, fill ObfuscationSettings.vb
with the following content:
Imports System Imports System.Reflection <Assembly: Obfuscation(Feature:="ignore error EF-3035", StripAfterObfuscation:=False)>