File tree 2 files changed +4
-23
lines changed
2 files changed +4
-23
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
7
+ ## [ 0.2.1] 2024-02-13
8
+ * Fixed a crash that could result from an attempted workaround of the 'assembly reload failed' error
9
+
7
10
## [ 0.2.0] 2024-02-01
8
11
9
12
### Added
Original file line number Diff line number Diff line change @@ -76,29 +76,7 @@ public override void _EnterTree()
76
76
// }
77
77
//
78
78
} ;
79
-
80
- var assemblyLoadContext =
81
- AssemblyLoadContext . GetLoadContext ( Assembly . GetExecutingAssembly ( ) ) ;
82
- if ( assemblyLoadContext != null )
83
- {
84
- assemblyLoadContext . Unloading += _ =>
85
- {
86
- // trigger unload for what we can
87
- AssemblyLoadContext
88
- . GetLoadContext ( typeof ( Compiler ) . Assembly )
89
- ? . Unload ( ) ;
90
- AssemblyLoadContext
91
- . GetLoadContext ( typeof ( Antlr4 . Runtime . Parser ) . Assembly )
92
- ? . Unload ( ) ;
93
- AssemblyLoadContext
94
- . GetLoadContext ( typeof ( CsvHelper . CsvParser ) . Assembly )
95
- ? . Unload ( ) ;
96
- AssemblyLoadContext
97
- . GetLoadContext ( typeof ( Google . Protobuf . MessageParser ) . Assembly )
98
- ? . Unload ( ) ;
99
- } ;
100
- }
101
-
79
+
102
80
#if ! GODOT4_2_OR_GREATER
103
81
editorInterface = GetEditorInterface ( ) ;
104
82
#endif
You can’t perform that action at this time.
0 commit comments