Skip to content

Releases: alex-oswald/WindowsFormsLifetime

1.1.0

28 Apr 05:30
f094cf9
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.0.2...1.1.0

1.0.2

26 Nov 21:17
4d7ace8
Compare
Choose a tag to compare
  • Update to .NET 7

1.0.1

29 Mar 19:10
1f61012
Compare
Choose a tag to compare

#14 Fix circular dependency issue inside IFormProvider that caused a deadlock.

1.0.0

06 Dec 01:39
Compare
Choose a tag to compare
  • Add WindowsFormsLifetime.Mvp library
  • Renamed root namespace of the main library
  • Add a few MVP pattern sample apps
  • Add an option to hook an action after the host is started, and right before Application.Run is invoked on the UI thread

0.1.0

16 Nov 08:39
330b65c
Compare
Choose a tag to compare
  • Update UseWindowsFormsLifetime<TAppContext>(this IHostBuilder hostBuilder, Action<WindowsFormsLifetimeOptions> configure = null) to be UseWindowsFormsLifetime<TAppContext>(this IHostBuilder hostBuilder, Func<TAppContext> applicationContextFactory = null, Action<WindowsFormsLifetimeOptions> configure = null)
  • Add UseWindowsFormsLifetime<TAppContext, TStartForm>(this IHostBuilder hostBuilder, Func<TStartForm, TAppContext> applicationContextFactory, Action<WindowsFormsLifetimeOptions> configure = null)

0.0.5

11 Nov 09:17
fa226fb
Compare
Choose a tag to compare
  • csproj update to fix the readme

0.0.4

11 Nov 08:40
Compare
Choose a tag to compare
  • Update to net6
  • Add IFormProvider and IGuiContext