NightModel 0.2.1

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

// Install NightModel as a Cake Tool
#tool nuget:?package=NightModel&version=0.2.1

NightModel

Простейший фреймворк для базовой реализации MVVM-паттерна.

    protected override bool Set<T>(ref T field, T value, [CallerMemberName] string? propertyName = null)
    {
        if (Equals(field, value))
            return false;

        OnPropertyChanging(propertyName);
        field = value;
        OnPropertyChanged(propertyName);
        return true;
    }
Product Compatible and additional computed target framework versions.
.NET net7.0-windows7.0 is compatible.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0-windows7.0

    • 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
0.3.0.1 197 3/17/2023
0.3.0 199 3/17/2023
0.2.2 229 3/4/2023
0.2.1 209 3/2/2023
0.2.0 330 11/29/2022
0.1.9 318 11/16/2022
0.1.8 346 11/9/2022
0.1.7 365 11/6/2022
0.1.6 358 11/4/2022
0.1.5 347 11/4/2022
0.1.4 346 11/4/2022
0.1.3 398 10/20/2022
0.1.2 392 10/18/2022
0.1.1 389 10/18/2022
0.1.0 393 10/17/2022

fix task extension