System.Windows.Mvvm 0.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package System.Windows.Mvvm --version 0.3.0
NuGet\Install-Package System.Windows.Mvvm -Version 0.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Windows.Mvvm" Version="0.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Windows.Mvvm --version 0.3.0
#r "nuget: System.Windows.Mvvm, 0.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.Windows.Mvvm as a Cake Addin
#addin nuget:?package=System.Windows.Mvvm&version=0.3.0

// Install System.Windows.Mvvm as a Cake Tool
#tool nuget:?package=System.Windows.Mvvm&version=0.3.0

The MVVM Framework is a compact and simple, yet powerful implementation of the MVVM pattern for WPF. It provides a strong model for managing the application lifecycle and the navigation. The MVVM framework decouples operation system functionality from the application logic by providing a powerful service system, which abstracts away any platform specific code from the application logic. Everything in the framework was build with the task awaitable pattern in mind, from application lifecycle management to navigation. The framework plays nice with all kinds of frameworks, for example the dependency injection mechanism build into the framework does not care what

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.7 2,383 6/28/2016
0.3.6 1,476 6/26/2016
0.3.5 1,654 5/16/2016
0.3.4 1,455 5/12/2016
0.3.3 1,275 5/12/2016
0.3.2 1,367 5/9/2016
0.3.1 1,394 5/1/2016
0.3.0 1,284 5/1/2016
0.2.9 1,738 4/21/2016
0.2.8 1,563 4/20/2016
0.2.7 1,433 3/28/2016
0.2.6 1,390 3/27/2016
0.2.5 1,488 3/26/2016
0.2.4 1,391 3/25/2016
0.2.3 2,116 3/22/2016
0.2.2 1,292 3/19/2016
0.2.1 1,470 2/4/2016
0.2.0 1,447 2/4/2016
0.1.8 1,517 1/31/2016
0.1.7 1,482 1/22/2016
0.1.6 1,469 1/22/2016
0.1.5 1,559 1/21/2016
0.1.4 1,544 1/21/2016
0.1.3 1,726 1/21/2016
0.1.2 1,721 1/18/2016
0.1.1 1,885 1/17/2016
0.1.0 1,496 1/17/2016

- The reactive database context was removed from the framework, because it was deemed out of scope of the framework, the reactive database context is now a separate project on GitHub and  NuGet
- Removed the reactive configuration context, because reactive should not be used on such a low layer
- Removed all references to ReactiveUI and instead implemented custom implementations of ReactiveProperty, ReactiveCommand, ReactiveCollection, and ReactiveDerivedCollection, also now view models should either directly implement IViewModel or derive from ViewModel, because ReactiveViewModel no longer exists
- The dialog service now offers the possibility to use the file open dialog to select multiple files
- Fixed the WPF window owner bug, where a parent window would be minimized, when a child window closes
- Fixed some minor bugs and code smells