MvvmBindingPack.Debug
2.5.0
See the version list below for details.
dotnet add package MvvmBindingPack.Debug --version 2.5.0
NuGet\Install-Package MvvmBindingPack.Debug -Version 2.5.0
<PackageReference Include="MvvmBindingPack.Debug" Version="2.5.0" />
paket add MvvmBindingPack.Debug --version 2.5.0
#r "nuget: MvvmBindingPack.Debug, 2.5.0"
// Install MvvmBindingPack.Debug as a Cake Addin #addin nuget:?package=MvvmBindingPack.Debug&version=2.5.0 // Install MvvmBindingPack.Debug as a Cake Tool #tool nuget:?package=MvvmBindingPack.Debug&version=2.5.0
Model - View - ViewModel binding package.
Full details package using details in MvvmBindingPack.pdf
Version: 2.5.0
.Net Core transition version
- NuGet.org package http://www.nuget.org/packages/MvvmBindingPack/
- NuGet.org package http://www.nuget.org/packages/MvvmBindingPack.Debug/
- Supports: net462, net472, net48, uap10.0
- Signed assembly;
Dependences:
- None
(!) Breaking changes of IoC/DI container initialization. Example:
private void Application_Startup(object sender, StartupEventArgs e)
{
ServiceCollection services = new ServiceCollection();
services.AddSingleton<AutoBindingViewModel>();
services.AddSingleton<IocBindingViewModel>();
AutoWireVmDataContext.ServiceProvider = services.BuildServiceProvider();
}
Version: 2.0.1
Microsoft.Practices.ServiceLocation Support
- NuGet.org package http://www.nuget.org/packages/MvvmBindingPack/
- NuGet.org package http://www.nuget.org/packages/MvvmBindingPack.Debug/
- Supports: net452, net462, net47, uap10.0
- Signed assembly;
Dependences: CommonServiceLocator (== 1.3.0) {namespace Microsoft.Practices.ServiceLocation}
Version: 2.0.1
Unity Container Support
- NuGet.org package http://www.nuget.org/packages/MvvmBindingPack.Unity/
- NuGet.org package http://www.nuget.org/packages/MvvmBindingPack.Unity.Debug/
- Supports: net452, net462, net47
- Signed assembly;
Dependences: CommonServiceLocator (>= 2.0.2) {namespace CommonServiceLocator}
Recommended Unity Nuget Dependences: https://www.nuget.org/packages/Unity.Container (>= 5.8.6) https://www.nuget.org/packages/Unity.ServiceLocation (>= 2.1.1)
The decision to develop this binding package had been made in response of minimizing a the cost of the quality UI development along with using Agile development style. It is a big advantage to have a solution where you are able to refactor a dozen of Views and View Models, in a couple hours, by a customer request.
Welcome to MvvmBindingPack
MvvmBindingPack is the robust MVVM framework platform for UX high-quality solutions with support of IoC/DI containers. MVVM pattern is widely used in developing of XAML-based GUI applications. It is impossible to provide the quality UX design implementations without using this pattern. Quality of UX design directly depends on the techniques or features that used for implementing the MVVM pattern. Clear separation of concerns between View (XAML code coupled with its code-behind) and View Model characterizes a profession level and quality and the of the product implementation. The package has the compatible features implementation for XAML WPF and Win Store Application XAML. MVVM pattern in UI development process looks like a principal of "Dependency Inversion" between View and View Model.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 is compatible. net481 was computed. |
Universal Windows Platform | uap was computed. uap10.0 is compatible. |
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.
Release: net462; net472; net48; uap10.0;Signed Assembly;
Breaking changes(!):
Initialize DI/IoC:
MvvmBindingPack.AutoWireViewConrols.ServiceProvider static property with “Microsoft.Extensions.DependencyInjection” ServiceProvider.