This repository was archived by the owner on Nov 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPersistentObjectCache.nuspec
More file actions
33 lines (32 loc) · 1.65 KB
/
PersistentObjectCache.nuspec
File metadata and controls
33 lines (32 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>PersistentObjectCache</id>
<version>1.3.0.0</version>
<title>Persistent Object Cache</title>
<authors>Sander Struijk</authors>
<owners>Sander Struijk</owners>
<projectUrl>https://github.com/furier/PersistentObjectCache</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Persistent Object Cache serializes objects and store them to disk as json.
When retrieving objects cache time is validated, if cache time has been exceeded null is returned otherwise the object.</description>
<releaseNotes>1.3.0.0
- added function for checking if cache contains object identified by key.
- added function for checking if cache identified by key has expired.
1.2.0.1
- added clear cache functionality</releaseNotes>
<tags>Persistent Object Cache</tags>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="Newtonsoft.Json" version="6.0.3" />
</group>
<group targetFramework=".NETCore4.5.1">
<dependency id="Newtonsoft.Json" version="6.0.3" />
</group>
</dependencies>
</metadata>
<files>
<file src="PersistentObjectCache.net45\bin\Release\PersistentObjectCache.net45.dll" target="lib\net45\PersistentObjectCache.net45.dll" />
<file src="PersistentObjectCache.netcore451\bin\Release\PersistentObjectCache.netcore451.dll" target="lib\netcore451\PersistentObjectCache.netcore451.dll" />
</files>
</package>