/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
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Data;
- using System.Linq;
- using System.Reactive.Concurrency;
- using System.Threading.Tasks;
- using System.Windows;
- using ReactiveUI;
-
- namespace nuget.packages
- {
- /// <summary>
- /// Interaction logic for App.xaml
- /// </summary>
- public partial class App : Application
- {
- protected override void OnStartup(StartupEventArgs e)
- {
- RxApp.DeferredScheduler = DispatcherScheduler.Current;
- base.OnStartup(e);
- }
- }
- }