File tree Expand file tree Collapse file tree 6 files changed +22
-2
lines changed
Expand file tree Collapse file tree 6 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ A more comprehensive comparison list of features and compatibility is available
5757
5858## Used libraries
5959
60- - [ NeighTools/UnityDoorstop] ( https://github.com/NeighTools/UnityDoorstop ) - v4.2 .0
60+ - [ NeighTools/UnityDoorstop] ( https://github.com/NeighTools/UnityDoorstop ) - v4.3 .0
6161- [ BepInEx/HarmonyX] ( https://github.com/BepInEx/HarmonyX ) - v2.10.1
6262- [ 0x0ade/MonoMod] ( https://github.com/0x0ade/MonoMod ) - v22.5.1.1
6363- [ jbevain/cecil] ( https://github.com/jbevain/cecil ) - v0.10.4
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ target_assembly = BepInEx\core\BepInEx.Unity.IL2CPP.dll
1111# If true, Unity's output log is redirected to <current folder>\output_log.txt
1212redirect_output_log = false
1313
14+ # Overrides the default boot.config file path
15+ boot_config_override =
16+
1417# If enabled, DOORSTOP_DISABLE env var value is ignored
1518# USE THIS ONLY WHEN ASKED TO OR YOU KNOW WHAT THIS MEANS
1619ignore_disable_switch = false
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ target_assembly = BepInEx\core\BepInEx.Unity.Mono.Preloader.dll
1111# If true, Unity's output log is redirected to <current folder>\output_log.txt
1212redirect_output_log = false
1313
14+ # Overrides the default boot.config file path
15+ boot_config_override =
16+
1417# If enabled, DOORSTOP_DISABLE env var value is ignored
1518# USE THIS ONLY WHEN ASKED TO OR YOU KNOW WHAT THIS MEANS
1619ignore_disable_switch = false
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ enabled="1"
2525# NOTE: The entrypoint must be of format `static void Doorstop.Entrypoint.Start()`
2626target_assembly=" BepInEx/core/BepInEx.Unity.IL2CPP.dll"
2727
28+ # Overrides the default boot.config file path
29+ boot_config_override=
30+
2831# If enabled, DOORSTOP_DISABLE env var value is ignored
2932# USE THIS ONLY WHEN ASKED TO OR YOU KNOW WHAT THIS MEANS
3033ignore_disable_switch=" 0"
@@ -218,6 +221,10 @@ while :; do
218221 target_assembly=" $2 "
219222 shift
220223 ;;
224+ --doorstop-boot-config-override)
225+ boot_config_override=" $2 "
226+ shift
227+ ;;
221228 --doorstop-mono-dll-search-path-override)
222229 dll_search_path_override=" $2 "
223230 shift
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ enabled="1"
2525# NOTE: The entrypoint must be of format `static void Doorstop.Entrypoint.Start()`
2626target_assembly=" BepInEx/core/BepInEx.Unity.Mono.Preloader.dll"
2727
28+ # Overrides the default boot.config file path
29+ boot_config_override=
30+
2831# If enabled, DOORSTOP_DISABLE env var value is ignored
2932# USE THIS ONLY WHEN ASKED TO OR YOU KNOW WHAT THIS MEANS
3033ignore_disable_switch=" 0"
@@ -219,6 +222,10 @@ while :; do
219222 target_assembly=" $2 "
220223 shift
221224 ;;
225+ --doorstop-boot-config-override)
226+ boot_config_override=" $2 "
227+ shift
228+ ;;
222229 --doorstop-mono-dll-search-path-override)
223230 dll_search_path_override=" $2 "
224231 shift
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public enum ProjectBuildType
3232 BleedingEdge
3333 }
3434
35- public const string DoorstopVersion = "4.2 .0" ;
35+ public const string DoorstopVersion = "4.3 .0" ;
3636 public const string DotnetRuntimeVersion = "6.0.7" ;
3737 public const string DobbyVersion = "1.0.5" ;
3838
You can’t perform that action at this time.
0 commit comments