File tree Expand file tree Collapse file tree 3 files changed +7
-21
lines changed
Documentation/ReleaseHistory
src/System.Reactive/Internal Expand file tree Collapse file tree 3 files changed +7
-21
lines changed Original file line number Diff line number Diff line change 11# Rx Release History v6.0
22
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
48
59### Breaking changes
610
Original file line number Diff line number Diff line change @@ -68,27 +68,9 @@ public class CurrentPlatformEnlightenmentProvider : IPlatformEnlightenmentProvid
6868 // expectation it'd be pretty hard to turn on interception dynamically
6969 // upon a debugger attach event, so we should make this check early.
7070 //
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- //
7671 if ( Debugger . IsAttached )
7772 {
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 ( ) ;
9274 }
9375 }
9476
Original file line number Diff line number Diff line change 11{
2- "version" : " 6.0.0 -preview.{height}" ,
2+ "version" : " 6.0.1 -preview.{height}" ,
33 "publicReleaseRefSpec" : [
44 " ^refs/heads/main$" , // we release out of main
55 " ^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