![]() |
VOOZH | about |
dotnet add package Enferno.Public --version 2.6.4
NuGet\Install-Package Enferno.Public -Version 2.6.4
<PackageReference Include="Enferno.Public" Version="2.6.4" />
<PackageVersion Include="Enferno.Public" Version="2.6.4" />Directory.Packages.props
<PackageReference Include="Enferno.Public" />Project file
paket add Enferno.Public --version 2.6.4
#r "nuget: Enferno.Public, 2.6.4"
#:package Enferno.Public@2.6.4
#addin nuget:?package=Enferno.Public&version=2.6.4Install as a Cake Addin
#tool nuget:?package=Enferno.Public&version=2.6.4Install as a Cake Tool
Enferno API helpers.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
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. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.6.4 | 1,909 | 2/17/2025 |
| 2.5.17-beta | 183 | 1/14/2025 |
| 2.5.16-beta | 179 | 1/14/2025 |
| 2.5.14 | 10,810 | 10/16/2023 |
| 2.5.13 | 285 | 10/16/2023 |
| 2.5.12 | 300 | 10/16/2023 |
| 2.5.11 | 260 | 10/16/2023 |
| 2.5.10 | 251 | 10/16/2023 |
| 2.5.9 | 2,349 | 1/9/2023 |
| 2.5.8 | 522 | 1/9/2023 |
| 2.5.7 | 536 | 1/9/2023 |
| 2.5.6 | 496 | 1/9/2023 |
| 2.3.1 | 17,562 | 9/24/2019 |
| 2.3.0 | 2,231 | 4/16/2019 |
| 2.2.0 | 3,971 | 3/1/2019 |
| 2.1.4 | 1,022 | 2/28/2019 |
| 2.1.3 | 1,016 | 2/28/2019 |
| 2.1.2 | 1,002 | 2/28/2019 |
| 2.1.1 | 911 | 2/28/2019 |
| 2.1.0 | 1,010 | 2/28/2019 |
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.