Yamamari.FactoryPattern 1.0.17

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Yamamari.FactoryPattern --version 1.0.17
                    
NuGet\Install-Package Yamamari.FactoryPattern -Version 1.0.17
                    
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="Yamamari.FactoryPattern" Version="1.0.17" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Yamamari.FactoryPattern" Version="1.0.17" />
                    
Directory.Packages.props
<PackageReference Include="Yamamari.FactoryPattern" />
                    
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 Yamamari.FactoryPattern --version 1.0.17
                    
#r "nuget: Yamamari.FactoryPattern, 1.0.17"
                    
#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 Yamamari.FactoryPattern@1.0.17
                    
#: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=Yamamari.FactoryPattern&version=1.0.17
                    
Install as a Cake Addin
#tool nuget:?package=Yamamari.FactoryPattern&version=1.0.17
                    
Install as a Cake Tool

Factory by Yamamari

This library provides a super simple implementation of a basic factory pattern. The factory allows for users to specify a concrete type to use when an interface is requested. Any future code requesting an instance of the interface will have a new instance of the concrete type created and sent over.

The example below highlights the full lifecycle of this simple factory implement.

var factory = new Factory();
factory.SetImplementation<interface,class>();
var instance = factory.Make<interface>();

Notes

  • The concrete types provided must have a parameterless constructor (it's not enough to provide default values)
  • The factory type itself is not a singleton, so to make best possible use of it you should create it at start-up and then pass it around (or make your own singleton)
  • It's configuration is done with code (not app settings) to aide in refactoring and testing
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Yamamari.FactoryPattern:

Package Downloads
Yamamari.ShellSharp

A framework for easily creating C# classes that can be invoked via the command line.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated