File tree 3 files changed +7
-21
lines changed
Documentation/ReleaseHistory
src/System.Reactive/Internal 3 files changed +7
-21
lines changed Original file line number Diff line number Diff line change 1
1
# Rx Release History v6.0
2
2
3
- ## v6.0.0-preview
3
+ ## v6.0.1-preview
4
+
5
+ This release fixes [ Issue #1942 : "AOT compilation produces single trim analysis warning"] ( https://github.com/dotnet/reactive/issues/1942 )
6
+
7
+ ## v6.0.0
4
8
5
9
### Breaking changes
6
10
Original file line number Diff line number Diff line change @@ -68,27 +68,9 @@ public class CurrentPlatformEnlightenmentProvider : IPlatformEnlightenmentProvid
68
68
// expectation it'd be pretty hard to turn on interception dynamically
69
69
// upon a debugger attach event, so we should make this check early.
70
70
//
71
- // In the initial release of v2.0 (RTM), we won't have the corresponding
72
- // debugger assembly available yet, so the dynamic load would always
73
- // fail. We also don't want to take the price of (an attempt to) a dynamic
74
- // assembly load for the regular production case.
75
- //
76
71
if ( Debugger . IsAttached )
77
72
{
78
- var ifType = t . GetTypeInfo ( ) ;
79
-
80
- var asm = new AssemblyName ( ifType . Assembly . FullName ! )
81
- {
82
- Name = "System.Reactive"
83
- } ;
84
-
85
- var name = "System.Reactive.Linq.QueryDebugger, " + asm . FullName ;
86
-
87
- var dbg = Type . GetType ( name , false ) ;
88
- if ( dbg != null )
89
- {
90
- return ( T ? ) Activator . CreateInstance ( dbg ) ;
91
- }
73
+ return ( T ) ( object ) new QueryDebugger ( ) ;
92
74
}
93
75
}
94
76
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 6.0.0 -preview.{height}" ,
2
+ "version" : " 6.0.1 -preview.{height}" ,
3
3
"publicReleaseRefSpec" : [
4
4
" ^refs/heads/main$" , // we release out of main
5
5
" ^refs/heads/rel/v\\ d+\\ .\\ d+" , // we also release branches starting with rel/vN.N
You can’t perform that action at this time.
0 commit comments