Move AssemblyExtensions.GetApplyUpdateCapabilities to be guarded by Debugger.IsSupported#51994
Conversation
…ebugger.IsSupported
|
I couldn't figure out the best area label to add to this PR. If you have write-permissions please help me learn by adding exactly one area label. |
|
Tagging subscribers to 'linkable-framework': @eerhardt, @vitek-karas, @LakshanF, @sbomer Issue DetailsWe are currently using the #51159 tracks using a separate "hot reload" feature switch if we don't want to tie "debugging" and "hot reload" together.
|
|
Do we run tests in configurations without a debugger? In that case |
The one place that I know of that will trim the test with |
|
Looking at the test code: The trimmer should be able to recognize this reflection pattern, and not trim the |
We are currently using the
Debugger.IsSupportedfeature switch to trim out hot reload support. So moving this method to only be preserved whenDebugger.IsSupportedis true.#51159 tracks using a separate "hot reload" feature switch if we don't want to tie "debugging" and "hot reload" together.