From 646a88e4bac25885425bc0382218fd25c56d3157 Mon Sep 17 00:00:00 2001 From: BDisp Date: Sun, 19 Dec 2021 16:18:35 +0000 Subject: [PATCH] Adding Application.Shutdown and updating ReactiveUI.Fody. (#1550) Thanks. --- ReactiveExample/Program.cs | 1 + ReactiveExample/ReactiveExample.csproj | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ReactiveExample/Program.cs b/ReactiveExample/Program.cs index 9396ee047..d510c8fb5 100644 --- a/ReactiveExample/Program.cs +++ b/ReactiveExample/Program.cs @@ -9,6 +9,7 @@ namespace ReactiveExample { RxApp.MainThreadScheduler = TerminalScheduler.Default; RxApp.TaskpoolScheduler = TaskPoolScheduler.Default; Application.Run (new LoginView (new LoginViewModel ())); + Application.Shutdown (); } } } \ No newline at end of file diff --git a/ReactiveExample/ReactiveExample.csproj b/ReactiveExample/ReactiveExample.csproj index 62c5d998a..b57731a0f 100644 --- a/ReactiveExample/ReactiveExample.csproj +++ b/ReactiveExample/ReactiveExample.csproj @@ -4,7 +4,7 @@ net6.0 - +