Enferno.Public
2.3.0
Enferno API helpers.
See the version list below for details.
Install-Package Enferno.Public -Version 2.3.0
dotnet add package Enferno.Public --version 2.3.0
<PackageReference Include="Enferno.Public" Version="2.3.0" />
paket add Enferno.Public --version 2.3.0
Release Notes
**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.
Dependencies
-
- EnterpriseLibrary.Logging (>= 6.0.1304)
- Unity.Configuration (>= 5.9.0)
- Unity.Container (>= 4.0.3)
GitHub Usage
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated | ||
---|---|---|---|---|
2.3.1 | 123 | 9/24/2019 | ||
2.3.0 | 235 | 4/16/2019 | ||
2.2.0 | 221 | 3/1/2019 | ||
2.1.4 | 101 | 2/28/2019 | ||
2.1.3 | 95 | 2/28/2019 | ||
2.1.2 | 111 | 2/28/2019 | ||
2.1.1 | 93 | 2/28/2019 | ||
2.1.0 | 98 | 2/28/2019 | ||
2.0.1-beta7 | 137 | 8/24/2018 | ||
2.0.1-beta6 | 148 | 8/22/2018 | ||
2.0.1-beta5 | 147 | 8/20/2018 | ||
2.0.1-beta4 | 150 | 8/17/2018 | ||
2.0.1-beta3 | 150 | 8/17/2018 | ||
2.0.1-beta2 | 160 | 8/16/2018 | ||
2.0.1-beta | 149 | 8/15/2018 | ||
2.0.0 | 3,780 | 5/30/2018 | ||
2.0.0-beta | 215 | 5/28/2018 | ||
1.0.17 | 3,441 | 9/20/2016 | ||
1.0.17-beta4 | 299 | 9/9/2016 | ||
1.0.17-beta3 | 269 | 9/9/2016 | ||
1.0.17-beta2 | 273 | 9/8/2016 | ||
1.0.17-Beta | 259 | 9/8/2016 | ||
1.0.16 | 327 | 9/5/2016 | ||
1.0.16-beta | 283 | 8/17/2016 | ||
1.0.15.2 | 433 | 6/16/2016 | ||
1.0.15.1 | 672 | 1/12/2016 | ||
1.0.15 | 778 | 7/2/2015 | ||
1.0.15-beta2 | 319 | 6/22/2015 | ||
1.0.15-beta | 326 | 6/18/2015 | ||
1.0.14.2 | 657 | 5/28/2015 | ||
1.0.14.1 | 340 | 5/26/2015 | ||
1.0.14 | 371 | 5/26/2015 | ||
1.0.14-beta | 315 | 5/6/2015 | ||
1.0.13.2 | 332 | 5/26/2015 | ||
1.0.13 | 451 | 2/11/2015 | ||
1.0.12.1 | 444 | 1/28/2015 | ||
1.0.11 | 454 | 1/13/2015 | ||
1.0.10 | 632 | 5/12/2014 | ||
1.0.9 | 412 | 5/9/2014 | ||
1.0.8 | 406 | 5/9/2014 | ||
1.0.7 | 412 | 5/2/2014 | ||
1.0.7-alpha2 | 362 | 4/28/2014 | ||
1.0.7-alpha | 367 | 4/25/2014 | ||
1.0.6 | 454 | 4/10/2014 |