AtomicMVVM 4.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AtomicMVVM --version 4.0.0
NuGet\Install-Package AtomicMVVM -Version 4.0.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="AtomicMVVM" Version="4.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AtomicMVVM --version 4.0.0
#r "nuget: AtomicMVVM, 4.0.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 AtomicMVVM as a Cake Addin
#addin nuget:?package=AtomicMVVM&version=4.0.0

// Install AtomicMVVM as a Cake Tool
#tool nuget:?package=AtomicMVVM&version=4.0.0

The goal of AtomicMVVM is to allow developers to work with MVVM in their XAML based solutions (XPF, Silverlight, Windows Phone, WinRT) with minimal effort while not getting in the way of the code. It requires .NET 4 or higher. The design goals of AtomicMVVM are (in order): simple over feature rich, unobtrusive over less code and convention over configuration.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  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. 
Silverlight sl4-wp is compatible.  sl5 is compatible. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Store netcore was computed.  netcore45 is compatible.  netcore451 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
5.0.0 2,714 11/8/2012
4.0.0 1,838 6/29/2012
3.0.0 1,772 4/13/2012
2.0.1 1,778 3/1/2012
2.0.0 1,636 2/17/2012
1.0.11 1,681 1/25/2012
1.0.10 1,582 1/25/2012
1.0.9 1,612 1/23/2012
1.0.8 1,641 1/23/2012
1.0.7 1,677 1/23/2012
1.0.6 1,697 1/23/2012
1.0.5 1,737 1/18/2012
1.0.4 1,658 1/18/2012
1.0.3 1,618 1/18/2012
1.0.2 1,622 1/18/2012
1.0.1 1,650 1/17/2012
1.0.0 1,708 1/17/2012

NOTE: This version has breaking changes from v3.
The bootstrapper is no longer generic, rather the generic aspects have been moved to the Start method.
 This enables the bootstrapper to be used more easily (internally & externally).
 This also enables future ideas such as switching out the shell.
Previously internal fields for current shell, view & view model are now public properties.
 This enables the bootstrapper to be better unit tested itself & used in unit testing.
 Allows for some dynamic logic in view models.
CoreData now has a bootstrapper property
 When a view model is created the property is set to the creating bootstrapper allowing for the view model to be able to interact with the bootstrapper without needing global variables etc...
 This was really only enabled with the removal of the generic aspects (above).
Added the StubShell
 This is a simple shell implementation for use in unit tests.
Updated all the Metro aspects to work with Windows 8 Release Candidate
 This was really just two things, removing an unused namespace & changing to the new async invoker.