WindowsRuntimeNewPackageAnalyzerTests.cs 1.1 KB

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