You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,11 +57,13 @@ _Executing of protections depends how they are located in `protections.json` (pr
57
57
58
58
Lets look at this example, first will be executed `AntiILdasm` then `AntiDe4dot` and `ControlFlow` and `BitDotNet` and `FieldsHiding`.
59
59
Always you could write in `protections.json` - protections which are doesnt mentioned here or if you create protection by yourself.
60
+
61
+
How to **[edit](https://raw.githubusercontent.com/sunnamed434/BitMono/blob/main/BitMono/BitMono.Host/README.MD#imporving-obfuscation-process-for-everyone)**
60
62
```json
61
63
{
62
64
"Protections": [
63
65
{
64
-
"Name": "BitDotNet", // Executing always after all protections because of Calling Condition
66
+
"Name": "BitDotNet", // Executing always after all protections
65
67
"Enabled": true,
66
68
}
67
69
{
@@ -77,7 +79,7 @@ Always you could write in `protections.json` - protections which are doesnt ment
77
79
"Enabled": true
78
80
},
79
81
{
80
-
"Name": "FieldsHiding", // Executing always after all protections because of Calling Condition
82
+
"Name": "FieldsHiding", // Executing always after all protections
81
83
"Enabled": true
82
84
}
83
85
]
@@ -109,6 +111,8 @@ public class ProductModel
109
111
## No required dependency (Deprecated file for obfuscation)
110
112
Failed to resolve dependency Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
111
113
<br>Use `appsettings.json` and set `FailOnNoRequiredDependency` to false, be careful with this parameter, change it in cases when file truly deprecated
114
+
115
+
How to [edit](https://raw.githubusercontent.com/sunnamed434/BitMono/blob/main/BitMono/BitMono.Host/README.MD#imporving-obfuscation-process-for-everyone)
112
116
```json
113
117
{
114
118
// Adding visible things that shows you have been used BitMono to protect your app
@@ -140,6 +144,7 @@ Use `criticals.json`
140
144
Add to `CriticalMethods`, `CriticalInterfaces` or `CriticalBaseTypes` your potential critical things if you have it.
141
145
<br>There is already supported all `Unity` methods and third-party frameworks as `RocketMod`, `rust-oxide-umod`, `OpenMod`.
142
146
147
+
How to [edit](https://raw.githubusercontent.com/sunnamed434/BitMono/blob/main/BitMono/BitMono.Host/README.MD#imporving-obfuscation-process-for-everyone)
0 commit comments