/nuget.packages/App.xaml.cs

https://bitbucket.org/nisbus/nuget_package_config_manager · C# · 24 lines · 20 code · 1 blank · 3 comment · 0 complexity · 8fc502a45fb7e3fca334fa9fb13e5ca1 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Configuration;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Reactive.Concurrency;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using ReactiveUI;
  10. namespace nuget.packages
  11. {
  12. /// <summary>
  13. /// Interaction logic for App.xaml
  14. /// </summary>
  15. public partial class App : Application
  16. {
  17. protected override void OnStartup(StartupEventArgs e)
  18. {
  19. RxApp.DeferredScheduler = DispatcherScheduler.Current;
  20. base.OnStartup(e);
  21. }
  22. }
  23. }