Releases: alex-oswald/WindowsFormsLifetime
Releases · alex-oswald/WindowsFormsLifetime
1.1.0
What's Changed
- Move lifetime registration logic to ServiceCollectionExtensions by @midare160 in #21
- File scoped namespaces by @alex-oswald in #25
- Deprecate MVP package by @alex-oswald in #26
- Enable Minimal API support without the Web SDK by @bricelam in #23
- Create scoped forms by @Chri-s in #22
- Update before merge by @alex-oswald in #29
- Update to 1.1.0 by @alex-oswald in #28
New Contributors
- @midare160 made their first contribution in #21
- @bricelam made their first contribution in #23
- @Chri-s made their first contribution in #22
Full Changelog: 1.0.2...1.1.0
1.0.2
- Update to .NET 7
1.0.1
1.0.0
- 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
- Update
UseWindowsFormsLifetime<TAppContext>(this IHostBuilder hostBuilder, Action<WindowsFormsLifetimeOptions> configure = null)
to beUseWindowsFormsLifetime<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
csproj
update to fix the readme
0.0.4
- Update to net6
- Add
IFormProvider
andIGuiContext