melon.core 1.0.0

dotnet add package melon.core --version 1.0.0
                    
NuGet\Install-Package melon.core -Version 1.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="melon.core" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="melon.core" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="melon.core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add melon.core --version 1.0.0
                    
#r "nuget: melon.core, 1.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.
#:package melon.core@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=melon.core&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=melon.core&version=1.0.0
                    
Install as a Cake Tool

Melon.Core?!

Melon.core is a base set of Classes and interfaces that I find myself rewriting constantly. I've intended to use this in all my projects and will eventually fork

Installation

From the package manager console simply type install-package melon.core

Everything within this package falls within the Melon.Core namespace.

Useful classes/Interfaces

  • ObservableClass - Provides a class with the NotifyPropertyChanged() method and handles the INotifyPropertyChanged interface
  • SecureString/StringExtensions - Provides a means of converting to and from securestring for authentication based tasks
  • RelayCommand - Provides an implementation of the ICommand class used for WPF based event triggers
  • IRepository - Interfaces to assist with shaping a class to the repository pattern. There are numerous types within the namespace to allow for fine-grained control
  • CQRS - Interfaces which provide a solid way of developing in CQRS
  • IContainer<T> - Provides an interface for storing a value inside a container for ease of passing around values within a singleton. The Provided baseclass simplifies a single-container class
There are no supported framework assets in this 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
1.0.0 1,062 8/30/2018

Initial Release