Skip to content

Commit

Permalink
Merge pull request #88 from schnerring/master
Browse files Browse the repository at this point in the history
Add `.UseReactiveUI()` call to xplat template
  • Loading branch information
maxkatz6 authored Nov 14, 2022
2 parents 8a9bea1 + 0e74519 commit c15e0cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion templates/csharp/xplat/AvaloniaTest.Desktop/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public static void Main(string[] args) => BuildAvaloniaApp()
public static AppBuilder BuildAvaloniaApp()
=> AppBuilder.Configure<App>()
.UsePlatformDetect()
.LogToTrace();
.LogToTrace()
.UseReactiveUI();
}
}

0 comments on commit c15e0cc

Please sign in to comment.