-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathobfuscar.xml
More file actions
29 lines (24 loc) · 942 Bytes
/
Copy pathobfuscar.xml
File metadata and controls
29 lines (24 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<Obfuscator>
<!-- Obfuscar Configuration for System Sweep Professional -->
<Var name="InPath" value=".\bin\Release\net8.0-windows\win-x64" />
<Var name="OutPath" value=".\bin\Obfuscated" />
<!-- Anti-decompilation settings -->
<Module file="$(InPath)\SystemSweep.dll">
<SkipType name="Wpf.Ui.*" />
<SkipType name="ModernFileCleaner.App" />
<SkipType name="ModernFileCleaner.MainWindow" />
<!-- Rename all possible symbols -->
<RenameRules>
<Rename rule="Public" />
<Rename rule="Private" />
<Rename rule="Protected" />
</RenameRules>
<!-- String encryption protects license keys and paths -->
<StringEncryption />
<!-- Control flow obfuscation makes decompiled code unreadable -->
<ControlFlow />
</Module>
<!-- Search recursively for dependencies but skip system assemblies -->
<SearchDir path="$(InPath)" />
</Obfuscator>