Enferno.Public 2.6.4

dotnet add package Enferno.Public --version 2.6.4
                    
NuGet\Install-Package Enferno.Public -Version 2.6.4
                    
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="Enferno.Public" Version="2.6.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Enferno.Public" Version="2.6.4" />
                    
Directory.Packages.props
<PackageReference Include="Enferno.Public" />
                    
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 Enferno.Public --version 2.6.4
                    
#r "nuget: Enferno.Public, 2.6.4"
                    
#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 Enferno.Public@2.6.4
                    
#: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=Enferno.Public&version=2.6.4
                    
Install as a Cake Addin
#tool nuget:?package=Enferno.Public&version=2.6.4
                    
Install as a Cake Tool

Enferno API helpers.

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Enferno.Public:

Package Downloads
Enferno.StormApiClient

Enferno Storm Commerce API Client library.

Enferno.Public.Web.ShoppingBasket

Enferno ShoppingBasket component.

Enferno.Public.Logging

Enferno Public Logging.

Enferno.Public.Web.Components

Enferno component library that helps the developer implement common views and scenarios such as shopping basket, product and checkout in a easy way.

Enferno.Public.Web.Product

Enferno Product component.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.6.4 1,316 2/17/2025
2.5.17-beta 126 1/14/2025
2.5.16-beta 112 1/14/2025
2.5.14 10,239 10/16/2023
2.5.13 213 10/16/2023
2.5.12 226 10/16/2023
2.5.11 196 10/16/2023
2.5.10 195 10/16/2023
2.5.9 2,231 1/9/2023
2.5.8 444 1/9/2023
2.5.7 456 1/9/2023
2.5.6 414 1/9/2023
2.3.1 16,968 9/24/2019
2.3.0 2,146 4/16/2019
2.2.0 3,874 3/1/2019
2.1.4 931 2/28/2019
2.1.3 917 2/28/2019
2.1.2 909 2/28/2019
2.1.1 831 2/28/2019
2.1.0 918 2/28/2019
2.0.1-beta7 904 8/24/2018
2.0.1-beta6 935 8/22/2018
2.0.1-beta5 965 8/20/2018
2.0.1-beta4 955 8/17/2018
2.0.1-beta3 936 8/17/2018
2.0.1-beta2 979 8/16/2018
2.0.1-beta 926 8/15/2018
2.0.0 15,085 5/30/2018
2.0.0-beta 1,737 5/28/2018
1.0.17 25,642 9/20/2016
1.0.17-beta4 1,291 9/9/2016
1.0.17-beta3 1,138 9/9/2016
1.0.17-beta2 1,177 9/8/2016
1.0.17-Beta 1,117 9/8/2016
1.0.16 1,394 9/5/2016
1.0.16-beta 1,162 8/17/2016
1.0.15.2 1,718 6/16/2016
1.0.15.1 1,805 1/12/2016
1.0.15 2,659 7/2/2015
1.0.15-beta2 1,223 6/22/2015
1.0.15-beta 1,233 6/18/2015
1.0.14.2 18,385 5/28/2015
1.0.14.1 1,456 5/26/2015
1.0.14 1,478 5/26/2015
1.0.14-beta 1,298 5/6/2015
1.0.13.2 1,469 5/26/2015
1.0.13 1,714 2/11/2015
1.0.12.1 4,700 1/28/2015
1.0.11 1,567 1/13/2015
1.0.10 25,379 5/12/2014
1.0.9 1,557 5/9/2014
1.0.8 1,520 5/9/2014
1.0.7 1,510 5/2/2014
1.0.7-alpha2 1,496 4/28/2014
1.0.7-alpha 1,361 4/25/2014
1.0.6 9,404 4/10/2014

Updated .NET version to 4.7.2 and updated dependencies.
     **BREAKING CHANGE**: Removed AddCache from CacheManager. Added constructor to handle additions of caches.
This is due to the fact that Unity now does not support making multiple calls to methods when resolving components from configuration.

You will get a message similar to this "System.InvalidOperationException: Configuration is incorrect, the type CacheManager does not have a method named AddCache that takes parameters named cache."
Just remove the method entries under register and add a constructor instead.

Change:
```xml
<register type="ICacheManager" mapTo="CacheManager">
 <lifetime type="singleton" />
 <method name="AddCache">
   <param name="cache" dependencyName="EnfernoData" />
 </method>
</register>
```
To:
```xml
<register type="ICacheManager" mapTo="CacheManager">
 <lifetime type="singleton" />
 <constructor>
   <param name="caches">
     <array>
     <dependency name="EnfernoData"/>
     </array>
     </param>
 </constructor>
</register>
```
Just add more entries under <array> if you are using multiple caches.

See release notes for 2.0.0 when upgrading from earlier versions.