| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace System.Reactive.Analyzers.Test
- {
- internal class WindowsRuntimeNewPackageAnalyzerTests
- {
- // This may need to look a bit different from the WPF and Windows Forms tests, because
- // this covers more types.
- // Then again, in the ADR, I recently made a change to say that actually the non-UI-framework-specific
- // Windows Runtime functionality should actually remain in System.Reactive.
- // There is an argumnet that anything that is inherently available as a result of having a Windows-specific TFM
- // could remain in System.Reactive. (These _don't_ bring in a whole extra framework dependency, so we don't have
- // the same absolute need to get rid of these as we do with WPF/Windows Forms,.) On the other hand, it would feel
- // odd for the WPF Dispatcher support to live in in the WPF component while the CoreDispatcher is in the main
- // System.Reactive.
- // The IEventPattern and IAsyncInfo bits are arguably an interesting special case.
- }
- }
|